    
    /* Define Fraunces 9pt SuperSoft Thin */
    @font-face {
        font-family: "Fraunces";
        src: url("fonts/Fraunces-SuperSoft-Thin.ttf") format("truetype");
        font-weight: 100; /* Thin */
        font-style: normal;
    }

    @font-face {
        font-family: "Fraunces1";
        src: url("fonts/Fraunces_9pt-Bold.ttf") format("truetype");
        font-weight: 800;
        font-style: normal;
    }

    /* Define Fraunces 9pt Light */
    @font-face {
        font-family: "Fraunces";
        src: url("fonts/Fraunces-Light.ttf") format("truetype");
        font-weight: 400; /* Light */
        font-style: normal;
    }

    /* Define Clash Display Variable */
    @font-face {
        font-family: "Clash";
        src: url("fonts/ClashDisplay-Variable.ttf") format("truetype");
        font-weight: 400;
        font-style: normal;
    }

    /* Base styles */
    body {
        background-color: rgba(10, 18, 24, 1);
        margin: 0;
        padding: 0;
        color: #fff;
        font-family: "Clash", -apple-system, Roboto, Helvetica, sans-serif;
        font-weight: 400;
        scroll-behavior: smooth;
    }

    /* Header styles */
    .main-header {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: transparent;
        transition: background-color 0.3s ease;
        z-index: 1000;
        padding: 10px 0; /* Add padding to header for better spacing */
    }

    .nav-container {
        display: flex;
        width: 100%;
        max-width: 1296px;
        margin: 0 auto;
        align-items: center;
        justify-content: space-between;
        gap: 40px 100px;
        padding: 0 20px;
    }

    .menu-toggle {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 7px;
        width: 27px;
    }

    .menu-line {
        background-color: #fff;
        height: 1px;
        width: 100%;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .menu-toggle:hover .menu-line {
        background-color: #d4af37; /* Gold color for hover */
    }

    .logo {
        aspect-ratio: 3.11;
        object-fit: contain;
        width: 200px; /* Reduced logo size */
        min-width: 180px; /* Adjusted min-width */
        margin: 0; /* Remove margin-top to center logo vertically */
    }

    .language-selector {
        display: flex;
        align-items: center;
        gap: max(5px, 1vw); /* Minimum gap of 5px, scales with viewport */
        font-size: clamp(12px, 1vw, 16px); /* Scales between 12px-16px */
        padding: 0.3em 0.6em;
        margin-right: max(10px, 2vw); /* Always keeps distance from the right edge */
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        transition: all 0.3s ease;
        white-space: nowrap;
        flex-shrink: 1; /* Allows shrinking but maintains structure */
    }
    
    .language-option {
        transition: all 0.2s ease;
        flex-shrink: 1; /* Allows text to compress slightly */
        min-width: max-content; /* Prevents awkward text breaks */
    }

    .language-option.active {
        font-weight: 700; /* Bold font for active language */
        letter-spacing: 0.48px;
        color: #d4af37; /* Gold color for active language */
    }

    .language-option:hover {
        color: #d4af37; /* Gold color for hover */
    }
    /* For very tight spaces */
@media (max-width: 600px) {
    .language-selector {
        gap: 4px;
        font-size: 12px;
        padding: 2px 4px;
    }
    
    .language-option {
        display: inline-block;
        max-width: 30px; /* Force Chinese character to stay in one line */
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .language-option.active {
        max-width: none; /* Show full active language */
    }
}

        
    /* Dropdown Menu */
    .dropdown-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(10, 18, 24, 0.95);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 1001;
    }

    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .close-menu:hover {
        color: #d4af37; /* Gold color for hover */
    }

    .dropdown-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .dropdown-menu ul li {
        margin: 20px 0;
    }

    .dropdown-menu ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 24px;
        font-family: "Clash", -apple-system, Roboto, Helvetica, sans-serif;
        font-weight: 400;
        transition: color 0.3s ease;
    }

    .dropdown-menu ul li a:hover {
        color: #d4af37; /* Gold color for hover */
    }

    .dropdown-submenu {
        display: none;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .dropdown:hover .dropdown-submenu {
        display: block;
    }

/* Mobile Header Fix - Guaranteed Visibility */
@media (max-width: 768px) {
    .main-header {
      position: fixed;
      top: 0;
      width: 100%;
      height: 70px;
      padding: 10px 0;
      background-color: rgba(10, 18, 24, 0.95);
      z-index: 1000;
      overflow: visible; /* Critical for small screens */
    }
  
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding: 0 15px;
      box-sizing: border-box;
      min-width: 280px; /* Minimum mobile width */
    }
  
    /* Hamburger Menu - Left Side (Guaranteed Visibility) */
    .menu-toggle {
      display: flex !important; /* Force show */
      flex-direction: column;
      gap: 5px;
      width: 30px;
      background: none;
      border: none;
      padding: 5px;
      margin: 0;
      z-index: 1001;
      margin-top: 14px;
      flex-shrink: 0; /* Prevent shrinking */
    }
  
    /* Logo - Centered (Flexible Width) */
    .logo {
      width: auto;
      max-width: 150px;
      height: auto;
      max-height: 50px;
      padding: 5px 0;
      position: absolute;
      left: 43%;
      top: 10%;
      transform: translateX(-50%);
      flex-shrink: 0;
    }
  
    /* Language Selector - Right Side (Guaranteed Visibility) */
    .language-selector {
      display: flex !important; /* Force show */
      gap: 8px;
      font-size: 14px;
      background: rgba(255, 255, 255, 0.1);
      padding: 5px 10px;
      border-radius: 12px;
      z-index: 1001;
      flex-shrink: 0; /* Prevent shrinking */
      margin-top: 12px;
      margin-left: auto; /* Push to right */
    }
  
    .menu-line {
      height: 2px;
      background-color: #fff;
      width: 100%;
    }
  }
  
  /* Emergency Fix for Very Small Screens */
  @media (max-width: 400px) {
    .nav-container {
      padding: 0 10px;
    }
    .logo {
      max-width: 120px;
    }
    .language-selector {
      font-size: 12px;
      padding: 3px 8px;
      gap: 5px;
    }
    .menu-toggle {
      width: 26px;
    }
  }

    /* Hero section with video */
.hero-section {
    position: relative;
    min-height: 600px; /* Match the original height with image background */
    padding: 150px 199px; /* Match the original padding with image background */
    text-align: center;
    overflow: hidden; /* Ensure video doesn't overflow */
    margin-top: 0; /* Remove negative margin */
    display: flex; /* Use flexbox for centering */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the entire section */
    z-index: 0; /* Place video behind content */
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent black overlay */
    z-index: 1; /* Place overlay above the video but below the text */
}

.hero-content {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay and video */
    max-width: 1021px;
    margin: 0 auto;
    padding-top: 0; /* Reset padding-top */
    padding-bottom: 50px;
}

.hero-title {
    font-size: 90px;
    font-family: "Fraunces", serif;
    font-weight: 400; /* Light */
    text-transform: uppercase;
    margin: 0 0 20px 0; /* Add margin below the title */
    animation: fadeIn 2s ease-in-out;
    color: #fff; /* Ensure text is white */
}

.hero-subtitle {
    font-size: 20px;
    font-family: "Clash", -apple-system, Roboto, Helvetica, sans-serif;
    font-weight: 400;
    margin: 0 0 30px 0; /* Add margin below the subtitle */
    animation: fadeIn 2.5s ease-in-out;
    color: #fff; /* Ensure text is white */
}

.cta-button {
    display: inline-block;
    border: 1px solid #fff;
    padding: 19px 20px;
    font-family: "Clash", -apple-system, Roboto, Helvetica, sans-serif;
    font-weight: 400;
    line-height: 1.8;
    text-decoration: none;
    color: #fff;
    min-width: 262px;
    transition: all 0.3s ease;
    backdrop-filter: blur(0); /* Initial state: no blur */
    background-color: transparent; /* Transparent background */
}

.cta-button:hover {
    backdrop-filter: blur(10px); /* Add blur effect on hover */
    background-color: rgba(255, 255, 255, 0.1); /* Slight white overlay for better blur visibility */
}

    /* Responsive adjustments for mobile */
    @media (max-width: 768px) {
        .hero-section {
            min-height: 400px; /* Adjusted height for mobile */
            padding: 100px 20px; /* Adjusted padding for mobile */
        }

        .hero-title {
            font-size: 40px; /* Smaller title for mobile */
            margin-bottom: 15px; /* Adjust margin for mobile */
        }

        .hero-subtitle {
            font-size: 16px; /* Smaller subtitle for mobile */
            margin-bottom: 20px; /* Adjust margin for mobile */
        }

        .cta-button {
            padding: 10px 15px; /* Smaller button for mobile */
            min-width: 200px; /* Smaller width for mobile */
            font-size: 14px; /* Smaller font size for mobile */
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 32px; /* Even smaller title for very small screens */
        }

        .hero-subtitle {
            font-size: 14px; /* Even smaller subtitle for very small screens */
        }
    }

    /* About section */
    .about-section {
        margin-top: 95px;
        max-width: 970px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .about-title {
        font-size: 48px;
        font-family: "Fraunces", serif;
        font-weight: 400; /* Light */
        margin: 0;
        animation: fadeIn 1.5s ease-in-out;
    }

    .about-description {
        font-family: "Clash", serif;
        font-weight: 400;
        font-size: 20px;
        line-height: 30px;
        margin-top: 41px;
        animation: fadeIn 2s ease-in-out;
    }

    .expertise-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 44px;
        justify-content: center;
        padding-left: 20%;
    }

    .expertise-item {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: flex-start;
    }

    .diamond {
        width: 10px;
        height: 10px;
        background-color: #fff;
        transform: rotate(45deg);
        transition: background-color 0.3s ease;
        flex-shrink: 0; /* Prevent the diamond from shrinking */
    }

    

    .expertise-text {
        font-family: "Clash", serif;
        font-weight: 400;
        font-size: 15px;
        transition: color 0.3s ease;
        white-space: nowrap; /* Prevent text from wrapping */
    }


    /* Services section */
    .services-section {
        margin-top: 95px;
        padding: 0 9px;
    }

    .section-title {
        font-family: "Fraunces", serif;
        font-weight: 400; /* Light */
        font-size: 48px;
        text-align: center;
        margin-bottom: 95px;
        animation: fadeIn 1.5s ease-in-out;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 9px;
        max-width: 100%;
        margin: 0 auto;
    }

    .service-card {
        position: relative;
        min-height: 621px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

    .service-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        text-decoration: none;
        color: inherit;
        position: relative;
        z-index: 1;
        padding: 40px;
    }

    .service-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        transition: transform 0.5s ease;
    }

    .service-card:hover .service-image {
        transform: scale(1.1); /* Zoom in effect */
    }

    .service-content {
        position: relative;
        z-index: 2;
        padding: 20px;
        border-radius: 10px;
    
    }

    .service-title {
        font-size: 24px;
        font-family: "Clash", serif;
        font-weight: 400;
        margin-bottom: 10px;
        color: #fff;
    }

    .service-link-text {
        font-size: 14px;
        font-family: "Fraunces", serif;
        font-weight: 400; /* Light */
        color: #fff;
        text-decoration: none;
    }

    /* Why Us section */
    .why-us-section {
        margin-top: 95px;
        max-width: 958px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .benefits-grid {
        display: flex;
        margin-top: 44px;
        gap: 40px 100px;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .benefit-item {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .benefit-icon {
        width: 20px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .benefit-item:hover .benefit-icon {
        transform: scale(1.2);
    }

    .benefit-text {
        font-family: "Clash", serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.5;
        transition: color 0.3s ease;
    }

    

    .testimonials-section {
        position: relative;
        min-height: 400px;
        padding: 100px 20px;
        text-align: center;
        overflow: hidden; /* Ensure no overflow issues */
        margin-top: 50px;
    }

    .testimonial-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; /* Ensure it covers the testimonials section */
        object-fit: cover; /* Maintain aspect ratio while covering the section */
        z-index: -1; /* Ensure it stays behind the content */
    }
    
    .testimonial-title {
        position: relative;
        font-size: 38px;
        font-family: "Fraunces", serif;
        font-weight: 400;
        margin: 0;
        animation: fadeIn 1.5s ease-in-out;
        margin-top: 100px;
        z-index: 1; /* Ensure the title is above the background */
        color: #fff; /* Ensure title text is white */
    }
    
    .testimonial-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 300px; /* Adjust based on your content height */
    
    }

    
    .testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1; /* Ensure slides are above the background */
    }
    
    .testimonial-slide.active {
        opacity: 1; /* Only the active slide is visible */
        z-index: 2; /* Ensure the active slide is on top */
    }
    
    .testimonial-quote {
        font-family: "Clash", serif;
        font-weight: 400;
        font-size: 18px;
        margin: 0;
        padding: 0 20px;
        color: #fff; /* Ensure text is white */
        z-index: 3; /* Ensure text is above the slide */
    }
    
    .testimonial-author {
        display: block;
        font-family: "Clash", serif;
        font-weight: 400;
        font-size: 20px;
        margin-top: 10px;
        font-style: normal;
        color: #fff; /* Ensure text is white */
        z-index: 3; /* Ensure text is above the slide */
    }
    
    .testimonial-position {
        font-size: 16px;
        margin: 10px 0 0;
        color: #fff; /* Ensure text is white */
        z-index: 3; /* Ensure text is above the slide */
    }
    
    .testimonial-navigation {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        z-index: 2; /* Ensure navigation is above the background */
    }
    
    .prev-slide, .next-slide {
        display: none;
    }
    
    .prev-slide:hover, .next-slide:hover {
        color: #d4af37; /* Gold color for hover */
    }
    
    .testimonial-dots {
        display: flex;
        gap: 10px;
        margin: 0 20px;
        z-index: 2; /* Ensure dots are above the background */
    }
    
    .dot {
        width: 10px;
        height: 10px;
        background-color: #fff;
        border-radius: 50%;
        margin: 0 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .dot.active {
        background-color: #d4af37; /* Gold color for active dot */
    }
    
    .dot:hover {
        background-color: #d4af37; /* Gold color for hover */
    }

    /* Footer styles */
    .main-footer {
        margin-top: 95px;
        display: flex;
        max-width: 1121px;
        margin-left: auto;
        margin-right: auto;
        gap: 40px 100px;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0 20px;
    }

    .footer-column {
        min-width: 240px;
        padding: 16px 0;
        width: 270px;
    }

    .footer-title {
        font-size: 20px;
        font-family: "Clash", -apple-system, Roboto, Helvetica, sans-serif;
        font-weight: 400;
        margin: 0;
    }

    .footer-address {
        font-style: normal;
        margin-top: 10px;
        font-size: 14px;
        font-family: "Clash", -apple-system, Roboto, Helvetica, sans-serif;
        font-weight: 400;
    }

    .footer-address p,
    .footer-address a {
        margin: 10px 0;
        color: #fff;
        text-decoration: none;
        display: block;
        transition: color 0.3s ease;
    }

    .footer-address a:hover {
        color: #d4af37; /* Gold color for hover */
    }

    .social-media {
        margin-top: 10px;
    }

    .social-title {
        font-size: 16px;
        font-family: "Clash", -apple-system, Roboto, Helvetica, sans-serif;
        font-weight: 400;
        margin: 0;
    }

    .social-icons {
        display: flex;
        justify-content: left;
        width: 100%;
        gap: 15px; /* This adds space between icons if you add more later */
        padding: 10px 0; /* Add some vertical padding */
    }
        
    .social-icon {
        width: 30px;
        height: 30px;
        transition: all 0.2s ease;
    }

    .social-icon:hover {
        transform: scale(1.2);
    }

    .footer-nav {
        width: 159px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-top: 10px;
    }

    .footer-links a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        font-family: "Fraunces", serif;
        font-weight: 400;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: #d4af37; /* Gold color for hover */
    }

    .newsletter-text {
        font-family: "Clash", serif;
        font-weight: 400;
        font-size: 14px;
        margin: 10px 0;
    }

    .newsletter-form {
        margin-top: 10px;
    }

    .newsletter-input {
        width: 100%;
        padding: 16px;
        background-color: #fff;
        border: 1px solid rgba(0, 0, 0, 0.25);
        color: #292d32;
        text-align: center;
        margin-bottom: 10px;
        box-sizing: border-box;
    }

    .newsletter-button {
        width: 100%;
        padding: 16px;
        background: none;
        border: 1px solid #fff;
        color: #fff;
        text-align: center;
        cursor: pointer;
        font-family: "Clash", -apple-system, Roboto, Helvetica, sans-serif;
        font-weight: 400;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .newsletter-button:hover {
        background-color: #d4af37; /* Gold color for hover */
        color: #000;
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    /* Media queries for mobile responsiveness */
    @media (max-width: 768px) {
        body {
            font-size: 14px;
        }

        .nav-container {
            padding: 0 10px;
            gap: 20px;
        }

        .logo {
            width: 180px;
            min-width: 150px;
        }

       

        .hero-section {
            min-height: 500px;
            padding: 100px 20px;
        }

        .hero-title {
            font-size: 40px;
        }

        .hero-subtitle {
            font-size: 16px;
        }

        .cta-button {
            padding: 10px 15px;
            min-width: 200px;
        }

        .about-section {
            margin-top: 50px;
            padding: 0 20px;
        }

        .about-title {
            font-size: 32px;
        }

        .about-description {
            font-size: 16px;
            line-height: 24px;
        }

        .expertise-grid {
            grid-template-columns: 1fr;
            padding-left: 0;
            justify-items: center; /* Add this to center align grid items */
            text-align: center; /* Center the text within grid items */
            
            
        }

        .services-section {
            margin-top: 50px;
        }

        .section-title {
            font-size: 32px;
            margin-bottom: 50px;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .service-card {
            min-height: 300px;
        }

        .service-title {
            font-size: 20px;
        }

        .why-us-section {
            margin-top: 50px;
        }

        .benefits-grid {
            flex-direction: row; /* Change back to row for flex-wrap to work */
            flex-wrap: wrap; /* Allow items to wrap */
            justify-content: center; /* Center the items */
            gap: 20px;
        }

        .benefit-item {
            width: 40%; /* Make each item take roughly half the width */
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .testimonials-section {
            margin-top: 50px;
            padding: 50px 20px;
        }

        .testimonial-title {
            font-size: 28px;
        }

        .testimonial-quote {
            font-size: 16px;
        }

        .testimonial-author {
            font-size: 18px;
        }

        .testimonial-position {
            font-size: 14px;
        }

        .main-footer {
            margin-top: 50px;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .footer-column {
            width: 100%;
            padding: 10px 0;
        }

        .footer-links {
            flex-direction: column;
            gap: 10px;
        }

        .social-icons {
            justify-content: center;
            width: 100%;
             /* More space between icons */
        }
          
        .social-icon {
            width: 30px; /* Slightly larger for mobile */
            height: 30px;
            transition: all 0.2s ease;
            justify-content: center;
        }
          
        .social-icon:hover {
            transform: scale(1.1);
        }

        .newsletter-input,
        .newsletter-button {
            width: 90%;
            margin: 0 auto;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 32px;
        }

        .hero-subtitle {
            font-size: 14px;
        }

        .about-title {
            font-size: 28px;
        }

        .about-description {
            font-size: 14px;
        }

        .section-title {
            font-size: 28px;
        }

        .service-title {
            font-size: 18px;
        }

        .testimonial-title {
            font-size: 24px;
        }

        .testimonial-quote {
            font-size: 14px;
        }

        .testimonial-author {
            font-size: 16px;
        }

        .testimonial-position {
            font-size: 12px;
        }
    }


    /* ===== Global Styles ===== */
body {
    margin: 0;
    padding: 0;
    font-family: "Clash", -apple-system, sans-serif;
    font-weight: 400;
    background-color: #0a1218;
    color: #fff;
  }
  
  /* ===== Header Styles (Matches Landing Page) ===== */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
}

.nav-container {
    display: flex;
    width: 100%;
    max-width: 1296px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 40px 100px;
    padding: 0 20px;
}

.menu-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 27px;
}

.menu-line {
    background-color: #fff;
    height: 1px;
    width: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle:hover .menu-line {
    background-color: #d4af37;
}

.logo {
    aspect-ratio: 3.11;
    object-fit: contain;
    width: 200px;
    min-width: 180px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: max(5px, 1vw); /* Minimum gap of 5px, scales with viewport */
    font-size: clamp(12px, 1vw, 16px); /* Scales between 12px-16px */
    padding: 0.3em 0.6em;
    margin-right: max(10px, 2vw); /* Always keeps distance from the right edge */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 1; /* Allows shrinking but maintains structure */
}

.language-option {
    transition: all 0.2s ease;
    flex-shrink: 1; /* Allows text to compress slightly */
    min-width: max-content; /* Prevents awkward text breaks */
}

.language-option.active {
    font-weight: 700;
    letter-spacing: 0.48px;
    color: #d4af37;
}

.language-option:hover {
    color: #d4af37;
}

/* ===== Corum Hero Section ===== */
.corum-hero {
    position: relative;
    height: 100vh;
    margin-top: 0;
}

.corum-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%; /* Adjusted to show more of the watch */
    z-index: 0;
}

.corum-hero-content {
    position: absolute;
    bottom: 20%; /* Lowered position */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1296px;
    padding: 0 20px;
    z-index: 2;
    box-sizing: border-box;
}

.corum-hero-title {
    font-family: "Fraunces1", serif;
    font-size: 5.5vw;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1;
    white-space: nowrap;
    text-align: right;
    padding-right: 15%;
}

.corum-hero-bottom {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-end;
    padding-right: 15%;
    margin-left: auto;
    max-width: 85%;
}

.corum-hero-subtitle {
    font-family: "Clash", sans-serif;
    font-size: 1.2vw;
    font-weight: 400;
    color: white;
    margin: 0;
    max-width: 500px;
    text-align: right;
}

.discover-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #fff;
    padding: 12px 24px;
    font-family: "Clash", sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/* Blur hover effect */
.discover-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.discover-link:hover::before {
    opacity: 1;
}

.discover-link:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.discover-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.discover-link:hover .discover-arrow {
    transform: translateX(5px);
}

/* ===== Corum Hero Section ===== */
.corum-hero {
    position: relative;
    height: 100vh;
    margin-top: 0;
}

.corum-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%; /* Keep original image position */
    z-index: 0;
}

.corum-hero-content {
    position: absolute;
    bottom: 5%; /* Lowered from previous value (was 20%) */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1296px;
    padding: 0 20px;
    z-index: 2;
    box-sizing: border-box;
}

.corum-hero-title {
    font-family: "Fraunces1", serif;
    font-size: 7vw;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    margin: 0 0 20px 12%;
    line-height: 1;
    white-space: nowrap;
    text-align: right;
    padding-right: 15%;
}

.corum-hero-bottom {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-end;
    padding-right: 15%;
    margin-left: auto;
    max-width: 85%;
}

.corum-hero-subtitle {
    font-family: "Clash", sans-serif;
    font-size: 1.2vw;
    font-weight: 400;
    color: white;
    margin: 0;
    max-width: 500px;
    text-align: center;
    display: inline-block;
    margin-left: auto;
}

.discover-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #fff;
    padding: 12px 24px;
    font-family: "Clash", sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(0);
}

/* Blur hover effect */
.discover-link:hover {
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.discover-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.discover-link:hover .discover-arrow {
    transform: translateX(5px);
}


/* ===== Feature Section ===== */
.corum-feature {
    background-color: white;
    color: black;
    padding: 100px 20px;
}

.corum-feature-main {
    display: flex;
    max-width: 1296px;
    margin: 0 auto;
    align-items: center;
    gap: 60px;
}

.corum-feature-text {
    flex: 1;
}

.corum-feature-heading {
    font-family: "Fraunces", serif;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
}

.corum-feature-description {
    font-family: "Clash", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
}

.corum-feature-image {
    flex: 1;
    max-width: 50%;
    border-radius: 8px;
}

/* ===== Gallery Section ===== */
.corum-gallery {
    padding: 80px 20px;
    background-color: #f1faf0;
}

.corum-gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1296px;
    margin: 0 auto;
}

.corum-gallery-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.corum-gallery-image:hover {
    transform: scale(1.02);
}


/* ===== Header Scroll Effect ===== */
.main-header.scrolled {
    background-color: rgba(10, 18, 24, 0.9);
}

/* ===== Responsive Styles ===== */

/* Responsive Adjustments */
@media (max-width: 1024px) {
    
    .corum-hero-title {
        font-size: 7vw; /* Reduced from 7vw */
        padding: 0 10%;
        margin: 0 auto;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        white-space: normal; /* Allow text wrapping */
        line-height: 1.2;
    }
    
    .corum-hero-subtitle {
        font-size: 1.8vw;
    }
    
    .corum-hero-bottom {
        padding-right: 10%;
        max-width: 90%;
    }

    .corum-content-block {
        flex-direction: column;
    }
    
    .corum-feature-image {
        max-width: 100%;
        width: 100%; /* Ensures it doesn't exceed container width */
        height: auto; /* Maintains aspect ratio */
        display: block; /* Removes extra space below image */
        margin-top: 40px;
        object-fit: contain; /* Ensures entire image fits while maintaining ratio */
        object-position: center; /* Centers the image in its container */
    }
    
    
}

@media (max-width: 768px) {
    
    .corum-hero-title {
        font-size: 12vw; /* Reduced from 9vw */
        padding: 0 5%;
        max-width: 90%; /* Prevent edge touching */
    }
    
    .corum-hero-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-right: 5%;
        max-width: 95%;
    }
    
    .corum-hero-subtitle {
        font-size: 16px;
    }
    

}

@media (max-width: 480px) {
    .corum-hero-title {
        font-size: 14vw; /* Reduced from 11vw */
        padding: 0 15px;
        width: calc(100% - 30px);
        word-break: keep-all; /* Prevent awkward breaks */
    }

    .corum-cta-button {
        margin-left: auto; /* Center alignment */
        margin-right: auto;
    }
    
    .corum-hero-subtitle {
        font-size: 14px;
    }

    .corum-content-section {
        padding: 60px 20px;
    }
    
    .corum-section-text, .corum-intro, .corum-contact-prompt {
        font-size: 16px;
    }   
    
}


@media (max-width: 768px) {
    .corum-feature-main {
        flex-direction: column;
    }
    
    .corum-feature-image {
        max-width: 100%;
        width: 100%; /* Ensures it doesn't exceed container width */
        height: auto; /* Maintains aspect ratio */
        display: block; /* Removes extra space below image */
        margin-top: 40px;
        object-fit: contain; /* Ensures entire image fits while maintaining ratio */
        object-position: center; /* Centers the image in its container */
    }
    
    .corum-feature-heading {
        font-size: 32px;
    }
    
    
}

@media (max-width: 480px) {
    
    .corum-feature-description {
        font-size: 16px;
    }
    
    .main-footer {
        flex-direction: column;
    }
    
    .footer-column {
        width: 100%;
    }

    

}

/* ===== Property Hero Section ===== */
.property-hero {
    position: relative;
    height: 100vh;
    margin-top: 0;
}

.property-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.property-hero-content {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1296px;
    padding: 0 20px;
    z-index: 2;
    box-sizing: border-box;
}

.property-hero-title {
    font-family: "Fraunces1", serif;
    font-size: 4vw;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    margin: 0 0 20px -9%; /* Reduced from 10% to 5% */
    line-height: 1;
    white-space: nowrap;
    text-align: left;
    padding-left: 5%; /* Reduced from 15% to 5% */
    width: auto;
    max-width: 90%; /* Increased from 85% to give more space */
    margin-right: auto;
}

.property-hero-bottom {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-end;
    padding-right: 15%;
    margin-left: auto;
    max-width: 85%;
}

.property-hero-subtitle {
    font-family: "Clash", sans-serif;
    font-size: 1.2vw;
    font-weight: 400;
    color: white;
    margin: 0;
    max-width: 500px;
    text-align: center;
    display: inline-block;
    margin-left: auto;
}



/* ===== Property Feature Section ===== */
.property-feature {
    background-color: white;
    color: black;
    padding: 100px 20px;
}

.property-feature-main {
    display: flex;
    max-width: 1296px;
    margin: 0 auto;
    align-items: center;
    gap: 60px;
}

.property-feature-text {
    flex: 1;
}

.property-feature-heading {
    font-family: "Fraunces", serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
}

.property-feature-description {
    font-family: "Clash", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
}

.property-feature-description p {
    margin-bottom: 20px;
}

.property-feature-image {
    flex: 1;
    max-width: 50%;
    border-radius: 8px;
}

/* ===== Property Gallery Section ===== */
.property-gallery {
    padding: 80px 20px;
    background-color: #f1faf0;
}

.property-gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1296px;
    margin: 0 auto;
}

.property-gallery-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.property-gallery-image:hover {
    transform: scale(1.02);
}

/* Responsive Adjustments */
/* ===== ULTRA-WIDE SCREENS (2560px+) ===== */
@media (max-width: 2560px) {
    .property-hero-title {
        font-size: min(4vw, 96px);
        margin-left: min(-40%, 120px);
    }
}

/* ===== STANDARD DESKTOP (1920px-1600px) ===== */
@media (max-width: 1920px) {
    .property-hero-title {
        font-size: min(4vw, 84px);
        margin-left: min(40%, -275px);
    }
}

/* ===== SMALL DESKTOP (1600px-1440px) ===== */
@media (max-width: 1600px) {
    .property-hero-title {
        font-size: min(4vw, 72px);
        margin-left: min(-10%, -100px);
    }
}

/* ===== COMPACT DESKTOP (1440px-1280px) ===== */
@media (max-width: 1440px) {
    .property-hero-title {
        font-size: min(4vw, 64px);
        margin-left: min(10%, -45px);
    }
}

/* ===== LAPTOP (1280px-1024px) ===== */
@media (max-width: 1280px) {
    .property-hero-title {
        font-size: min(4vw, 56px);
        margin-left: min(40%, 15px);
    }
}

/* ===== TABLET PORTRAIT (900px-768px) ===== */
@media (max-width: 900px) {
    .property-hero-title {
        font-size: min(4vw, 42px);
        margin-left: 0;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {
    .property-hero-title {
        font-size: 5.5vw; /* Reduced from 7vw */
        padding: 0 10%;
        margin: 0 auto;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        white-space: normal; /* Allow text wrapping */
        line-height: 1.2;
    }
    
    .property-hero-bottom {
        padding-right: 10%;
        max-width: 90%;
    }
    
    .property-hero-subtitle {
        font-size: 1.8vw;
    }

    .property-content-block {
        flex-direction: column;
    }
    
    .property-content-image {
        max-width: 100%;
        margin-top: 40px;
    }
    .property-feature-main {
        flex-direction: column;
    }
    
    .property-feature-image {
        max-width: 100%;
        width: 100%; /* Ensures it doesn't exceed container width */
        height: auto; /* Maintains aspect ratio */
        display: block; /* Removes extra space below image */
        margin-top: 40px;
        object-fit: contain; /* Ensures entire image fits while maintaining ratio */
        object-position: center; /* Centers the image in its container */
    }
    
    .property-feature-heading {
        font-size: 32px;
    }

}

@media (max-width: 768px) {
    .property-hero-title {
        font-size: 7vw; /* Reduced from 9vw */
        padding: 0 5%;
        max-width: 90%; /* Prevent edge touching */
    }
    
    .property-hero-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-right: 5%;
        max-width: 95%;
    }
    
    .property-hero-subtitle {
        font-size: 16px;
    }

    .property-section-title {
        font-size: 32px;
    }

    .property-feature-image {
        max-width: 100%;
        width: 100%; /* Ensures it doesn't exceed container width */
        height: auto; /* Maintains aspect ratio */
        display: block; /* Removes extra space below image */
        margin-top: 40px;
        object-fit: contain; /* Ensures entire image fits while maintaining ratio */
        object-position: center; /* Centers the image in its container */
    }
    
    
}

@media (max-width: 480px) {
    .property-hero-title {
        font-size: 8vw; /* Reduced from 11vw */
        padding: 0 15px;
        width: calc(100% - 30px);
        word-break: keep-all; /* Prevent awkward breaks */
    }
    
    .property-cta-button {
        margin-left: auto; /* Center alignment */
        margin-right: auto;
    }
    
    .property-hero-subtitle {
        font-size: 14px;
    }

    .property-content-section {
        padding: 60px 20px;
    }
    
    .property-section-text, .property-intro, .property-contact-prompt {
        font-size: 16px;
    }
    .property-feature {
        padding: 60px 20px;
    }
    
    .property-feature-description {
        font-size: 16px;
    }

    .property-feature-image {
        max-width: 100%;
        width: 100%; /* Ensures it doesn't exceed container width */
        height: auto; /* Maintains aspect ratio */
        display: block; /* Removes extra space below image */
        margin-top: 40px;
        object-fit: contain; /* Ensures entire image fits while maintaining ratio */
        object-position: center; /* Centers the image in its container */
    }
}

/* ===== Global Marketing Hero Section ===== */
.marketing-hero {
    position: relative;
    height: 100vh;
    margin-top: 0;
}

.marketing-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25); /* Adjust darkness */
    z-index: 1;
}

.marketing-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.marketing-hero-content {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1296px;
    padding: 0 20px;
    z-index: 2;
    box-sizing: border-box;
}

.marketing-hero-title {
    font-family: "Fraunces1", serif;
    font-size: 5.5vw;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1;
    white-space: nowrap;
    text-align: right;
    padding-right: 15%;
}

.marketing-hero-bottom {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-end;
    padding-right: 15%;
    margin-left: auto;
    max-width: 85%;
}

.marketing-hero-subtitle {
    font-family: "Clash Display", sans-serif;
    font-size: 1.2vw;
    font-weight: 400;
    color: white;
    margin: 0;
    max-width: 500px;
    text-align: center;
    display: inline-block;
    margin-left: auto;
}

.marketing-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #fff;
    padding: 12px 24px;
    font-family: "Clash", sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    flex-shrink: 0;
    backdrop-filter: blur(0);
}

.marketing-cta-button:hover {
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.discover-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.marketing-cta-button:hover .discover-arrow {
    transform: translateX(5px);
}

/* Responsive Adjustments - Center Aligned Text Only */

@media (max-width: 768px) {
    .marketing-hero-title {
        font-size: 9vw;
        padding-right: 5%;
        white-space: normal;
        text-align: center; /* Added center alignment */
    }
    
    .marketing-hero-bottom {
        flex-direction: column;
        align-items: center; /* Changed from flex-end to center */
        gap: 20px;
        padding-right: 5%;
        max-width: 95%;
    }
    
    .marketing-hero-subtitle {
        font-size: 16px;
        text-align: center; /* Changed from right to center */
    }
}

@media (max-width: 480px) {
    .marketing-hero-title {
        font-size: 11vw;
        text-align: center; /* Added center alignment */
    }
    
    .marketing-hero-subtitle {
        font-size: 14px;
        text-align: center; /* Changed from default to center */
    }
}

/* ===== Marketing Content Section ===== */
.marketing-content-section {
    background-color: #fff;
    padding: 100px 20px;
}

.marketing-content-block {
    display: flex;
    max-width: 1296px;
    margin: 0 auto 80px;
    align-items: center;
    gap: 60px;
}

.marketing-content-block.reverse {
    flex-direction: row-reverse;
}

.marketing-text-content {
    flex: 1;
}

.marketing-section-title {
    font-family: "Fraunces", serif;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #000;
}

.marketing-section-text {
    font-family: "Clash", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 20px;
}

.marketing-section-text li {
    margin-bottom: 10px;
}

.marketing-content-image {
    flex: 1;
    max-width: 50%;
    border-radius: 8px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .marketing-hero-title {
        font-size: 7vw;
        padding-right: 10%;
    }
    
    
    .marketing-hero-bottom {
        padding-right: 10%;
        max-width: 90%;
    }
    
    .marketing-hero-subtitle {
        font-size: 1.8vw;
    }

    .marketing-content-block {
        flex-direction: column;
    }
    
    .marketing-content-image {
        max-width: 100%;
        width: 100%; /* Ensures it doesn't exceed container width */
        height: auto; /* Maintains aspect ratio */
        display: block; /* Removes extra space below image */
        margin-top: 40px;
        object-fit: contain; /* Ensures entire image fits while maintaining ratio */
        object-position: center; /* Centers the image in its container */
    }
}

@media (max-width: 768px) {
    .marketing-hero-title {
        font-size: 9vw;
        padding-right: 5%;
        white-space: normal;
    }
    
    .marketing-hero-bottom {
        padding-right: 5%;
        max-width: 95%;
    }
    
    .marketing-hero-subtitle {
        font-size: 16px;
    }

    .marketing-section-title {
        font-size: 32px;
    }

    .marketing-content-image {
        max-width: 100%;
        width: 100%; /* Ensures it doesn't exceed container width */
        height: auto; /* Maintains aspect ratio */
        display: block; /* Removes extra space below image */
        margin-top: 40px;
        object-fit: contain; /* Ensures entire image fits while maintaining ratio */
        object-position: center; /* Centers the image in its container */
    }


}

@media (max-width: 480px) {
    .marketing-hero-title {
        font-size: 11vw;
    }
    
    .marketing-hero-subtitle {
        font-size: 14px;
    }

    .marketing-content-section {
        padding: 60px 20px;
    }
    
    .marketing-section-text {
        font-size: 16px;
    }

    .marketing-content-image {
        max-width: 100%;
        width: 100%; /* Ensures it doesn't exceed container width */
        height: auto; /* Maintains aspect ratio */
        display: block; /* Removes extra space below image */
        margin-top: 40px;
        object-fit: contain; /* Ensures entire image fits while maintaining ratio */
        object-position: center; /* Centers the image in its container */
    }
}



/* ===== Event Hero Section ===== */
.event-hero {
    position: relative;
    overflow: hidden;
    height: 100vh; 
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Default height */
    justify-content: center;
    position: relative;
    height: 100%;
    padding: 0 8%; /* Equal side spacing */
}

.event-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.event-hero-content {
    position: relative;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1296px;
    padding: 5%;
    z-index: 2;
    box-sizing: border-box;
}

/* ===== Event Hero Section ===== */
.event-hero {
    position: relative;
    overflow: hidden;
    height: 100vh; /* Always start with full viewport height */
}

.hero-content-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Push content to bottom */
    padding: 0 8%; /* Equal side spacing */
}

.event-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.event-hero-content {
    position: relative; /* Changed from absolute to relative */
    width: 100%;
    max-width: 1296px;
    margin: 0 auto;
    padding-bottom: 0; /* Space from bottom */
    z-index: 2;
    box-sizing: border-box;
}

/* ===== Original Full Screen Styling (Unchanged) ===== */
.event-hero-title {
    font-family: "Fraunces1", serif;
    font-size: 4vw;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1;
    white-space: nowrap;
    text-align: right;
    margin-left: -8%;
    max-width: 85%;
    overflow: visible; /* Ensures full text is always visible */
}
.event-hero-title {
    word-spacing: -0.03em;
    letter-spacing: -0.3px;
    text-rendering: optimizeLegibility;
}

/* ===== ULTRA-WIDE SCREENS (2560px+) ===== */
@media (max-width: 2560px) {
    .event-hero-title {
        font-size: min(4vw, 96px);
        margin-left: min(-40%, 120px);
    }
}

/* ===== STANDARD DESKTOP (1920px-1600px) ===== */
@media (max-width: 1920px) {
    .event-hero-title {
        font-size: min(4vw, 84px);
        margin-left: min(40%, -275px);
    }
}

/* ===== SMALL DESKTOP (1600px-1440px) ===== */
@media (max-width: 1600px) {
    .event-hero-title {
        font-size: min(4vw, 72px);
        margin-left: min(-10%, -100px);
    }
}

/* ===== COMPACT DESKTOP (1440px-1280px) ===== */
@media (max-width: 1440px) {
    .event-hero-title {
        font-size: min(4vw, 64px);
        margin-left: min(10%, -45px);
    }
}

/* ===== LAPTOP (1280px-1024px) ===== */
@media (max-width: 1280px) {
    .event-hero-title {
        font-size: min(4vw, 56px);
        margin-left: min(40%, 15px);
    }
}

/* ===== TABLET LANDSCAPE (1024px-900px) ===== */
@media (max-width: 1024px) {
    .event-hero-title {
        font-size: min(4vw, 48px);
        margin-left: min(-8%, -40px);
    }
}

/* ===== TABLET PORTRAIT (900px-768px) ===== */
@media (max-width: 900px) {
    .event-hero-title {
        font-size: min(4vw, 42px);
        margin-left: 0;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
}/* ===== Original Full Screen Styling (Unchanged) ===== */
.event-hero-title {
    font-family: "Fraunces1", serif;
    font-size: 4vw;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1;
    white-space: nowrap;
    text-align: right;
    margin-left: -8%;
    max-width: 85%;
    overflow: visible; /* Ensures full text is always visible */
}
.event-hero-title {
    word-spacing: -0.03em;
    letter-spacing: -0.3px;
    text-rendering: optimizeLegibility;
}



/* ===== ULTRA-WIDE SCREENS (2560px+) ===== */
@media (max-width: 2560px) {
    .event-hero-title {
        font-size: min(4vw, 96px);
        margin-left: min(-93%, 120px);
    }
}

/* ===== STANDARD DESKTOP (1920px-1600px) ===== */
@media (max-width: 1920px) {
    .event-hero-title {
        font-size: min(4vw, 84px);
        margin-left: min(40%, -495px);
    }
}

/* ===== SMALL DESKTOP (1600px-1440px) ===== */
@media (max-width: 1600px) {
    .event-hero-title {
        font-size: min(4vw, 72px);
        margin-left: min(-10%, -160px);
    }
}

/* ===== COMPACT DESKTOP (1440px-1280px) ===== */
@media (max-width: 1440px) {
    .event-hero-title {
        font-size: min(4vw, 64px);
        margin-left: min(10%, -130px);
    }
}

/* ===== LAPTOP (1280px-1024px) ===== */
@media (max-width: 1280px) {
    .event-hero-title {
        font-size: min(4vw, 56px);
        margin-left: min(40%, -120px);
    }
}

/* ===== TABLET LANDSCAPE (1024px-900px) ===== */
@media (max-width: 1024px) {
    .event-hero-title {
        font-size: min(4vw, 48px);
        margin-left: min(-8%, -40px);
    }
}

/* ===== TABLET PORTRAIT (900px-768px) ===== */
@media (max-width: 900px) {
    .event-hero-title {
        font-size: min(4vw, 42px);
        margin-left: 0;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
}

.event-hero-bottom {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-end;
    padding-right: 15%;
    margin-left: auto;
    max-width: 85%;
}

.event-hero-subtitle {
    font-family: "Clash", sans-serif;
    font-size: 1.2vw;
    font-weight: 400;
    color: white;
    margin: 0;
    max-width: 500px;
    text-align: center;
    display: inline-block;
    margin-left: auto;
}

.event-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #fff;
    padding: 12px 24px;
    font-family: "Clash", sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(0);
}

.event-cta-button:hover {
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.discover-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.event-cta-button:hover .discover-arrow {
    transform: translateX(5px);
}

/* ===== Event Content Section ===== */
.event-content-section {
    background-color: #f6faf6;
    padding: 100px 20px;
}

.event-content-block {
    display: flex;
    max-width: 1296px;
    margin: 0 auto;
    align-items: center;
    gap: 60px;
}

.event-text-content {
    flex: 1;
}

.event-intro {
    font-family: "Clash", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 30px;
}

.event-section-title {
    font-family: "Fraunces", serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #000;
}

.event-section-text {
    font-family: "Clash", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 20px;
}

.event-contact-prompt {
    font-family: "Clash", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin-top: 30px;
}

.event-content-image {
    flex: 1;
    max-width: 50%;
    border-radius: 8px;
}



/* Responsive Adjustments */
@media (max-width: 1024px) {
    .event-hero-title {
        font-size: 5.5vw; /* Reduced from 7vw */
        padding: 0 10%;
        margin: 0 auto;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        white-space: normal; /* Allow text wrapping */
        line-height: 1.2;
    }
    
    .event-hero-bottom {
        padding-right: 10%;
        max-width: 90%;
    }
    
    .event-hero-subtitle {
        font-size: 1.8vw;
    }

    .event-content-block {
        flex-direction: column;
    }
    
    .event-content-image {
        max-width: 100%;
        width: 100%; /* Ensures it doesn't exceed container width */
        height: auto; /* Maintains aspect ratio */
        display: block; /* Removes extra space below image */
        margin-top: 40px;
        object-fit: contain; /* Ensures entire image fits while maintaining ratio */
        object-position: center; /* Centers the image in its container */
    }
}

@media (max-width: 768px) {
    .event-hero-title {
        font-size: 7vw; /* Reduced from 9vw */
        padding: 0 5%;
        max-width: 90%; /* Prevent edge touching */
    }
    
    .event-hero-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-right: 5%;
        max-width: 95%;
    }
    
    .event-hero-subtitle {
        font-size: 16px;
    }

    .event-section-title {
        font-size: 32px;
    }

    .event-content-image {
        max-width: 100%;
        width: 100%; /* Ensures it doesn't exceed container width */
        height: auto; /* Maintains aspect ratio */
        display: block; /* Removes extra space below image */
        margin-top: 40px;
        object-fit: contain; /* Ensures entire image fits while maintaining ratio */
        object-position: center; /* Centers the image in its container */
    }
}

@media (max-width: 480px) {
    .event-hero-title {
        font-size: 8vw; /* Reduced from 11vw */
        padding: 0 15px;
        width: calc(100% - 30px);
        word-break: keep-all; /* Prevent awkward breaks */
    }
    
    .event-cta-button {
        margin-left: auto; /* Center alignment */
        margin-right: auto;
    }
    
    .event-hero-subtitle {
        font-size: 14px;
    }

    .event-content-section {
        padding: 60px 20px;
    }
    
    .event-section-text, .event-intro, .event-contact-prompt {
        font-size: 16px;
    }

    .event-content-image {
        max-width: 100%;
        width: 100%; /* Ensures it doesn't exceed container width */
        height: auto; /* Maintains aspect ratio */
        display: block; /* Removes extra space below image */
        margin-top: 40px;
        object-fit: contain; /* Ensures entire image fits while maintaining ratio */
        object-position: center; /* Centers the image in its container */
    }
}




/* ===== Luxury Trips Hero Section ===== */
.trips-hero {
    position: relative;
    height: 100vh;
    margin-top: 0;
}

.trips-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.trips-hero-content {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1296px;
    padding: 0 20px;
    z-index: 2;
    box-sizing: border-box;
}

.trips-hero-title {
    font-family: "Fraunces1", serif;
    font-size: 6vw;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1;
    white-space: nowrap;
    text-align: right;
    padding-right: 15%;
    width: calc(100% - 30px);
    margin-left: 1%;
    max-width: 85%;
}

.trips-hero-bottom {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-end;
    padding-right: 15%;
    margin-left: auto;
    max-width: 85%;
}

.trips-hero-subtitle {
    font-family: "Clash", sans-serif;
    font-size: 1.2vw;
    font-weight: 400;
    color: white;
    margin: 0;
    max-width: 500px;
    text-align: center;
    display: inline-block;
    margin-left: auto;
}

/* ===== Luxury Trips Content Section ===== */
.trips-content-section {
    background-color: #f6faf6;
    padding: 100px 20px;
}

.trips-content-block {
    display: flex;
    max-width: 1296px;
    margin: 0 auto;
    align-items: center;
    gap: 60px;
}

.trips-text-content {
    flex: 1;
}

.trips-section-title {
    font-family: "Fraunces", serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #000;
}

.trips-section-text {
    font-family: "Clash", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 20px;
}

.trips-contact-prompt {
    font-family: "Clash", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin-top: 30px;
}

.trips-contact-prompt strong {
    font-weight: 600;
}

.trips-content-image {
    flex: 1;
    max-width: 50%;
    border-radius: 8px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .trips-hero-title {
        font-size: 5.5vw; /* Reduced from 7vw */
        padding: 0 10%;
        margin: 0 auto;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        white-space: normal; /* Allow text wrapping */
        line-height: 1.2;
    }
    
    .trips-hero-bottom {
        padding-right: 10%;
        max-width: 90%;
    }
    
    .trips-hero-subtitle {
        font-size: 1.8vw;
    }

    .trips-content-block {
        flex-direction: column;
    }
    
    .trips-content-image {
        max-width: 100%;
        width: 100%; /* Ensures it doesn't exceed container width */
        height: auto; /* Maintains aspect ratio */
        display: block; /* Removes extra space below image */
        margin-top: 40px;
        object-fit: contain; /* Ensures entire image fits while maintaining ratio */
        object-position: center; /* Centers the image in its container */
    }
}

@media (max-width: 768px) {
    .trips-hero-title {
        font-size: 7vw; /* Reduced from 9vw */
        padding: 0 5%;
        max-width: 90%; /* Prevent edge touching */
    }
    
    .trips-hero-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-right: 5%;
        max-width: 95%;
    }
    
    .trips-hero-subtitle {
        font-size: 16px;
    }

    .trips-section-title {
        font-size: 32px;
    }

    .trips-content-image {
        max-width: 100%;
        width: 100%; /* Ensures it doesn't exceed container width */
        height: auto; /* Maintains aspect ratio */
        display: block; /* Removes extra space below image */
        margin-top: 40px;
        object-fit: contain; /* Ensures entire image fits while maintaining ratio */
        object-position: center; /* Centers the image in its container */
    }
}

@media (max-width: 480px) {
    .trips-hero-title {
        font-size: 8vw; /* Reduced from 11vw */
        padding: 0 15px;
        width: calc(100% - 30px);
        word-break: keep-all; /* Prevent awkward breaks */
    }
    
    .trips-cta-button {
        margin-left: auto; /* Center alignment */
        margin-right: auto;
    }
    
    .trips-hero-subtitle {
        font-size: 14px;
    }

    .trips-content-section {
        padding: 60px 20px;
    }
    
    .trips-section-text, .trips-intro, .trips-contact-prompt {
        font-size: 16px;
    }

    .trips-content-image {
        max-width: 100%;
        width: 100%; /* Ensures it doesn't exceed container width */
        height: auto; /* Maintains aspect ratio */
        display: block; /* Removes extra space below image */
        margin-top: 40px;
        object-fit: contain; /* Ensures entire image fits while maintaining ratio */
        object-position: center; /* Centers the image in its container */
    }
}


/* ===== Events Hero Section ===== */
.events-hero {
    position: relative;
    height: 100vh;
    margin-top: 0;
}

.events-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.events-hero-content {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1296px;
    padding: 0 20px;
    z-index: 2;
    box-sizing: border-box;
}

.events-hero-title {
    font-family: "Fraunces1", serif;
    font-size: 5vw;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1;
    white-space: nowrap;
    text-align: right;
    padding-right: 15%;
    width: calc(100% - 30px);
    margin-left: -5%;
    max-width: 85%;
}

.events-hero-bottom {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-end;
    padding-right: 15%;
    margin-left: auto;
    max-width: 85%;
}

.events-hero-subtitle {
    font-family: "Clash", sans-serif;
    font-size: 1.2vw;
    font-weight: 400;
    color: white;
    margin: 0;
    max-width: 500px;
    text-align: center;
    display: inline-block;
    margin-left: auto;
}

/* ===== Events Content Section ===== */
.events-content-section {
    background-color: #f6faf6;
    padding: 100px 20px;
}

.events-content-block {
    display: flex;
    max-width: 1296px;
    margin: 0 auto;
    align-items: flex-start;
    gap: 60px;
}

.events-text-content {
    flex: 1;
}

.events-section-title {
    font-family: "Fraunces", serif;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #000;
}

.events-section-text {
    font-family: "Clash", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 20px;
}

.events-services-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    color: #000;
}

.events-services-list li {
    margin-bottom: 15px;
    font-family: "Clash", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
}

.events-services-list strong {
    font-weight: 600;
    color: #000;
}

.events-list {
    padding-left: 20px;
    margin: 20px 0;
    font-family: "Clash", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
}

.events-list li {
    margin-bottom: 10px;
}

.events-highlight {
    font-family: "Clash", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin-top: 30px;
    font-weight: 500;
}

.events-content-image {
    flex: 1;
    max-width: 50%;
    border-radius: 8px;
}

/* Responsive Adjustments */
/* ===== ULTRA-WIDE SCREENS (2560px+) ===== */
@media (max-width: 2560px) {
    .events-hero-title {
        font-size: min(4vw, 96px);
        margin-left: min(-15%, 120px);
    }
}

/* ===== STANDARD DESKTOP (1920px-1600px) ===== */
@media (max-width: 1920px) {
    .events-hero-title {
        font-size: min(4vw, 84px);
        margin-left: min(20%, -50px);
    }
}

/* ===== SMALL DESKTOP (1600px-1440px) ===== */
@media (max-width: 1600px) {
    .events-hero-title {
        font-size: min(4vw, 72px);
        margin-left: min(10%, 50px);
    }
}

/* ===== COMPACT DESKTOP (1440px-1280px) ===== */
@media (max-width: 1440px) {
    .events-hero-title {
        font-size: min(4vw, 64px);
        margin-left: min(10%, 50px);
    }
}

/* ===== LAPTOP (1280px-1024px) ===== */
@media (max-width: 1280px) {
    .events-hero-title {
        font-size: min(4vw, 56px);
        margin-left: min(40%, 15px);
    }
}

/* ===== TABLET LANDSCAPE (1024px-900px) ===== */
@media (max-width: 1024px) {
    .events-hero-title {
        font-size: min(4vw, 48px);
        margin-left: min(-8%, -40px);
    }
}

/* ===== TABLET PORTRAIT (900px) ===== */
@media (max-width: 900px) {
    .events-hero-title {
        font-size: min(4vw, 42px);
        margin-left: 0;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {
    .events-hero-title {
        font-size: 7vw; /* Reduced from 7vw */
        padding: 0 10%;
        margin: 0 auto;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        white-space: normal; /* Allow text wrapping */
        line-height: 1.2;
    }
    
    .events-hero-bottom {
        padding-right: 10%;
        max-width: 90%;
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        position: relative;
    }
    
    .events-hero-subtitle {
        font-size: 1.8vw;
    }

    .events-content-block {
        flex-direction: column;
    }
    
    .events-content-image {
        max-width: 100%;
        width: 100%; /* Ensures it doesn't exceed container width */
        height: auto; /* Maintains aspect ratio */
        display: block; /* Removes extra space below image */
        margin-top: 40px;
        object-fit: contain; /* Ensures entire image fits while maintaining ratio */
        object-position: center; /* Centers the image in its container */
    }

    .events-cta-button {
        position: absolute;
        left: 0;
        right: auto !important;
        margin-left: 0 !important;
        transform: none !important;
    }

    .discover-link {
        margin: 0 auto;
    }
    
}

@media (max-width: 768px) {
    .events-hero-title {
        font-size: 7vw; /* Reduced from 9vw */
        padding: 0 5%;
        max-width: 90%; /* Prevent edge touching */
    }
    
    .events-hero-bottom {
        gap: 20px;
        padding-right: 5%;
        max-width: 95%;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .events-cta-button {
        position: absolute;
        left: 0;
        right: auto !important;
        margin-left: 0 !important;
        transform: none !important;
    }
    
    
    .events-hero-subtitle {
        font-size: 16px;
    }

    .events-section-title {
        font-size: 32px;
    }
    .discover-link {
        margin: 0 auto;
    }

    .events-content-image {
        max-width: 100%;
        width: 100%; /* Ensures it doesn't exceed container width */
        height: auto; /* Maintains aspect ratio */
        display: block; /* Removes extra space below image */
        margin-top: 40px;
        object-fit: contain; /* Ensures entire image fits while maintaining ratio */
        object-position: center; /* Centers the image in its container */
    }
}

@media (max-width: 480px) {
    .events-hero-title {
        font-size: 8vw; /* Reduced from 11vw */
        padding: 0 15px;
        width: calc(100% - 30px);
        word-break: keep-all; /* Prevent awkward breaks */
    }
    
    .events-hero-bottom {
        display: flex;
        position: relative;
        flex-direction: column;
        align-items: flex-start !important; /* Force left alignment */
        padding-left: 5% !important; /* Add left padding */
    }
    
    .events-cta-button {
        position: absolute;
        left: 0;
        right: auto !important;
        margin-left: 0 !important;
        transform: none !important;
    }
    
    .events-hero-subtitle {
        font-size: 14px;
    }

    .events-content-section {
        padding: 60px 20px;
    }
    
    .events-section-text, .event-intro, .event-contact-prompt {
        font-size: 16px;
    }
    .discover-link {
        margin: 0 auto;
    }

    .events-content-image {
        max-width: 100%;
        width: 100%; /* Ensures it doesn't exceed container width */
        height: auto; /* Maintains aspect ratio */
        display: block; /* Removes extra space below image */
        margin-top: 40px;
        object-fit: contain; /* Ensures entire image fits while maintaining ratio */
        object-position: center; /* Centers the image in its container */
    }
}



/* ===== Contact Hero Section ===== */
.contact-hero-section {
    position: relative;
    height: 85vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px; /* Account for fixed header */
    overflow: hidden;
}

.contact-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-hero-title {
    font-family: "Fraunces1", serif;
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    
    line-height: 1;
    text-align: center;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 455px; 
}

/* ===== Contact Card Section ===== */
.contact-card-section {
    background-color: #0a1218;
    padding: 60px 20px 100px;
    position: relative;
    
}

.contact-card-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: -500px auto 0;
    z-index: 2;
    
}

.contact-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 50px;
    width: 60%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-title {
    font-family: "Clash", sans-serif;
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 40px;
    color: #fff;
}

.contact-form {
    width: 100%;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 0;
}

.form-group label {
    display: block;
    font-family: "Clash", sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
}

.form-input {
    width: 100%;
    border-radius: 7px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-height: 50px;
    color: #fff;
    padding: 15px;
    box-sizing: border-box;
    font-family: "Clash", sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #d4af37;
    background-color: rgba(255, 255, 255, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    border-radius: 7px;
    background-color: #d4af37;
    border: none;
    min-height: 50px;
    color: #000;
    font-family: "Clash", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-top: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #e6c875;
}

.social-connect {
    margin-top: 40px;
    text-align: center;
}

.social-title2 {
    font-family: "Clash", sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 30px;
    color: #fff;
}

.social-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.social-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-option:hover {
    transform: translateY(-5px);
}

.social-icon2 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 5px;
}

.social-name {
    font-family: "Clash", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.social-divider {
    font-family: "Clash", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .contact-hero-title {
        font-size: 3.5rem;
    }
    
    .contact-card {
        width: 70%;
        padding: 40px;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .contact-card-section {
      padding: 40px 15px 80px;
      margin-top: -40px; /* Adjusted for mobile header */
    }
    
    .contact-card-container {
      padding-top: -40px; /* No extra padding needed on mobile */
    }
    
    .contact-card {
      padding: 30px 20px;
      width: 100%;
      margin-top: 20px;
      backdrop-filter: blur(5px);
    }
    
    .form-row {
      flex-direction: column;
      gap: 15px;
    }
    
    .submit-button {
      padding: 12px;
    }
  }
  
  @media (max-width: 480px) {
    .contact-card {
      padding: 25px 15px;
    }
    
    .contact-title {
      font-size: 24px;
    }
    
    .social-options {
      flex-direction: column;
      gap: 20px;
    }
    
    .social-divider {
      display: none;  
    }
  }    

/* ===== About Page Styles ===== */

/* ===== Full Width Banner ===== */
.full-width-banner {
    width: 99vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 60px 0 40px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Slideshow Gallery Section ===== */
.slideshow-gallery-section {
    padding: 60px 0;
    background-color: #fff;
    overflow: hidden;
}

.slideshow-row {
    height: 300px; /* Larger square size */
    margin: 0;
    position: relative;
    overflow: hidden;
}

.slideshow-track {
    display: flex;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    height: 100%;
}

.slideshow-track img {
    height: 100%;
    width: 300px; /* Fixed square size */
    object-fit: cover;
    margin: 0; /* No spacing between images */
    flex-shrink: 0;
}

/* First row animation */
.first-row .slideshow-track {
    animation: slideLeft 60s linear infinite; /* Slower animation */
}

/* Second row animation */
.second-row .slideshow-track {
    animation: slideRight 60s linear infinite; /* Slower animation */
}

/* Third row animation */
.third-row .slideshow-track {
    animation: slideLeft 60s linear infinite; /* Slower animation */
}

@keyframes slideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes slideRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .slideshow-row {
        height: 250px;
    }
    
    .slideshow-track img {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .slideshow-row {
        height: 200px;
    }
    
    .slideshow-track img {
        width: 200px;
    }
    
}

@media (max-width: 480px) {
    .slideshow-row {
        height: 150px;
    }
    
    .slideshow-track img {
        width: 150px;
    }
}



/* About Hero Section */
.about-hero {
    position: relative;
    height: 100vh;
    margin-top: 0;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.about-hero-content {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1296px;
    padding: 0 20px;
    z-index: 2;
    box-sizing: border-box;
}

.about-hero-title {
    font-family: "Fraunces1", serif;
    font-size: 5.5vw;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    margin: 0 0 20px -5%;
    line-height: 1;
    white-space: nowrap;
    text-align: right;
    padding-right: 10%;
}


.about-hero-bottom {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-end;
    padding-right: 15%;
    margin-left: auto;
    max-width: 85%;
}

.about-hero-subtitle {
    font-family: "Clash", sans-serif;
    font-size: 1.2vw;
    font-weight: 400;
    color: white;
    margin: 0;
    max-width: 500px;
    text-align: center;
    display: inline-block;
    margin-left: auto;
}

/* About Intro Section */
.about-intro-section {
    padding: 100px 20px;
    background-color: #fff;
}

.about-intro-container {
    max-width: 1068px;
    margin: 0 auto;
    text-align: center;
}

.about-section-title {
    font-family: "Fraunces", serif;
    font-size: 42px;
    font-weight: 400;
    color: #000;
    margin-bottom: 30px;
}

.about-section-text {
    font-family: "Clash", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 30px;
}

.about-intro-image {
    width: 100%;
    max-width: 800px;
    margin: 30px auto 0;
    display: block;
}

/* About Features Section */
.about-features-section {
    padding: 10px 10px;
    background-color: #fff;
}

.about-features-container {
    max-width: 1125px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.about-feature-card {
    background-color: #faf7f0;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-feature-title {
    font-family: "Fraunces", serif;
    font-size: 30px;
    color: #000;
    text-align: center;
    margin: 0 0 20px 0;
}

.about-feature-text {
    font-family: "Clash", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #000;
}

/* About Mission Section */
.about-mission-section {
    padding: 80px 20px;
    background-color: #fff;
}

.about-mission-container {
    max-width: 1125px;
    margin: 0 auto;
    text-align: center;
}

.about-mission-text {
    font-family: "Clash", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #0a1218;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* About CTA Section */
.about-cta-section {
    padding: 60px 20px;
    background-color: #000;
    text-align: center;
}

.about-cta-container {
    max-width: 1125px;
    margin: 0 auto;
}

.about-cta-text {
    font-family: "Clash", sans-serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    border: 1px solid #fff;
    padding: 19px 20px;
    font-family: "Clash", sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: #fff;
    min-width: 200px;
    transition: all 0.3s ease;
    backdrop-filter: blur(0);
    background-color: transparent;
}

.cta-button:hover {
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.1);
}



/* Responsive Adjustments */
/* ===== ULTRA-WIDE SCREENS (2560px+) ===== */
@media (max-width: 2560px) {
    .about-hero-title {
        font-size: min(14vw, 120px);
        margin-left: min(-25%, 120px);
    }
}

/* ===== STANDARD DESKTOP (1920px-1600px) ===== */
@media (max-width: 1920px) {
    .about-hero-title {
        font-size: min(7vw, 100px);
        margin-left: min(60%, -190px);
    }
}

/* ===== SMALL DESKTOP (1600px-1440px) ===== */
@media (max-width: 1600px) {
    .about-hero-title {
        font-size: min(5vw, 90px);
        margin-left: min(50%, -20px);
    }
}

/* ===== COMPACT DESKTOP (1440px-1280px) ===== */
@media (max-width: 1440px) {
    .about-hero-title {
        font-size: min(4vw, 64px);
        margin-left: min(10%, -45px);
    }
}

/* ===== LAPTOP (1280px-1024px) ===== */
@media (max-width: 1280px) {
    .about-hero-title {
        font-size: min(4vw, 56px);
        margin-left: min(10%, 5px);
    }
}

/* ===== TABLET PORTRAIT (900px) ===== */
@media (max-width: 900px) {
    .about-hero-title {
        font-size: min(4vw, 42px);
        margin-left: 0;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
}


@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 5.5vw; /* Reduced from 7vw */
        padding: 0 10%;
        margin: 0 auto;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        white-space: normal; /* Allow text wrapping */
        line-height: 1.2;
    }
    
    .about-hero-bottom {
        padding-right: 10%;
        max-width: 90%;
    }
    
    .about-hero-subtitle {
        font-size: 1.8vw;
    }
    
    .about-features-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-section-title {
        font-size: 36px;
    }
    
    .about-section-text {
        font-size: 18px;
    }
    
    .about-mission-text {
        font-size: 18px;
    }
    
    .about-cta-text {
        font-size: 24px;
    }

    .about-content-block {
        flex-direction: column;
    }
    
    .about-content-image {
        max-width: 100%;
        margin-top: 40px;
    }
    .about-feature-main {
        flex-direction: column;
    }
    
    .about-feature-image {
        max-width: 100%;
        margin-top: 40px;
    }
    
    .about-feature-heading {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 7vw; /* Reduced from 9vw */
        padding: 0 5%;
        max-width: 90%; /* Prevent edge touching */
    }
    
    .about-hero-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-right: 5%;
        max-width: 95%;
    }
    
    .about-hero-subtitle {
        font-size: 16px;
        text-align: center;
    }
    
    .about-features-container {
        grid-template-columns: 1fr;
    }
    
    .about-section-title {
        font-size: 32px;
    }
    
    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-gallery-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 8vw; /* Reduced from 11vw */
        padding: 0 15px;
        width: calc(100% - 30px);
        word-break: keep-all; /* Prevent awkward breaks */
    }
    
    .about-cta-button {
        margin-left: auto; /* Center alignment */
        margin-right: auto;
    }
    
    .about-hero-subtitle {
        font-size: 14px;
    }
    
    .about-section-title {
        font-size: 28px;
    }
    
    .about-section-text {
        font-size: 16px;
    }
    
    .about-feature-text {
        font-size: 14px;
    }
    
    .about-mission-text {
        font-size: 16px;
    }
    
    .about-cta-text {
        font-size: 20px;
    }
    
    .about-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-gallery-item {
        height: 250px;
    }

    .about-content-section {
        padding: 60px 20px;
    }
    
    .about-section-text, .about-intro, .about-contact-prompt {
        font-size: 16px;
    }
    .about-feature {
        padding: 60px 20px;
    }
    
    .about-feature-description {
        font-size: 16px;
    }
}


/* thank-you.css */
.thank-you-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    z-index: 1;
    overflow: hidden;
}

/* Video background container */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* Video styling */
.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Overlay for better text readability */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

/* Content styling */
.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.thank-you-section h1 {
    font-family: "Clash", sans-serif;
    font-weight: 400;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.thank-you-section p {
    font-family: "Clash", sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
}

.home-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    font-family: 'Clash', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.home-button:hover {
    background-color: white;
    color: black;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .thank-you-section h1 {
        font-size: 2.5rem;
    }
    
    .thank-you-section p {
        font-size: 1.2rem;
    }
    
    .home-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}


.fake-link {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
  }


/* Make social links look the same whether they're actual links or not */
.social-link, .fake-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}


/* Remove default link styles */
.social-option a {
    text-decoration: none;
    color: inherit;
}

/* Ensure all social options have the same styling */
.social-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}





/* Style for the dropdown container */
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    
    font-size: 16px;
    color: #333; /* Text color */
    appearance: none; /* Remove default arrow in some browsers */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
  }
  
  /* Style for dropdown options - ALWAYS VISIBLE */
  .form-group select option {
    color: #333; /* Text color */
    background: white;
    padding: 10px 15px;
    font-size: 15px;
  }
  
  /* Focus/hover states */
  .form-group select:focus, 
  .form-group select:hover {
    border-color: #888;
    outline: none;
  }
  
  /* Disabled placeholder option */
  .form-group select option[disabled] {
    color: #999;
  }
  
  /* Dropdown arrow fix for IE */
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .form-group select {
      background-image: none;
      padding-right: 30px;
    }
  }