/* PREMIUM CORPORATE AESTHETIC CSS */
:root {
    --primary: #FFFFFF;
    --secondary: #111111;
    --accent: #F97316;
    --neutral: #F5F5F5;
    --text-dark: #222222;
    --text-gray: #666666;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
    line-height: 1.2;
}

.text-white { color: var(--primary) !important; }
.text-dark { color: var(--secondary); }
.accent-text { color: var(--accent); }
.text-dark-gray { color: var(--text-gray); }

.bg-neutral { background-color: var(--neutral); }
.bg-dark { background-color: var(--secondary); }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.padding-y { padding: 4rem 0; }
.mt-2 { margin-top: 2rem; }
.text-center { text-align: center; }

/* Typography & Titles */
.subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

/* Navbar */
.premium-nav {
    position: absolute;
    top: 0; left: 0; width: 100%;
    padding: 0.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.premium-nav.nav-scrolled {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    animation: navSlideDown 0.4s ease forwards;
    padding: 0 5%;
}
.premium-nav.solid-bg-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@keyframes navSlideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.premium-nav .logo img {
    height: 90px !important;
    width: auto;
    transition: all 0.3s ease;
}
.premium-nav.nav-scrolled .logo img {
    height: 60px !important;
}
.premium-nav .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding-left: 3rem; /* slightly move to the right */
}
.premium-nav .nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}
.premium-nav.nav-scrolled .nav-links a,
.premium-nav.solid-bg-nav .nav-links a {
    color: #111111;
}
.premium-nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0%; height: 2px;
    background: var(--accent);
    transition: var(--transition);
}
.premium-nav .nav-links a:hover {
    color: var(--accent);
}
.premium-nav .nav-links a.active {
    color: var(--accent);
}
.premium-nav .nav-links a:hover::after,
.premium-nav .nav-links a.active::after {
    width: 100%;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
    padding: 10px 0;
}
.mobile-toggle {
    display: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    min-width: 240px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
    top: 100%;
    left: 1rem;
    border: 1px solid rgba(0,0,0,0.05);
}

@media (min-width: 769px) {
    .nav-dropdown:hover .dropdown-content {
        display: block;
        animation: dropdownFadeIn 0.2s ease-out forwards;
    }
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.premium-nav .nav-links .dropdown-content a {
    color: #111111;
    padding: 12px 20px;
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    display: block;
    transition: var(--transition);
}

.premium-nav .nav-links .dropdown-content a::after {
    display: none; /* Remove hover underline effect */
}

.premium-nav .nav-links .dropdown-content a:hover {
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    padding-left: 25px; /* Slight indent effect */
}

.premium-nav .btn-magnetic {
    background: #F97316 !important;
    color: white !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    border: 2px solid #F97316 !important;
    backdrop-filter: none;
}
.premium-nav .btn-magnetic:hover {
    background: #EA580C !important;
    border-color: #EA580C !important;
}

/* Buttons */
.btn-solid-accent {
    background: var(--accent);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    border: 1px solid var(--accent);
}
.btn-solid-accent:hover {
    background: transparent;
    color: var(--accent);
}
.btn-outline-white {
    background: transparent;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.5);
    transition: var(--transition);
}
.btn-outline-white:hover {
    background: var(--primary);
    color: var(--secondary);
}
.btn-solid-dark {
    background: var(--secondary);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}
.btn-solid-dark:hover {
    background: var(--accent);
}
.btn-magnetic {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}
.btn-magnetic:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* Hero */
.hero-premium {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 0 2rem 0;
}
.hero-bg-slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.hero-bg-slider .slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.hero-bg-slider .slide.active { opacity: 1; }
.hero-overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.4) 100%);
    z-index: 2;
}
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    padding: 0 5%;
    margin: 4rem auto 0 auto;
    width: 100%;
    max-width: 1200px;
    text-align: center;
}
.hero-content-wrapper h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.hero-content-wrapper p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin-bottom: 3rem;
}
.hero-actions { display: flex; gap: 1rem; }
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}
.glass-stat {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    color: var(--primary);
}
.stat-num { font-size: 2.5rem; font-weight: 700; font-family: 'Outfit'; }
.stat-label { display: block; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); }

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 5%;
    z-index: 3;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(-90deg);
    transform-origin: left center;
}
.scroll-indicator .line {
    width: 60px; height: 1px;
    background: rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
}
.scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: 0; left: 0; height: 100%; width: 100%;
    background: var(--primary);
    animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* About Us */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.parallax-img-container {
    border-radius: 16px;
    overflow: hidden;
    height: 600px;
}
.parallax-img {
    width: 100%; height: 130%;
    object-fit: cover;
}
.split-right p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}
.vision-mission-glass {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.vm-card {
    background: var(--neutral);
    padding: 2rem;
    border-radius: 12px;
    border-left: 3px solid var(--accent);
}
.vm-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.vm-card p { font-size: 0.95rem; margin-bottom: 0; }

/* Services Grid */
.services-swiper {
    width: 100%;
    padding-bottom: 4rem !important; 
    padding-top: 2rem;
}
.services-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
}
#services .swiper-button-next,
#services .swiper-button-prev {
    color: var(--accent);
    top: 55%;
}
#services .swiper-button-next { right: 0; }
#services .swiper-button-prev { left: 0; }
.services-swiper .swiper-slide {
    transition: transform 0.5s ease;
    width: 380px;
    height: 500px;
}
.service-card-luxury {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
}
.service-card-luxury img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card-luxury:hover img {
    transform: scale(1.05);
}
.scl-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 40%);
    transition: var(--transition);
}
.service-card-luxury:hover .scl-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 40%);
}
.scl-content {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 2rem;
    color: var(--primary);
    z-index: 2;
    text-align: center;
}
.scl-icon { display: none; }
.scl-content h3 { color: #FFFFFF; font-size: 2rem; margin-bottom: 0; font-weight: 700; text-transform: capitalize; }
.services-swiper .swiper-slide .scl-content h3 { opacity: 0; transition: opacity 0.4s ease; }
.services-swiper .swiper-slide-active .scl-content h3 { opacity: 1; }
.scl-content p { display: none; }
.scl-btn { display: none; }

/* Why Choose Us */
.wcu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.wcu-card { position: relative; border-radius: 16px; overflow: hidden; height: 300px; }
.wcu-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; filter: grayscale(100%); transition: var(--transition); }
.wcu-card:hover .wcu-bg { filter: grayscale(0%); transform: scale(1.05); }
.wcu-glass { position: absolute; inset: 20px; background: rgba(17,17,17,0.75); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 2rem; display: flex; flex-direction: column; justify-content: center; color: var(--primary); transition: var(--transition); }
.wcu-card:hover .wcu-glass { background: rgba(249, 115, 22, 0.85); }
.wcu-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.wcu-glass h4 { color: var(--primary); font-size: 1.5rem; margin-bottom: 0.5rem; }
.wcu-glass p { font-size: 0.95rem; color: rgba(255,255,255,0.8); }

/* Featured Projects Masonry */
.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}
.masonry-item { position: relative; border-radius: 12px; overflow: hidden; grid-column: span 2; grid-row: span 1; }
.masonry-item.tall { grid-row: span 2; }
.masonry-item.wide { grid-column: span 4; }
.masonry-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.masonry-item:hover img { transform: scale(1.08); }
.masonry-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; padding: 2rem; }
.masonry-item:hover .masonry-overlay { opacity: 1; }
.m-content { color: var(--primary); transform: translateY(20px); transition: var(--transition); }
.masonry-item:hover .m-content { transform: translateY(0); }
.m-cat { display: inline-block; background: var(--accent); color: var(--primary); padding: 0.2rem 0.8rem; border-radius: 4px; font-size: 0.75rem; margin-bottom: 0.5rem; }
.m-content h3 { color: var(--primary); font-size: 1.8rem; margin-bottom: 0.2rem; }
.m-loc { font-size: 0.9rem; color: #ccc; display: block; margin-bottom: 1rem; }
.m-btn { color: var(--primary); text-decoration: none; border-bottom: 1px solid var(--primary); padding-bottom: 2px; font-weight: 500; }

/* Process */
.process-premium {
    background-color: var(--primary);
    color: var(--secondary);
}
.process-premium .section-header h2 {
    color: var(--secondary);
}
.vertical-timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
}
.vt-line {
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 1px;
    background: rgba(0,0,0,0.15);
    transform: translateX(-50%);
}
.vt-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5rem;
    position: relative;
}
.vt-item:last-child {
    margin-bottom: 0;
}
.vt-item:nth-child(even) {
    flex-direction: row-reverse;
}
.vt-content {
    width: 45%;
    text-align: right;
    padding: 0 2rem;
}
.vt-item:nth-child(even) .vt-content {
    text-align: left;
}
.vt-content h4 {
    color: #1c2434;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.vt-content p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}
.vt-num {
    width: 32px; height: 32px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 1rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.15);
    z-index: 2;
}
.vt-image {
    width: 45%;
    padding: 0 2rem;
}
.vt-item:nth-child(even) .vt-image {
    text-align: right;
}
.vt-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
    .vt-line { left: 24px; }
    .vt-item, .vt-item:nth-child(even) { flex-direction: column; align-items: flex-start; margin-bottom: 3rem; }
    .vt-num { left: 24px; position: absolute; top: 0; transform: translateX(-50%); }
    .vt-content, .vt-item:nth-child(even) .vt-content { width: 100%; padding: 0 0 0 60px; text-align: left; margin-bottom: 1.5rem; }
    .vt-image, .vt-item:nth-child(even) .vt-image { width: 100%; padding: 0 0 0 60px; text-align: left; }
    .vt-image img { max-width: 100%; }
}

/* Testimonials */
.testimonial-slider { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.glassmorphism {
    background: var(--primary);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    padding: 3rem;
    border-radius: 16px;
    position: relative;
}
.quote-mark { font-size: 4rem; color: var(--accent); position: absolute; top: 1rem; right: 2rem; font-family: serif; opacity: 0.3; }
.t-text { font-size: 1.15rem; font-style: italic; margin-bottom: 2rem; color: var(--text-dark); position: relative; z-index: 2; }
.t-author { display: flex; align-items: center; gap: 1rem; }
.t-author img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.t-author h5 { font-size: 1.1rem; margin-bottom: 0; }
.t-author span { font-size: 0.85rem; color: var(--text-gray); }

/* FAQ */
.accordion-item { border-bottom: 1px solid #e5e5e5; padding: 1.5rem 0; }
.accordion-header { font-size: 1.25rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.accordion-header:hover, .accordion-item.active .accordion-header { color: var(--accent); }
.accordion-content { display: none; padding-top: 1rem; color: var(--text-gray); font-size: 1rem; line-height: 1.6; }

/* CTA */
.cta-premium { position: relative; padding: 4rem 0; text-align: center; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.cta-overlay-gradient { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(249, 115, 22, 0.9) 0%, rgba(17,17,17,0.9) 100%); }
.cta-content-wrapper { position: relative; z-index: 2; }
.cta-content-wrapper h2 { color: var(--primary); font-size: 3.5rem; margin-bottom: 1rem; }
.cta-content-wrapper p { color: rgba(255,255,255,0.9); font-size: 1.25rem; margin-bottom: 2rem; }
.cta-content-wrapper .hero-actions { justify-content: center; }

/* Footer */
.footer-premium { background: #F8F5F0; color: #6B7280; padding: 3rem 0 1.5rem; border-top: 1px solid rgba(0,0,0,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2rem; margin-bottom: 2rem; }
.f-brand p { color: #6B7280; margin-top: 1rem; font-size: 0.9rem; line-height: 1.6; max-width: 280px; }
.f-links h4, .f-contact h4, .f-newsletter h4 { color: #1F2937 !important; margin-bottom: 1rem; font-size: 1.1rem !important; font-weight: 700; }
.f-links ul { list-style: none; }
.f-links ul li { margin-bottom: 0.8rem; }
.f-links a { color: #E66A00; text-decoration: none; transition: var(--transition); font-size: 0.9rem; }
.f-links a:hover { color: #FF7A00; padding-left: 5px; text-decoration: underline; }
.f-contact p { color: #6B7280; margin-bottom: 0.5rem; font-size: 0.9rem; }
.f-newsletter p { font-size: 0.9rem !important; line-height: 1.6; margin-bottom: 0.5rem; color: #6B7280; }
.f-contact-info { font-size: 0.9rem !important; color: #6B7280 !important; }
.footer-bottom { border-top: 1px solid rgba(0,0,0,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; color: #6B7280; font-size: 0.85rem; }
.social-links a { color: #1F2937; margin-left: 1rem; text-decoration: none; transition: var(--transition); }
.social-links a:hover { color: #FF7A00; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-content-wrapper h1 { font-size: 3rem; }
    .services-grid-large { grid-template-columns: repeat(2, 1fr); }
    .wcu-grid { grid-template-columns: 1fr; }
    .masonry-gallery { grid-template-columns: repeat(2, 1fr); }
    .masonry-item.wide { grid-column: span 2; }
    .split-layout { grid-template-columns: 1fr; }
    .process-timeline { flex-wrap: wrap; gap: 2rem; }
    .process-line { display: none; }
    .process-step { min-width: 45%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-premium { min-height: 100vh !important; }
    .hero-content-wrapper { margin-top: 10rem; max-width: 100vw; overflow-x: hidden; padding-bottom: 2rem; }
    .hero-content-wrapper h1 { font-size: 2rem; }
    .hero-stats { 
        flex-wrap: nowrap; 
        width: max-content;
        margin-top: 2rem;
        animation: marqueeMobile 15s linear infinite;
    }
    .glass-stat { flex: 0 0 160px; }
    @keyframes marqueeMobile {
        0% { margin-left: 100vw; }
        100% { margin-left: -1000px; }
    }
    .services-grid-large { grid-template-columns: 1fr; }
    .masonry-gallery { grid-template-columns: 1fr; }
    .masonry-item { grid-column: span 1; }
    .masonry-item.wide { grid-column: span 1; }
    .testimonial-slider { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .premium-nav { 
        position: fixed !important;
        top: 0; left: 0; width: 100%;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
        padding: 10px 5% !important;
        flex-direction: row; 
        justify-content: space-between; 
        animation: none !important;
        z-index: 1000;
    }
    .premium-nav .logo img {
        height: 60px !important;
    }
    .premium-nav .btn-magnetic { display: none; }
    .hamburger { display: flex; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
    .hamburger span { display: block; width: 30px; height: 3px; background-color: #111111; transition: 0.3s; }
    .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    .premium-nav .nav-links { 
        display: flex; flex-direction: column; 
        position: fixed; top: 0; left: 0; width: 80%; max-width: 320px;
        height: 100vh;
        overflow-y: auto;
        padding-bottom: 6rem;
        background-color: var(--primary); 
        padding-top: 2rem;
        gap: 0; text-align: left;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
        z-index: 1000;
        pointer-events: none;
        box-shadow: 100vw 0 0 100vw rgba(0,0,0,0);
    }
    .premium-nav .nav-links::before {
        content: "";
        display: block;
        width: auto;
        height: 60px;
        background-image: url('media/WAM LOGO-02.png');
        background-size: contain;
        background-position: left center;
        background-repeat: no-repeat;
        margin: 1rem 2rem 2rem 2rem;
    }
    .premium-nav .nav-links.active {
        transform: translateX(0);
        pointer-events: all;
        box-shadow: 100vw 0 0 100vw rgba(0,0,0,0.6);
    }
    .premium-nav .nav-links > a, .nav-dropdown {
        font-size: 1.2rem;
        margin: 0;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        width: 100%;
        display: block;
        text-align: left;
    }
    .premium-nav .nav-links > a {
        padding: 1.2rem 2rem;
        color: #111111;
    }
    .nav-dropdown {
        position: relative;
        padding: 0;
    }
    .premium-nav .nav-links .nav-dropdown > a {
        display: block;
        padding: 1.2rem 2rem;
        text-align: left;
        font-size: 1.2rem;
        margin: 0;
        color: #111111;
    }
    .premium-nav.solid-bg-nav ~ div:first-of-type {
        padding-top: 100px;
    }
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        top: 0;
        width: 4.5rem;
        height: 3.8rem;
        font-weight: normal;
        font-size: 1rem;
        cursor: pointer;
        color: #111111;
        border-left: none; /* Removed the center line */
    }
    .mobile-toggle:hover {
        color: #F97316;
    }
    .nav-dropdown .dropdown-content {
        position: static;
        background: rgba(0,0,0,0.02);
        box-shadow: none;
        border: none;
        display: none;
        margin-top: 0;
        padding-left: 0;
    }
    .nav-dropdown.open .dropdown-content {
        display: block !important;
        animation: none;
    }
    .premium-nav .nav-links .dropdown-content a {
        padding: 1rem 2rem 1rem 3rem;
        font-size: 1.1rem;
        display: block;
        white-space: normal;
        line-height: 1.4;
        max-width: none;
        margin: 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .premium-nav .nav-links .dropdown-content a:last-child {
        border-bottom: none;
    }
}

/* Specific override for pages that require dark text on the initial transparent navbar */
.premium-nav.nav-dark-text .nav-links a {
    color: #111111;
}

/* Specific override for pages that require dark text on the initial transparent navbar */
.premium-nav.nav-dark-text .nav-links a {
    color: #111111;
}

/* Clients Logo Grid */
.clients-logo-grid {
    width: 100%;
}
.client-logo {
    background: transparent;
    padding: 1.5rem;
    border-radius: 12px;
    width: 100%;
    max-width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.client-logo:hover {
    transform: translateY(-5px);
}
.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}
.client-logo:hover img {
    transform: scale(1.05);
}
. f - c o n t a c t - i n f o   a ,   a [ h r e f ^ = " t e l " ]   {   c o l o r :   i n h e r i t   ! i m p o r t a n t ;   t e x t - d e c o r a t i o n :   n o n e   ! i m p o r t a n t ;   } 
 
 

/* Brochure Modal Styles */
.brochure-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
}

.brochure-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.brochure-modal {
    background: #F97316;
    border: none;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.4);
}

.brochure-modal-overlay.active .brochure-modal {
    transform: translateY(0);
}

.brochure-modal h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
}

.brochure-modal p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 20px;
}

.brochure-modal input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    color: #111111;
    font-size: 16px;
    box-sizing: border-box;
}

.brochure-modal input:focus {
    outline: 2px solid #111111;
}

.brochure-modal button[type="submit"] {
    background: #111111 !important;
    color: #ffffff !important;
    border: none !important;
}

.brochure-modal button[type="submit"]:hover {
    background: #333333 !important;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
}

.close-modal:hover {
    opacity: 1;
}

/* Mobile Brochure Button in Nav */
.mobile-brochure-btn {
    display: none !important;
}

@media (max-width: 992px) {
    .premium-nav .nav-links > a.mobile-brochure-btn {
        display: block !important;
        background-color: #F97316 !important;
        color: #ffffff !important;
        font-weight: 800 !important;
        text-align: center !important;
        border-radius: 8px !important;
        margin: 15px 40px 15px 20px !important; /* Larger right margin to push it left, away from right border */
        padding: 12px !important; /* Equal padding for length and breadth balance */
        font-size: 0.95rem !important;
        box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3) !important;
    }
}
