@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary: #1C4D26; /* Premium Hunter Green */
    --primary-dark: #0F3316; /* Sophisticated Dark Forest Green */
    --primary-light: #2E6B3C; /* Elegant Sage Green */
    --accent: #D4AF37; /* Rich Metallic Champagne Gold */
    --secondary: #111E38; /* Executive Deep Navy Blue */
    --secondary-dark: #0A1224; /* Expensive Dark Matte Blue */
    --text-main: #1C222E; /* Luxury Slate Charcoal */
    --text-muted: #58657B; /* Muted Charcoal */
    --text-light: #8E9BB0; /* Soft Silver Slate */
    --bg-light: #F6F8FC; /* Pristine Soft Light Background */
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1); /* Liquid Smooth Transition */
    --shadow-sm: 0 2px 10px rgba(10, 18, 36, 0.04);
    --shadow-md: 0 10px 30px rgba(10, 18, 36, 0.06);
    --shadow-lg: 0 20px 50px rgba(10, 18, 36, 0.12);
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, .btn {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* Typography Helpers */
.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Header */
header {
    height: var(--header-height);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-main);
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: inline-block;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: var(--primary);
    color: white !important;
}

nav ul li a::after {
    display: none !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: var(--primary);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(28, 77, 38, 0.2);
    transition: all 0.3s ease;
}

.hide-mobile {
    display: inline-flex;
}

/* Floating Buttons Modernization */
.floating-btn {
    position: fixed;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.floating-whatsapp {
    right: 25px;
    background: #25D366;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    animation: floating-pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
    background: #20ba5a;
}

.floating-call {
    left: 25px;
    background: var(--primary);
    box-shadow: 0 8px 24px rgba(28, 77, 38, 0.35);
    animation: floating-pulse-call 2s infinite;
}

.floating-call:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 12px 28px rgba(28, 77, 38, 0.5);
    background: #153a1d;
}

@keyframes floating-pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes floating-pulse-call {
    0% {
        box-shadow: 0 0 0 0 rgba(28, 77, 38, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(28, 77, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(28, 77, 38, 0);
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
    margin-top: var(--header-height);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.06); /* Elegant initial scale */
    transition: opacity 1.4s ease-in-out, transform 10s cubic-bezier(0.16, 1, 0.3, 1);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    transform: scale(1); /* Slow zoom-out cinematic effect */
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 18, 36, 0.55) 0%, rgba(10, 18, 36, 0.25) 50%, rgba(10, 18, 36, 0.05) 100%);
}

.slide .container {
    position: relative;
    z-index: 10;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    min-width: 260px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1002;
    border-top: 4px solid var(--primary);
}

nav ul li:hover .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    min-width: 260px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1002;
    border-top: 4px solid var(--primary);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 12px 25px;
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background-color: rgba(46, 125, 50, 0.05);
    color: var(--primary);
    padding-left: 30px;
}

/* Hero */
.hero {
    height: 700px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    padding-top: var(--header-height);
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    animation: fadeInUp 1.5s ease-out forwards;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #F0F0F0;
    animation: fadeInUp 1.5s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-btns {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1.5s ease-out 0.4s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary);
    font-size: 30px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Curtain Types */
.curtain-types {
    background-color: var(--bg-light);
}

.type-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.type-row:nth-child(even) {
    flex-direction: row-reverse;
}

.type-img {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.type-img img {
    width: 100%;
    transition: 0.5s ease;
}

.type-row:hover .type-img img {
    transform: scale(1.05);
}

.type-text {
    flex: 1;
}

.type-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
}

.type-text p {
    margin-bottom: 30px;
    color: var(--text-muted);
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 40px;
    font-weight: 800;
    color: rgba(46, 125, 50, 0.2);
    line-height: 1;
}

.benefit-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.benefit-content p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .project-overlay h4 {
        font-size: 11px;
        padding: 8px 12px;
        border-width: 1px;
    }
}

.project-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: 0 8px 25px rgba(10, 18, 36, 0.05);
    border: 1px solid rgba(10, 18, 36, 0.03);
    cursor: pointer;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* Absolutely no blackening or darkening of the image on hover! */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
    z-index: 2;
}

.project-item:hover img {
    transform: scale(1.08); /* Modern, slight premium scale zoom */
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-overlay h4 {
    color: #ffffff;
    background: rgba(10, 18, 36, 0.85); /* Premium translucent slate */
    border: 1px solid rgba(212, 175, 55, 0.4); /* Luxury gold border badge */
    padding: 12px 24px;
    border-radius: 30px; /* Sophisticated rounded pill capsule */
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(15px); /* Soft vertical entry */
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.project-item:hover .project-overlay h4 {
    transform: translateY(0);
}

/* Scroll reveal from right-to-left */
.reveal-right {
    opacity: 0 !important;
    transform: translateX(45px) !important;
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.reveal-right.reveal-active {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Testimonials */
.testimonials {
    background-color: var(--bg-white);
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: var(--shadow-sm);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    width: 350px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

/* New avatar image styling for testimonials */
.client-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    flex-shrink: 0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

/* Service Page Specifics */
.service-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-item-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-item-img {
    height: 250px;
    overflow: hidden;
}

.service-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.service-item-card:hover .service-item-img img {
    transform: scale(1.1);
}

.service-item-content {
    padding: 25px;
    text-align: center;
}

.service-item-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-item-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

/* Satisfaction Section */
.satisfaction-section {
    background-color: var(--secondary);
    color: white;
    padding: 80px 0;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item-box {
    padding: 20px;
}

.stat-item-box i {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 20px;
}

.stat-item-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.stat-item-box p {
    font-size: 14px;
    opacity: 0.8;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    background: var(--bg-light);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background: #F0F0F0;
}

.faq-answer {
    background: white;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 300px;
}

.faq-item.active .faq-question {
    color: var(--primary);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    color: #999;
    margin-bottom: 20px;
}

.footer-links h4 {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #999;
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #999;
}

.footer-contact i {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1 {
        font-size: 42px !important;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
    .mobile-menu-btn {
        display: flex !important;
    }
    nav {
        display: block;
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 80%;
        height: calc(100vh - var(--header-height));
        background: var(--bg-white);
        box-shadow: 4px 0 12px rgba(0,0,0,0.1);
        transition: var(--transition);
        z-index: 999;
        visibility: hidden;
    }
    nav.active {
        left: 0;
        visibility: visible;
    }
    nav ul {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }
    .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    min-width: 260px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1002;
    border-top: 4px solid var(--primary);
}
    nav ul li:hover .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    min-width: 260px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1002;
    border-top: 4px solid var(--primary);
}
    .services-grid, .benefits-grid, .projects-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .type-row, .type-row:nth-child(even) {
        flex-direction: column;
    }
    .hero {
        height: 500px;
    }
    .hero h1 {
        font-size: 32px;
    }
}

/* Hero Slider Content Sizing & Responsiveness */
.slide h1 {
    font-size: 56px !important;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.slide p {
    font-size: 22px !important;
    font-weight: 300;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

@media (max-width: 1024px) {
    .slide h1 {
        font-size: 42px !important;
    }
    .slide p {
        font-size: 18px !important;
        margin-bottom: 30px !important;
    }
}

@media (max-width: 768px) {
    .logo-text { font-size: 20px !important; }
    .dropdown-menu { display: none; position: static; box-shadow: none; border-top: none; padding-left: 15px; transform: none; visibility: visible; opacity: 1; }
    nav ul li:hover .dropdown-menu { display: block; }
    .hero { height: 600px !important; }
    .hero-slider { height: 600px !important; }
    .slide h1 {
        font-size: 28px !important;
        letter-spacing: 1px !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
    }
    .slide p {
        font-size: 15px !important;
        margin-bottom: 25px !important;
        line-height: 1.5 !important;
    }
    .slide .container {
        padding: 0 15px !important;
    }
}

@media (max-width: 480px) {
    .slide h1 {
        font-size: 22px !important;
        letter-spacing: 0.5px !important;
    }
    .slide p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }
}

/* Premium Scroll Reveal Animation System */
.reveal-up {
    opacity: 0 !important;
    transform: translateY(40px) !important;
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.reveal-up.reveal-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.reveal-down {
    opacity: 0 !important;
    transform: translateY(-40px) !important;
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.reveal-down.reveal-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.reveal-left {
    opacity: 0 !important;
    transform: translateX(-40px) !important;
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.reveal-left.reveal-active {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.reveal-scale {
    opacity: 0 !important;
    transform: scale(0.94) !important;
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.reveal-scale.reveal-active {
    opacity: 1 !important;
    transform: scale(1) !important;
}

/* Home Page: Service Cards (type-row) Staggered Reveals */
.type-row {
    /* Removed wrapper transform so children can animate from different directions */
}
.type-row.reveal-active {
}

/* Text from left */
.type-row .type-text h3,
.type-row .type-text p {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.type-row.reveal-active .type-text h3,
.type-row.reveal-active .type-text p {
    opacity: 1;
    transform: translateX(0);
}

/* Pics fade in */
.type-row .type-img img {
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.type-row.reveal-active .type-img img {
    opacity: 1;
}

/* Button from right */
.type-row .type-text .btn {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.3s;
}
.type-row.reveal-active .type-text .btn {
    opacity: 1;
    transform: translateX(0);
}

/* About Page: Mission/Vision/Values Staggered slide up */
.mission-card {
    opacity: 0;
    transform: translateY(50px);
    border-top: 4px solid var(--accent) !important;
    box-shadow: 0 10px 30px rgba(10, 18, 36, 0.04) !important;
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
}
.mission-card.reveal-active {
    opacity: 1;
    transform: translateY(0);
}
.mission-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-lg) !important;
    border-top-color: var(--primary) !important;
}

/* Feature Cards (Why Choose Us) Luxury Styles */
.feature-card-new {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 45px 35px !important;
    text-align: center !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: 1px solid rgba(10, 18, 36, 0.05) !important;
    box-shadow: 0 5px 25px rgba(10, 18, 36, 0.02) !important;
}
.feature-card-new.reveal-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.feature-card-new:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-lg) !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
}
.feature-card-new i {
    font-size: 36px !important;
    color: var(--accent) !important;
    background: rgba(212, 175, 55, 0.08) !important;
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 25px !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.feature-card-new:hover i {
    transform: scale(1.1) rotate(5deg) !important;
    background: var(--accent) !important;
    color: white !important;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3) !important;
}

/* Premium Button Enhancements */
.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid transparent;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
    z-index: -1;
}
.btn-primary:hover::before {
    transform: translateX(100%);
}
.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(28, 77, 38, 0.4) !important;
}

/* Statistics Icons Glow */
.stat-icon-wrapper i {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-item:hover .stat-icon-wrapper {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}
.stat-item:hover .stat-icon-wrapper i {
    color: white !important;
    transform: scale(1.1) rotate(-5deg);
}

/* Luxury Service Grid & Cards */
.luxury-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .luxury-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .luxury-service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .luxury-card-img-wrapper {
        height: 160px;
    }
    .luxury-card-body {
        padding: 15px;
    }
    .luxury-card-body h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .luxury-card-body p {
        font-size: 12px;
        line-height: 1.4;
    }
    .luxury-card-footer {
        padding: 12px;
    }
    .luxury-card-footer .order-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}

.luxury-service-card {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: #1a1d20; /* Luxury Dark charcoal theme */
    border: 1px solid rgba(255,255,255,0.05);
}

.luxury-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(28, 77, 38, 0.15); /* Subtle brand color glow */
}

.luxury-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.luxury-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-service-card:hover .luxury-card-img-wrapper img {
    transform: scale(1.06);
}

.luxury-card-body {
    background-color: #22252a; /* Matching reference image's dark charcoal background */
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.luxury-card-body h3 {
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.luxury-card-body p {
    color: #cbd5e1; /* Matte grey for great contrast */
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

.luxury-card-footer {
    background-color: #0b0c0e; /* Matte black bottom block as in reference */
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.luxury-card-footer .order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #ffffff;
    color: #111e38 !important;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-transform: capitalize;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 220px;
    text-decoration: none;
}

.luxury-card-footer .order-btn:hover {
    background-color: var(--accent); /* Elegant gold transition */
    color: #111e38 !important;
    transform: scale(1.03);
}

/* FAQ Accordion Styling */
.faq-section {
    background-color: var(--bg-white);
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-light);
    border: 1px solid rgba(10, 18, 36, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(10, 18, 36, 0.05);
    background: #ffffff;
}

.faq-question {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background: transparent;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 650;
    color: var(--secondary);
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--primary);
}

.faq-icon {
    font-size: 16px;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
    padding: 0 30px 25px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Luxury Mega Dropdown */
.mega-menu-item {
    position: relative;
    list-style: none;
}

.mega-menu-btn {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    padding: 10px 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    background: transparent;
    text-decoration: none;
}

.mega-menu-btn:hover,
.mega-menu-item:hover .mega-menu-btn {
    border-color: var(--accent);
    background-color: var(--secondary);
    color: white !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translateX(50%) translateY(20px);
    width: 600px;
    background-color: #0b0c0e; /* Luxury matte black */
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.55);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1005;
    margin-top: 15px;
}

.mega-menu-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(50%) translateY(0);
}

.mega-dropdown-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mega-column h4 {
    font-size: 15px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.mega-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mega-column ul li {
    width: 100%;
}

.mega-column ul li a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mega-column ul li a::after {
    display: none !important;
}

.mega-column ul li a i {
    color: var(--accent);
    font-size: 13px;
    width: 18px;
    text-align: center;
}

.mega-column ul li a:hover {
    color: var(--accent) !important;
    padding-left: 8px;
    background: transparent !important;
}

/* Directory Page Styles */
.luxury-directory-section {
    background: #0b0c0e; /* Luxury dark */
    color: white;
    padding: 80px 0;
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .directory-grid {
        grid-template-columns: 1fr;
    }
    .mega-dropdown {
        display: none !important; /* Hide custom desktop mega menu on mobile */
    }
}

.directory-column h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 12px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.directory-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.directory-item {
    background: #16181d;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.directory-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    width: 100%;
    color: white;
    text-decoration: none;
}

.directory-item-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.directory-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.directory-details h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
    transition: all 0.3s ease;
}

.directory-details p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

.directory-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    transition: all 0.3s ease;
}

.directory-item:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.4);
    background: #1c1e24;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.directory-item:hover .directory-details h4 {
    color: var(--accent);
}

.directory-item:hover .directory-icon {
    background: var(--accent);
    color: #0b0c0e;
    transform: scale(1.05);
}

.directory-item:hover .directory-arrow {
    color: var(--accent);
    transform: translateX(5px);
}

/* Responsive Navigation Visibility */
.desktop-only-nav {
    display: flex !important;
}
.mobile-only-nav {
    display: none !important;
}

/* Services Dropdown (Desktop) */
.dropdown-item-services {
    position: relative;
}

.dropdown-menu-new {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: #0F3316; /* Deep Forest Green */
    min-width: 260px;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1002;
    border: 1px solid rgba(255,255,255,0.06);
    margin-top: 10px;
    list-style: none;
}

.dropdown-item-services:hover .dropdown-menu-new {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu-new li {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
}

.dropdown-menu-new li a {
    padding: 8px 16px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff !important; /* White text */
    background: transparent !important;
    border-radius: 6px !important;
    width: 100% !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.dropdown-menu-new li a i {
    color: #D4AF37 !important; /* Gold icons */
    font-size: 13px;
    width: 16px;
    text-align: center;
}

.dropdown-menu-new li a:hover {
    background-color: #1C4D26 !important; /* Solid Premium Green Hover */
    color: #ffffff !important;
    padding-left: 20px !important;
}

/* Statistics Grid Mobile Fix */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Premium White Mobile Menu Drawer */
@media (max-width: 768px) {
    .desktop-only-nav {
        display: none !important;
    }
    
    header nav {
        background-color: #ffffff !important; /* Pure white background */
        border-left: 1px solid #e2e8f0 !important;
        box-shadow: -10px 0 30px rgba(0,0,0,0.05) !important;
    }
    
    .mobile-only-nav {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        overflow-y: auto;
        max-height: calc(100vh - 80px);
        padding: 30px 24px !important;
        gap: 15px !important;
        list-style: none;
    }
    
    .mobile-only-nav li {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 12px;
        list-style: none;
    }
    
    .mobile-only-nav li:last-child {
        border-bottom: none;
    }
    
    .mobile-only-nav li a {
        color: var(--text-main) !important;
        font-size: 16px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 6px 12px;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .mobile-only-nav li a i {
        color: var(--primary) !important;
        font-size: 15px;
        width: 20px;
    }
    
    /* Green Button Active style for normal items */
    .mobile-only-nav li a:hover,
    .mobile-only-nav li a.active {
        background-color: var(--primary) !important;
        color: #ffffff !important;
    }
    .mobile-only-nav li a:hover i,
    .mobile-only-nav li a.active i {
        color: #ffffff !important;
    }

    /* Mobile Services Dropdown Item */
    .mobile-dropdown-item {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 12px;
    }
    
    .mobile-services-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background-color: var(--primary); /* Green background button */
        border-radius: 8px;
        padding: 4px;
    }
    
    .mobile-only-nav li .mobile-services-toggle a,
    .mobile-services-toggle a {
        color: #ffffff !important;
        font-weight: 600;
        flex-grow: 1;
        background: transparent !important;
        padding: 8px 12px !important;
    }
    
    .mobile-only-nav li .mobile-services-toggle a i,
    .mobile-services-toggle a i {
        color: #ffffff !important;
    }
    
    .mobile-services-expand-btn {
        background: transparent !important;
        border: none !important;
        color: #ffffff !important; /* White dropdown icon */
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 16px;
        transition: transform 0.3s ease;
        outline: none !important;
    }
    
    .mobile-services-expand-btn i {
        color: #ffffff !important;
    }
    
    .mobile-services-expand-btn.active {
        transform: rotate(180deg);
    }
    
    .mobile-services-submenu {
        display: none;
        flex-direction: column;
        gap: 8px;
        padding: 12px;
        margin-top: 10px;
        list-style: none;
        background-color: #0F3316; /* Deep Forest Green */
        border-radius: 8px;
    }
    
    .mobile-services-submenu.active {
        display: flex;
    }
    
    .mobile-services-submenu li {
        border-bottom: none;
        padding-bottom: 0;
        display: flex;
        justify-content: flex-start;
    }
    
    .mobile-services-submenu li a {
        font-size: 14px;
        font-weight: 500;
        padding: 6px 10px;
        color: #ffffff !important; /* White text */
        background-color: transparent;
        border-radius: 4px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }
    
    .mobile-services-submenu li a i {
        font-size: 12px;
        color: #D4AF37 !important; /* Gold icons */
    }

    .mobile-services-submenu li a:hover {
        background-color: var(--primary) !important; /* Green hover effect */
        color: #ffffff !important;
    }
}


