@import url('booking-popup.css');

:root {
    --primary-gold: #D4AF37;
    --light-gold: #F9E29C;
    --dark-gold: #996515;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --text-dark: #222222;
    --text-muted: #666666;
    --white: #ffffff;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F9E29C 50%, #996515 100%);
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background: #1c1917;
    color: var(--white);
    padding:  0; /* Reduced padding */
    font-size: 10px; /* Smaller font */
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
}

.top-announcement {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header & Navigation */
header {
    background: #ffffff;
    padding: px 0; /* Reduced padding for slim header */
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-img {
    height: 65px; /* Reduced logo size for slim header */
    width: 200px;
    transition: transform 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-links li {
    margin: 0 10px;
    position: relative; /* For dropdown positioning */
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 12px; /* Smaller font */
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a i {
    font-size: 9px;
    transition: transform 0.3s;
}

.nav-links li:hover a i {
    transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 280px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    list-style: none;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-gold);
    z-index: 1001;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
}

.dropdown-menu li a {
    padding: 10px 25px;
    font-size: 11px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: all 0.2s;
}

.dropdown-menu li a:hover {
    background: rgba(212, 175, 55, 0.05);
    color: var(--primary-gold);
    padding-left: 30px;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-header {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
    padding: 8px 20px;
    font-size: 11px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
    filter: brightness(1.05);
}

/* Hero Slider Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 700px;
    overflow: visible; /* Allow stats bar to float outside */
    background-color: #f8f9fa;
}

.hero-slider {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 5; /* Lower than controls */
}

.slider-controls {
    z-index: 60; /* Higher than slider */
}

.slider-dots {
    z-index: 60;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f0f0f0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
    z-index: -1;
}

.hero-content {
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
    margin-top: -50px; /* Offset for better visual center */
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    animation: fadeInDown 1s ease-out;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

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

/* Hero Button Styles */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero-primary {
    background: #8B4513;
    color: var(--white);
    padding: 16px 35px;
    border-radius: 50px; /* Rounder for premium feel */
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-hero-primary:hover {
    background: #6F370F;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.35);
}

.btn-hero-primary i, .btn-hero-outline i {
    transition: transform 0.3s;
}

.btn-hero-primary:hover i, .btn-hero-outline:hover i {
    transform: translateX(3px);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.4s;
}

.btn-hero-outline:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Floating Stats Bar */
.hero-stats-bar {
    position: absolute;
    bottom: -60px; /* Push it down more */
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    display: flex; /* Flex is better for centering */
    justify-content: space-around;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    z-index: 100;
    width: 85%;
    max-width: 1100px;
}

.hero-stat-item {
    flex: 1;
    text-align: center;
    border-right: 1px solid #f0f0f0;
    padding: 0 15px;
}

.hero-stat-item:last-child {
    border-right: none;
}

.hero-stat-num {
    display: block;
    font-size: 38px; /* Slightly larger */
    font-weight: 800;
    color: var(--primary-gold); /* Use gold for the numbers */
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.hero-stat-text {
    display: block;
    font-size: 12px;
    color: var(--text-dark);
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Floating Action Buttons */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #8B4513;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Adjustments for About Section spacing */
.about {
    padding-top: 150px; /* Space for the floating stats bar */
    padding-bottom: 100px;
}

/* Slider Controls Refinement */
.slider-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--text-dark);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 50;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.slider-controls button:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.prev-slide { left: 20px; }
.next-slide { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-gold);
    width: 30px;
    border-radius: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    margin: 5px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--white);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 120px 0;
    background-color: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.1);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 25px;
    transition: all 0.4s;
}

.why-card:hover .why-icon {
    background: var(--gold-gradient);
    color: var(--white);
    transform: rotateY(360deg);
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.why-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 0;
    background-color: var(--white);
    position: relative;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(212, 175, 55, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

.stars {
    color: var(--primary-gold);
    margin-bottom: 25px;
    font-size: 18px;
}

.testimonial-card p {
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 30px;
}

.client-info strong {
    display: block;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.client-info span {
    font-size: 12px;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Working Process Section */
.working-process {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 60px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 85px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(to right, #e0e0e0 0, #e0e0e0 10px, transparent 10px, transparent 20px);
    z-index: 0;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-img-wrapper {
    width: 170px;
    height: 170px;
    margin: 0 auto 30px;
    position: relative;
    border-radius: 50%;
    padding: 8px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.step-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #f0f0f0;
}

.step-num-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 35px;
    height: 35px;
    background: var(--gold-gradient);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.timeline-step h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding: 0 10px;
}

.process-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-process {
    background: var(--gold-gradient);
    color: #000;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.btn-process:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    filter: brightness(1.1);
}

/* Services Section */
.services {
    padding: 120px 0;
    background-color: #ffffff;
    position: relative;
    background-image: radial-gradient(var(--primary-gold) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    background-opacity: 0.03;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.service-info p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 15px;
}

.service-link i {
    font-size: 12px;
}

/* About Section Redesign */
.about {
    padding: 120px 0;
    background-color: var(--bg-white);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
    position: relative;
}

.image-wrapper {
    position: relative;
    padding: 20px;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 10px solid var(--primary-gold);
    z-index: 0;
    border-radius: 20px;
}

.main-about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gold-gradient);
    padding: 25px;
    border-radius: 20px;
    color: var(--white);
    text-align: center;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.exp-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-text {
    flex: 1.2;
}

.sub-title {
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

.about-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 20px;
}

.feature-item span {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.about-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 20px;
    text-align: center;
}

.stat-item {
    flex: 1;
}

.stat-item h3 {
    font-size: 32px;
    color: var(--primary-gold);
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.stat-item p {
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.3s;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question h3 {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-gold);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    background: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.answer-content {
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 150px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/bannerr.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Fixed background parallax */
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

/* Ensure fixed background works on all modern browsers */
@supports (-webkit-overflow-scrolling: touch) {
    .cta-section {
        background-attachment: scroll; /* Fallback for iOS which has issues with fixed attachment */
    }
}

.cta-content h2 {
    font-size: 54px; /* Larger font */
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5); /* Added for better readability on lighter bg */
}

.cta-content p {
    font-size: 22px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.cta-btns .btn-hero-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btns .btn-hero-outline:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* Brands Section */
.brands-section {
    padding: 60px 0;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.brands-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.5s;
}

.brands-grid:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.brand-item {
    font-size: 24px;
    font-weight: 800;
    color: #333;
    font-family: 'Playfair Display', serif;
}

/* Premium Transformation Gallery */
.transformation-gallery {
    padding: 80px 0;
    background-color: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns like ref */
    gap: 15px;
    padding: 0 15px;
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 4px; /* Slight round like ref */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
    text-align: center;
    color: var(--white);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--primary-gold);
    font-weight: 700;
}

.gallery-overlay h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container-fluid {
    width: 100%;
    padding: 0 30px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-luxury {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.05);
}

.info-card:hover {
    transform: translateX(10px);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
}

.info-details h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-details p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 5px solid var(--white);
}

.contact-form-luxury {
    background: var(--white);
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.03);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

/* Custom Arrow for Select */
.form-group:has(select)::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    pointer-events: none;
    font-size: 12px;
}

.contact-form-luxury input,
.contact-form-luxury select,
.contact-form-luxury textarea {
    width: 100%;
    padding: 18px 25px;
    background: #fcfcfc;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s;
    font-family: inherit;
    appearance: none; /* Remove default arrow */
}

.contact-form-luxury input:focus,
.contact-form-luxury select:focus,
.contact-form-luxury textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: #fff;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.05);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
}

.btn-submit i {
    font-size: 14px;
    transition: transform 0.3s;
}

.btn-submit:hover i {
    transform: translate(5px, -5px);
}

/* Footer Redesign (Reference: Annapurna) */
footer {
    padding: 80px 0 0;
    background-color: #0c0c0c; /* Deep black-gray */
    color: #cccccc;
    border-top: 3px solid var(--primary-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo-img {
    height: 55px;
    width: auto;
    margin-bottom: 5px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 0;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
    font-size: 15px;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

.footer-social a i {
    text-decoration: none !important;
    border: none !important;
}

.footer-social a:hover {
    background: var(--primary-gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--primary-gold);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-links a i {
    font-size: 10px;
    color: var(--primary-gold);
    }

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

.footer-contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-contact-info i {
    color: var(--primary-gold);
    font-size: 16px;
    width: 20px;
    text-align: center;
    margin-top: 4px;
}

.footer-contact-info p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-contact-info strong {
    color: var(--white);
    display: block;
    margin-bottom: 3px;
}

.footer-bottom {
    background: #050505;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 13px;
    color: #888;
    letter-spacing: 0.5px;
}

/* Container Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 10px;
}

/* Responsive Update */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    footer {
        padding-top: 50px;
    }
}

/* Service Page Enhancements */
.page-hero {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.breadcrumb a {
    color: var(--light-gold);
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb a:hover {
    color: white;
}

.page-hero h1 {
    font-size: 72px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    text-shadow: 0 6px 30px rgba(0,0,0,0.4);
    font-weight: 800;
    line-height: 1.1;
}

.page-hero p {
    font-size: 20px;
    max-width: 750px;
    margin: 0 auto;
    opacity: 0.95;
    font-weight: 400;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 8px;
}

.scroll-indicator span {
    display: block;
    width: 4px;
    height: 10px;
    background: var(--light-gold);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(15px); }
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stats-section .stat-item {
    text-align: center;
    color: white;
}

.stats-section .stat-number {
    font-size: 60px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}

.stats-section .stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.95;
}

.service-overview {
    padding: 140px 0;
    position: relative;
}

.service-overview::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212,175,55,0.03) 0%, transparent 100%);
    z-index: 0;
}

.overview-flex {
    display: flex;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.overview-image {
    flex: 1;
    position: relative;
}

.overview-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
    transition: transform 0.5s ease;
}

.overview-image:hover img {
    transform: scale(1.03);
}

.overview-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gold-gradient);
    color: #000;
    padding: 35px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(212,175,55,0.45);
    font-weight: 700;
}

.overview-badge h4 {
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
    font-weight: 800;
}

.overview-badge span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.overview-content {
    flex: 1;
}

.overview-content h2 {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    line-height: 1.15;
    font-weight: 800;
}

.overview-content p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 20px;
}

.overview-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 40px;
}

.overview-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.overview-feature i {
    color: var(--primary-gold);
    font-size: 22px;
}

.overview-feature span {
    font-weight: 700;
    font-size: 15px;
}

.benefits-section {
    padding: 140px 0;
    background: linear-gradient(to bottom, var(--bg-light), #fefefe);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 70px;
}

.benefit-card {
    background: white;
    padding: 55px 40px;
    border-radius: 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-18px);
    border-color: rgba(212,175,55,0.2);
    box-shadow: 0 30px 70px rgba(212,175,55,0.15);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: var(--primary-gold);
    transition: all 0.4s;
}

.benefit-card:hover .benefit-icon {
    background: var(--gold-gradient);
    color: white;
    transform: rotateY(360deg) scale(1.1);
}

.benefit-card h3 {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 18px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

.process-section {
    padding: 140px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 45px;
    margin-top: 70px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--light-gold) 0, var(--light-gold) 6px, transparent 6px, transparent 12px);
    opacity: 0.3;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 90px;
    height: 90px;
    background: var(--gold-gradient);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    box-shadow: 0 15px 40px rgba(212,175,55,0.3);
    transition: all 0.4s;
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(10deg);
}

.process-step h3 {
    font-size: 22px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 18px;
    font-weight: 700;
}

.process-step p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        gap: 15px;
    }
    .nav-links li {
        margin: 0 8px;
    }
    
    .overview-flex {
        flex-direction: column;
        gap: 60px;
    }
    
    .process-step::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .page-hero h1 {
        font-size: 48px;
    }
    
    .overview-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-announcement {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .nav-wrapper {
        padding: 0 10px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 30px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .btn-header {
        display: none; /* Hide button on mobile to save space */
    }

    .menu-toggle {
        display: block;
        font-size: 24px;
        color: var(--primary-gold);
        cursor: pointer;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .about-flex, .contact-wrapper {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    /* Process Responsive */
    .process-timeline {
        flex-direction: column;
        gap: 50px;
    }

    .process-timeline::before {
        display: none;
    }

    .step-img-wrapper {
        width: 150px;
        height: 150px;
    }
}
