/* ===================================
   Star Signature Travels - Premium CSS
   Luxury Travel Website
   =================================== */

/* ===== CSS Variables ===== */
:root {
    /* Color Palette */
    --color-ivory: #FAF9F6;
    --color-champagne: #C9A961;
    --color-champagne-light: #D4B76C;
    --color-champagne-dark: #B89647;
    --color-navy: #1A2332;
    --color-navy-light: #2C3E50;
    --color-charcoal: #4A5568;
    --color-charcoal-light: #718096;
    --color-white: #FFFFFF;
    --color-off-white: #F7F7F5;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
    --transition-elegant: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 8px 32px rgba(201, 169, 97, 0.3);
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-navy);
    background-color: var(--color-ivory);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Ensure all images are visible by default */
img {
    opacity: 1 !important;
    display: block;
    max-width: 100%;
    height: auto;
}

/* Logo images should always be visible */
.logo-image,
.footer-logo-image {
    opacity: 1 !important;
    visibility: visible !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-navy);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.75rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    font-size: 1.0625rem;
    color: var(--color-charcoal);
    line-height: 1.8;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-champagne);
    color: var(--color-navy);
    border: 2px solid var(--color-champagne);
}

.btn-primary:hover {
    background-color: var(--color-champagne-dark);
    border-color: var(--color-champagne-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
}

.btn-secondary:hover {
    background-color: var(--color-navy);
    color: var(--color-ivory);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }
    
    .btn-large {
        padding: 1rem 2.25rem;
        font-size: 1rem;
    }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    padding: 1.25rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background-color: rgba(250, 249, 246, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    transition: var(--transition-fast);
    min-height: 50px;
}

.logo-image {
    height: 45px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: var(--transition-fast);
    display: block;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    color: var(--color-champagne);
    font-size: 1.75rem;
}

.logo-text {
    color: var(--color-navy);
}

.logo:hover .logo-text {
    color: var(--color-champagne);
}

@media (max-width: 768px) {
    .logo-image {
        height: 35px;
        max-width: 200px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--color-navy);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-champagne);
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-champagne);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link-cta {
    padding: 0.75rem 1.75rem;
    background-color: var(--color-champagne);
    color: var(--color-navy);
    border-radius: 4px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
    white-space: nowrap;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background-color: var(--color-champagne-dark);
    color: var(--color-navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}

.nav-link-cta:hover {
    background-color: var(--color-champagne-dark);
    color: var(--color-navy);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    /* iOS Chrome specific fixes */
    -webkit-user-select: none;
    user-select: none;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--color-navy);
    transition: all 0.3s ease;
    display: block;
    pointer-events: none;
    /* iOS specific */
    -webkit-user-select: none;
    user-select: none;
}

/* Hamburger animation when active */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 968px) {
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
        /* iOS Chrome specific fixes */
        position: relative;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: var(--color-ivory);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        align-items: flex-start;
        z-index: 1000;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        /* iOS specific */
        -webkit-overflow-scrolling: touch;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link-cta {
        width: 100%;
        text-align: center;
    }
}

/* Medium screens - reduce nav spacing */
@media (min-width: 969px) and (max-width: 1280px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
    }
    
    .nav-link-cta {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 35, 50, 0.65) 0%,
        rgba(26, 35, 50, 0.45) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-ivory);
}

.hero-title {
    font-size: 4.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8),
                 0 2px 10px rgba(0, 0, 0, 0.6),
                 0 0 40px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 2.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8),
                 0 2px 8px rgba(0, 0, 0, 0.6),
                 0 0 30px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1.125rem 2.75rem;
    font-size: 1.0625rem;
    min-width: 240px;
}

.hero-buttons .btn-secondary {
    background-color: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    border: 3px solid #FFFFFF;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8),
                 0 2px 6px rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-secondary:hover {
    background-color: #FFFFFF;
    color: var(--color-navy);
    border-color: #FFFFFF;
    text-shadow: none;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

.hero-buttons .btn-primary {
    background-color: var(--color-champagne);
    color: var(--color-navy);
    border: 2px solid var(--color-champagne);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.5);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--color-champagne-dark);
    border-color: var(--color-champagne-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 50px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--color-champagne)
    );
    animation: scrollDown 2s infinite;
}

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

/* Animation classes */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay-1 {
    animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

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

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9),
                     0 2px 10px rgba(0, 0, 0, 0.7),
                     0 0 40px rgba(0, 0, 0, 0.5);
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        letter-spacing: 2px;
        text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9),
                     0 2px 8px rgba(0, 0, 0, 0.7),
                     0 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== Section Styles ===== */
.section {
    padding: var(--spacing-xl) 0;
}

.section.bg-light {
    background-color: var(--color-off-white);
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-champagne);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(
        to right,
        var(--color-champagne),
        var(--color-champagne-light)
    );
    margin: 1.5rem auto 0;
}

.section-header:not(.centered) .section-divider {
    margin-left: 0;
}

@media (max-width: 768px) {
    .section {
        padding: var(--spacing-lg) 0;
    }
}

/* ===== About Brand Section ===== */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text-large {
    font-size: 1.375rem;
    line-height: 1.8;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-text {
    font-size: 1.125rem;
    color: var(--color-charcoal);
    line-height: 1.9;
}

@media (max-width: 768px) {
    .about-text-large {
        font-size: 1.125rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
}

/* ===== Services Section ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(201, 169, 97, 0.15);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-champagne);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-champagne-light), var(--color-champagne));
    color: var(--color-navy);
    font-size: 2rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    margin-bottom: 1rem;
    color: var(--color-navy);
}

.service-description {
    color: var(--color-charcoal);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
}

/* ===== Why Choose Section ===== */
.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-icon-small {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background-color: var(--color-champagne);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.feature-text h4 {
    margin-bottom: 0.5rem;
    color: var(--color-navy);
}

.feature-text p {
    color: var(--color-charcoal);
    font-size: 1rem;
}

.why-choose-image {
    position: relative;
}

.feature-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 968px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-img {
        height: 400px;
    }
}

/* ===== Destinations Section ===== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.destination-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(
        to top,
        rgba(26, 35, 50, 0.95) 0%,
        rgba(26, 35, 50, 0.7) 60%,
        transparent 100%
    );
    color: var(--color-ivory);
    transition: var(--transition-smooth);
}

.destination-name {
    font-size: 1.75rem;
    color: var(--color-ivory);
    margin-bottom: 0.5rem;
}

.destination-category {
    color: var(--color-champagne-light);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.destination-card:hover .destination-overlay {
    background: linear-gradient(
        to top,
        rgba(26, 35, 50, 0.98) 0%,
        rgba(26, 35, 50, 0.85) 70%,
        rgba(26, 35, 50, 0.3) 100%
    );
}

@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .destination-card {
        height: 300px;
    }
}

/* ===== Trust Section ===== */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.trust-stat {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3.5rem;
    color: var(--color-champagne);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 1rem;
    color: var(--color-charcoal);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.testimonial-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.testimonial {
    background-color: var(--color-white);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-quote {
    color: var(--color-champagne);
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-navy);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    margin-top: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: var(--color-navy);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--color-champagne);
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .testimonial {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.0625rem;
    }
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    text-align: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 35, 50, 0.85),
        rgba(26, 35, 50, 0.75)
    );
}

.cta-content {
    position: relative;
    z-index: 2;
    color: var(--color-ivory);
}

.cta-title {
    font-size: 3rem;
    color: var(--color-ivory);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--color-champagne-light);
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .cta-section {
        padding: var(--spacing-lg) 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.0625rem;
    }
}

/* ===== Footer ===== */
.footer {
    background-color: var(--color-navy);
    color: var(--color-off-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-ivory);
    margin-bottom: 1rem;
    min-height: 60px;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: block;
}

.footer-description {
    color: var(--color-charcoal-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(201, 169, 97, 0.1);
    color: var(--color-champagne);
    text-decoration: none;
    transition: var(--transition-fast);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.social-link:hover {
    background-color: var(--color-champagne);
    color: var(--color-navy);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--color-ivory);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--color-charcoal-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-champagne);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    color: var(--color-charcoal-light);
    align-items: flex-start;
}

.footer-contact i {
    color: var(--color-champagne);
    margin-top: 0.25rem;
    min-width: 18px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-charcoal-light);
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    color: var(--color-charcoal-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-champagne);
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ===== Page Header (for internal pages) ===== */
.page-header {
    position: relative;
    padding: 10rem 0 6rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    margin-top: 80px;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--color-ivory);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--color-champagne-light);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* ===== Loading Animation ===== */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}