/* Main Styles for FORKO PUTOVANJA Website */

/* Variables */
:root {
    /* Colors - Travel Agency Theme: Deep Blue & Orange */
    --primary-color: #f58d54; /* naranÄasta - sunce */
    --secondary-color: #03152b; /* tamno plava - more */
    --bg-light: #03152b; /* tamno plava pozadina */
    --bg-dark: #020d1a; /* vrlo tamno plava */
    --bg-card: #05243d; /* plava za kartice */
    --text-light: #FFFFFF; /* bijela */
    --text-dark: #e8f0f8; /* svijetlo plava za tekst */
    --text-muted: #a8c4e0; /* svijetlo plava za sekundarni tekst */
    --accent-color: #ffa366; /* svjetlija naranÄasta */
    --border-color: rgba(245, 141, 84, 0.3); /* prozirna naranÄasta */
    
    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Open Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Animations */
    --animation-bounce: bounce 2s infinite;
    --animation-pulse: pulse 2s infinite;
    --animation-fade-in: fadeIn 0.8s ease-out;
    --animation-slide-up: slideUp 0.8s ease-out;
    --animation-slide-in-left: slideInLeft 0.8s ease-out;
    --animation-slide-in-right: slideInRight 0.8s ease-out;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 141, 84, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(245, 141, 84, 0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Base Styles */
body {
    font-family: var(--body-font);
    color: var(--text-dark);
    background: linear-gradient(to top right, #a8a8a8 0%, var(--bg-light) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    animation: fadeIn 0.8s ease-out;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    position: relative;
    margin-bottom: var(--spacing-lg);
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    transition: transform 0.8s ease-out 0.3s;
    transform-origin: center;
}

section.in-view h2::after {
    transform: translateX(-50%) scaleX(1);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 141, 84, 0.4);
}

.btn-secondary {
    background-color: var(--bg-card);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 141, 84, 0.4);
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(3, 21, 43, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all var(--transition-fast);
    animation: slideUp 0.6s ease-out;
}

#header.sticky {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    background-color: rgba(3, 21, 43, 0.98);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
}

.logo h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.5rem;
    white-space: nowrap;
    transition: all var(--transition-fast);
    animation: fadeIn 1s ease-out;
}

.logo h2:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(245, 141, 84, 0.5);
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin: 0 var(--spacing-sm);
}

.main-nav a {
    font-weight: 600;
    color: var(--text-dark);
    padding: 5px 0;
    position: relative;
    transition: color var(--transition-fast);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-fast);
}

.main-nav a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.main-nav a:hover::after {
    width: 100%;
    box-shadow: 0 2px 8px rgba(245, 141, 84, 0.5);
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-card);
    color: var(--text-light);
    margin-left: var(--spacing-xs);
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(245, 141, 84, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-dark);
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/camping-min.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-section .subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
    color: var(--text-light);
}

/* About Section */
.about-section {
    background-color: transparent;
    position: relative;
}

.about-section.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.about-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.about-text, .about-image {
    flex: 1;
    text-align: justify;
}

.about-text {
    animation: slideInLeft 0.8s ease-out;
}

.about-image {
    animation: slideInRight 0.8s ease-out;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 100%;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    height: 450px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.about-image:hover img {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 15px 40px rgba(245, 141, 84, 0.3);
}

.benefits-wrapper {
    margin-top: var(--spacing-xl);
}

.benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.benefit-item {
    text-align: center;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    background-color: var(--bg-card);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-fast);
    flex: 0 0 100%;
    border: 1px solid rgba(245, 141, 84, 0.1);
}

.benefit-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(245, 141, 84, 0.2);
}

.benefit-item:nth-child(1) {
    animation: slideUp 0.8s ease-out;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.benefit-item:nth-child(2) {
    animation: slideUp 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.benefit-item:nth-child(3) {
    animation: slideUp 0.8s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.benefit-item:nth-child(4) {
    animation: slideUp 0.8s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.benefits-controls {
    display: none;
    justify-content: center;
    align-items: center;
    margin-top: var(--spacing-md);
    gap: var(--spacing-sm);
}

.benefits-prev-btn, .benefits-next-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

.benefits-prev-btn:hover, .benefits-next-btn:hover {
    background-color: var(--accent-color);
}

.benefits-dots {
    display: flex;
    gap: 8px;
}

.benefit-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.benefit-dot.active {
    background-color: var(--primary-color);
    width: 24px;
    border-radius: 6px;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    transition: all var(--transition-medium);
    display: inline-block;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.2) rotate(5deg);
    animation: pulse 1s ease-in-out;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
}

.benefit-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    background-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.service-card {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-fast);
    background-color: var(--bg-card);
    border: 1px solid rgba(245, 141, 84, 0.1);
}

.service-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 15px 40px rgba(245, 141, 84, 0.3);
}

.service-card:nth-child(1) {
    animation: slideUp 0.8s ease-out;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.service-card:nth-child(2) {
    animation: slideUp 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.service-card:nth-child(3) {
    animation: slideUp 0.8s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: var(--spacing-md);
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 8px 25px rgba(245, 141, 84, 0.3);
    animation: slideUp 0.8s ease-out, pulse 3s ease-in-out infinite;
    animation-delay: 0.4s, 1s;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.cta-box:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(245, 141, 84, 0.5);
}

.cta-box h3 {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.3rem;
}

/* Gallery Section */
.gallery-section {
    background-color: transparent;
}

.gallery-wrapper {
    position: relative;
}

.gallery-container {
    width: 100%;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}


.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    height: 300px;
    cursor: pointer;
    border: 2px solid rgba(245, 141, 84, 0.1);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4),
.gallery-item:nth-child(7) {
    animation: slideInLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5),
.gallery-item:nth-child(8) {
    animation: slideUp 0.8s ease-out;
    animation-fill-mode: both;
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(6),
.gallery-item:nth-child(9) {
    animation: slideInRight 0.8s ease-out;
    animation-fill-mode: both;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: var(--spacing-md);
    color: var(--text-light);
    transform: translateY(100%);
    transition: transform var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--text-light);
    margin: 0;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: transparent;
    text-align: center;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    padding: var(--spacing-md);
}

.testimonial-quote {
    background-color: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(245, 141, 84, 0.1);
    transition: all var(--transition-medium);
    animation: fadeIn 0.8s ease-out;
}

.testimonial-quote:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(245, 141, 84, 0.2);
    border-color: rgba(245, 141, 84, 0.3);
}

.testimonial-quote::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--bg-card);
}

.testimonial-quote i {
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.5;
}

.testimonial-quote i.fa-quote-left {
    margin-right: var(--spacing-xs);
    vertical-align: top;
}

.testimonial-quote i.fa-quote-right {
    margin-left: var(--spacing-xs);
    vertical-align: bottom;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--spacing-md);
}

.prev-btn, .next-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all var(--transition-fast);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--accent-color);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(245, 141, 84, 0.4);
}

.testimonial-dots {
    display: flex;
    margin: 0 var(--spacing-md);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    margin: 0 5px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Upcoming Section */
.upcoming-section {
    background-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.upcoming-trips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.upcoming-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all var(--transition-medium);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(245, 141, 84, 0.15);
}

.upcoming-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 141, 84, 0.3);
    border-color: rgba(245, 141, 84, 0.4);
}

.upcoming-card:nth-child(1) {
    animation: slideInLeft 0.8s ease-out;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.upcoming-card:nth-child(2) {
    animation: slideUp 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.upcoming-card:nth-child(3) {
    animation: slideUp 0.8s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.upcoming-card:nth-child(4) {
    animation: slideInRight 0.8s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.upcoming-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.upcoming-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.upcoming-card:hover .upcoming-image img {
    transform: scale(1.08);
}

.upcoming-date-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    padding: 8px 12px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: 0 4px 15px rgba(245, 141, 84, 0.4);
    min-width: 60px;
    animation: pulse 2s ease-in-out infinite;
    transition: all var(--transition-fast);
}

.upcoming-card:hover .upcoming-date-badge {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(245, 141, 84, 0.6);
}

.date-day {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--heading-font);
}

.date-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
    opacity: 0.95;
}

.upcoming-content {
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.upcoming-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
}

.upcoming-content h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-dark);
    flex-grow: 1;
}

.upcoming-description {
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: var(--spacing-xs);
    flex-grow: 1;
    font-size: 0.9rem;
}

.upcoming-year {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    background-color: rgba(245, 141, 84, 0.1);
    padding: 4px 10px;
    border-radius: var(--border-radius-sm);
}


.upcoming-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.days-until {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.days-until::before {
    content: '\f017'; /* Font Awesome clock icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.4rem;
}

.btn-book {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    padding: 10px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(245, 141, 84, 0.3);
}

.btn-book:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(245, 141, 84, 0.4);
    animation: pulse 1s ease-in-out;
}

.btn-book:active {
    transform: translateY(0) scale(0.98);
}

/* Contact Section */
.contact-section {
    background-color: transparent;
}

.contact-section .container {
    max-width: 800px;
    text-align: center;
}

.contact-section h2 {
    text-align: center;
}

.contact-section h2::after {
    left: 50%;
    transform: translateX(-50%) scaleX(0);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-lg);
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(245, 141, 84, 0.15);
    transition: all var(--transition-medium);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
}

.contact-method.in-view {
    opacity: 1;
    transform: translateY(0);
}

.contact-method.in-view:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(245, 141, 84, 0.3);
    border-color: rgba(245, 141, 84, 0.4);
    background-color: rgba(5, 36, 61, 0.8);
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-medium);
    box-shadow: 0 5px 15px rgba(245, 141, 84, 0.3);
}

.contact-method:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(245, 141, 84, 0.5);
}

.contact-method i {
    font-size: 2rem;
    color: var(--text-light);
    transition: all var(--transition-fast);
}

.contact-method h3 {
    font-size: 1.3rem;
    margin: 0 0 var(--spacing-sm) 0;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-method p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    word-break: break-word;
}


/* Footer */
#footer {
    background-color: rgba(2, 13, 26, 0.8);
    color: var(--text-light);
    padding: 15px 0;
    font-size: 0.85rem;
    margin-top: 30px;
    border-top: 1px solid rgba(245, 141, 84, 0.2);
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-info-left, .footer-info-right {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-info-left p, .footer-info-right p {
    margin: 0;
    opacity: 0.9;
}

.footer-info-left i, .footer-info-right i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px) rotate(360deg) scale(1.1);
    transition: all 0.5s ease;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    opacity: 0.7;
}

footer p {
    margin-bottom: 0;
}

/* Back to top button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 999;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(245, 141, 84, 0.4);
    animation: bounce 1s ease-in-out infinite;
}
