/* =========================================
   GLOBAL VARIABLES (Theming)
   ========================================= */
:root {
    --primary-gold: #d4af37;
    --dark-bg: #111111;
    --light-text: #ffffff;
    --transition-speed: 0.4s;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

/* =========================================
   LUXURY TRANSPARENT HEADER
   ========================================= */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    background: transparent; /* શરૂઆતમાં પારદર્શક */
    transition: all var(--transition-speed) ease;
}

/* જ્યારે યુઝર નીચે સ્ક્રોલ કરશે ત્યારની ઇફેક્ટ */
.luxury-header.scrolled {
    background: rgba(17, 17, 17, 0.95); /* ડાર્ક બ્લેક બ્લર સાથે */
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Design */
.logo a { text-decoration: none; color: var(--light-text); text-align: center; display: block; }
.logo h2 { font-size: 26px; letter-spacing: 2px; color: var(--primary-gold); margin-bottom: 2px; }
.logo span { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: #ccc; }

/* Navigation Menu */
.nav-menu ul { display: flex; list-style: none; gap: 35px; }
.nav-menu a {
    text-decoration: none;
    color: var(--light-text);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color var(--transition-speed);
    position: relative;
}

/* હોવર ઇફેક્ટ (અક્ષરોની નીચે ગોલ્ડન લાઈન) */
.nav-menu a::after {
    content: ''; position: absolute; width: 0; height: 2px;
    background: var(--primary-gold);
    bottom: -5px; left: 0; transition: width var(--transition-speed);
}
.nav-menu a:hover { color: var(--primary-gold); }
.nav-menu a:hover::after { width: 100%; }

/* Call Now Button */
.header-cta .btn-call {
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: flex; align-items: center; gap: 8px;
    transition: all var(--transition-speed);
}
.header-cta .btn-call:hover { background: #fff; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4); }

.mobile-toggle { display: none; color: var(--light-text); font-size: 26px; cursor: pointer; }

/* Mobile Responsive */
@media (max-width: 992px) {
    .nav-menu, .header-cta { display: none; }
    .mobile-toggle { display: block; }
}

/* =========================================
   FOOTER STYLES (White Background & Black Text)
   ========================================= */
.site-footer {
    background-color: #ffffff !important; /* સફેદ બેકગ્રાઉન્ડ */
    color: #111111 !important; /* કાળો ટેક્સ્ટ */
    padding: 70px 20px 20px 20px;
    border-top: 3px solid var(--primary-gold, #d4af37);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3, .footer-col h4 {
    color: #111111 !important;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-gold, #d4af37);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #444444 !important;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #444444 !important;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--primary-gold, #d4af37) !important;
    padding-left: 5px;
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-gold, #d4af37) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.map-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #e0e0e0 !important;
    padding-top: 20px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #555555 !important;
}

.footer-bottom-container a {
    color: #111111 !important;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}


/* =========================================
   Step 5: Cinematic Hero Section Styles (Final)
   ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh; 
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 50px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 50px;
}

/* Background Slider container */
.hero-slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

/* Individual Slide (Smooth Fade Animation) */
.hero-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, transform 5s linear;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.05); 
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

/* Hero Content Styling */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-content h1 span {
    color: var(--primary-gold); 
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #e0e0e0;
}

/* Action Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-whatsapp {
    display: flex;
    align-items: center; /* Icon ane text ne ekdum sidhi line ma rakhva mate */
    justify-content: center; /* Banne ne center ma rakhva mate */
    gap: 10px; /* Icon ane text ni vachhe perfect space aampva mate */
    width: 190px;
    padding: 14px 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Call Now Button */
.btn-primary {
    background-color: var(--primary-gold);
    color: #111111;
}
.btn-primary:hover {
    background-color: #ffffff;
}

/* WhatsApp Button */
.btn-whatsapp {
    background-color: #25D366; 
    color: #111111; /* Normal text black */
}
.btn-whatsapp:hover {
    background-color: #ffffff; /* Hover effect ma background white */
    color: #111111; /* Hover effect ma text black j rehse */
}

/* બટનની અંદરના આઇકોન્સની સાઇઝ એકદમ સરખી કરવા માટે */
.btn-primary i, 
.btn-whatsapp i {
    font-size: 18px; /* બંને આઇકોનનું માપ ફિક્સ કરી દીધું છે */
    width: 24px; /* આઇકોન અને લખાણ વચ્ચે પરફેક્ટ જગ્યા જાળવવા */
    text-align: center;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section { height: auto; padding: 60px 20px; text-align: center; justify-content: center; }
    .hero-overlay { background: rgba(0,0,0,0.7); }
    .hero-content h1 { font-size: 32px; }
    .hero-buttons { justify-content: center; }
    .btn-primary, .btn-whatsapp { width: 100%; max-width: 250px; }
}


/* =========================================
   Step 6: Premium Services (Bento Grid)
   ========================================= */
.premium-services {
    padding: 80px 50px;
    background-color: var(--content-bg); /* લાઇટ થીમ માટે */
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2 span {
    color: var(--primary-gold);
}

.section-title p {
    font-size: 16px;
    color: #555555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.bento-item {
    position: relative;
    border-radius: 12px; /* સ્મૂથ રાઉન્ડ કોર્નર */
    overflow: hidden;
    min-height: 320px;
    background-color: #f0f0f0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Specific Grid Sizes for Apple-style Bento Look */
.bento-item:nth-child(1) { grid-column: span 2; } /* મોટું બોક્સ */
.bento-item:nth-child(2) { grid-column: span 1; } /* નાનું બોક્સ */
.bento-item:nth-child(3) { grid-column: span 1; } /* નાનું બોક્સ */
.bento-item:nth-child(4) { grid-column: span 2; } /* મોટું બોક્સ */
.bento-item:nth-child(5) { grid-column: span 2; } /* મોટું બોક્સ */
.bento-item:nth-child(6) { grid-column: span 1; } /* નાનું બોક્સ */

.bento-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.bento-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 60%;
    background: linear-gradient(to top, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0) 100%);
    z-index: 1;
}

.bento-content {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 30px;
    z-index: 2;
    box-sizing: border-box;
}

.bento-content h3 {
    color: #ffffff;
    font-size: 24px;
    margin: 0 0 8px 0;
    font-weight: 700;
    transition: color 0.3s ease;
}

.bento-content p {
    color: #e0e0e0;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

/* Hover Effects */
.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.bento-item:hover .bento-img {
    transform: scale(1.08); /* અંદરનો ફોટો સ્મૂથ ઝૂમ થશે */
}

.bento-item:hover .bento-content h3 {
    color: var(--primary-gold);
}

/* Explore Button */
.services-btn-wrapper {
    text-align: center;
}

.btn-explore {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: bold;
    color: #111111;
    background-color: transparent;
    border: 2px solid #111111;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background-color: #111111;
    color: var(--primary-gold);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-item:nth-child(1), .bento-item:nth-child(4), .bento-item:nth-child(5) { grid-column: span 1; }
    .bento-item:nth-child(6) { grid-column: span 2; }
}
@media (max-width: 768px) {
    .premium-services { padding: 60px 20px; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-item, .bento-item:nth-child(6) { grid-column: span 1; min-height: 280px;}
}


/* =========================================
   Step 7: About Us (6-Point Timeline)
   ========================================= */
.about-section { 
    padding: 80px 20px; 
    background-color: #ffffff; 
}

.timeline { 
    position: relative; 
    max-width: 900px; 
    margin: 40px auto; 
}

/* વચ્ચેની ગોલ્ડન લાઈન */
.timeline::after { 
    content: ''; 
    position: absolute; 
    width: 2px; 
    background-color: var(--primary-gold); 
    top: 0; bottom: 0; left: 50%; 
    margin-left: -1px; 
}

.timeline-item { 
    padding: 15px 40px; 
    position: relative; 
    width: 50%; 
    box-sizing: border-box; 
}

/* ટાઈમલાઈનના ગોળાકાર બિંદુઓ */
.timeline-item::after { 
    content: ''; 
    position: absolute; 
    width: 16px; height: 16px; 
    right: -8px; background-color: white; 
    border: 3px solid var(--primary-gold); 
    top: 25px; border-radius: 50%; z-index: 1; 
}

.left { left: 0; text-align: right; }
.right { left: 50%; }
.right::after { left: -8px; }

/* કાર્ડની ડિઝાઇન અને હોવર ઇફેક્ટ */
.timeline-content { 
    padding: 20px; 
    background: #ffffff; 
    border: 1px solid #eee; 
    border-radius: 12px; 
    transition: all 0.4s ease; 
    cursor: pointer;
}

.timeline-content:hover { 
    transform: scale(1.03); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); 
    border-color: var(--primary-gold);
}

/* SEO માટે H3 અને P ટેગ */
.timeline-content h3 { 
    font-size: 18px; 
    margin: 0 0 8px 0; 
    color: #111; 
    font-weight: 700; 
}

.timeline-content p { 
    font-size: 14px; 
    color: #666; 
    margin: 0; 
    line-height: 1.5; 
}

/* મોબાઈલ વ્યુ માટે સેટિંગ્સ */
@media (max-width: 600px) {
    .timeline::after { left: 20px; }
    .timeline-item { width: 100%; padding-left: 50px; padding-right: 10px; }
    .timeline-item::after { left: 12px; }
    .left, .right { text-align: left; left: 0; }
    .timeline-content { padding: 15px; }
    .section-title h2 { font-size: 24px; }
}


/* =========================================
   Step 8: Gallery - 3D Cinematic Carousel
   ========================================= */
.gallery-section { 
    padding: 80px 20px; 
    background-color: #f9f9f9; 
    overflow: hidden; 
}

.gallery-title { 
    text-align: center; 
    margin-bottom: 60px; 
}

.gallery-title h2 { 
    font-size: 32px; 
    font-weight: 800; 
    color: #111; 
    text-transform: uppercase; 
}

.gallery-title h2 span { 
    color: var(--primary-gold); 
}

/* 3D Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    max-width: 800px;
    margin: 0 auto;
    perspective: 1000px; /* 3D ડેપ્થ માટે */
}

.carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-item {
    position: absolute;
    width: 300px;
    height: 400px;
    left: 50%;
    top: 0;
    margin-left: -150px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    /* JS દ્વારા 3D રોટેશન સેટ થશે */
}

/* કંટ્રોલ બટન્સ */
.carousel-controls {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.carousel-btn {
    background: #111;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover { 
    background: var(--primary-gold); 
    color: #111; 
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .carousel-container { height: 320px; }
    .carousel-item { width: 240px; height: 320px; margin-left: -120px; }
    .gallery-title h2 { font-size: 24px; }
}


/* =========================================
   Step 9: FAQ Section (Modern Accordion)
   ========================================= */
.faq-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.faq-title {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
}

.faq-title h2 span {
    color: var(--primary-gold);
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: #f9f9f9;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.accordion-header h3 {
    margin: 0;
    font-size: 16px;
    color: #111111;
    font-weight: 600;
}

.accordion-header i {
    color: var(--primary-gold);
    font-size: 18px;
    transition: transform 0.4s ease;
}

.accordion-content {
    max-height: 0;
    padding: 0 25px;
    background-color: #ffffff;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.accordion-content p {
    margin: 0;
    padding: 20px 0;
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
}

/* Active State */
.accordion-item.active {
    border-color: var(--primary-gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.accordion-item.active .accordion-header {
    background-color: #ffffff;
}

.accordion-item.active .accordion-header h3 {
    color: var(--primary-gold);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    max-height: 200px; /* Adjust if content is very long */
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-title h2 { font-size: 24px; }
    .accordion-header h3 { font-size: 15px; padding-right: 15px; }
}



/* =========================================
   Step 10: Testimonials (Google Review Style)
   ========================================= */
.testimonial-section {
    padding: 80px 20px;
    background-color: #f4f6f8; /* Light grey background */
}

.testimonial-title {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
}

.testimonial-title h2 span {
    color: var(--primary-gold);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Reviewer Header Info */
.reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    background-color: #eee;
}

.reviewer-details h4 {
    margin: 0;
    font-size: 16px;
    color: #202124;
    font-family: 'Roboto', sans-serif;
}

.reviewer-details span {
    font-size: 13px;
    color: #70757a;
}

/* Google G Icon */
.google-icon {
    position: absolute;
    right: 0;
    top: 5px;
    width: 24px;
    height: 24px;
}

/* Stars */
.review-stars {
    color: #fbbc04; /* Google Star Color */
    font-size: 16px;
    margin-bottom: 10px;
}

/* Review Text */
.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #3c4043;
    margin: 0;
}

@media (max-width: 768px) {
    .testimonial-title h2 { font-size: 24px; }
}


/* =========================================
   Step 11: Final Call To Action (Split Form)
   ========================================= */
.cta-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.cta-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* Left Side: Contact Info */
.cta-info {
    background: #111111;
    color: #ffffff;
    padding: 50px 40px;
}

.cta-info h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.cta-info p {
    color: #cccccc;
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 20px;
    color: var(--primary-gold);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.info-text h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #ffffff;
}

.info-text p {
    margin: 0;
    font-size: 15px;
    color: #aaaaaa;
}

/* Right Side: Inquiry Form */
.cta-form-container {
    padding: 50px 40px;
    background: #ffffff;
}

.cta-form-container h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
}

.cta-form .form-group {
    margin-bottom: 20px;
}

.cta-form input, 
.cta-form select, 
.cta-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: #f9f9f9;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.cta-form input:focus, 
.cta-form select:focus, 
.cta-form textarea:focus {
    border-color: var(--primary-gold);
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(212,175,55,0.1);
}

.cta-form textarea {
    height: 120px;
    resize: none;
}

.btn-submit {
    background-color: var(--primary-gold);
    color: #111;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #111;
    color: var(--primary-gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-container {
        grid-template-columns: 1fr;
    }
    .cta-info, .cta-form-container {
        padding: 30px 20px;
    }
}


/* =========================================
   ABOUT US PAGE - HERO & STORY
   ========================================= */
.about-page-header {
    position: relative;
    /* સિનેમેટિક ડેકોરેશન બેકગ્રાઉન્ડ ઈમેજ */
    background-image: url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-page-header .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(17, 17, 17, 0.75); /* Dark Overlay */
}

.about-header-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.about-header-content h1 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.4;
}

.about-header-content h1 span {
    color: var(--primary-gold);
}

.about-brand-story {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-brand-story .container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111111;
}

.story-content h2 span {
    color: var(--primary-gold);
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

/* Stats Box Styling */
.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-box {
    background: #f9f9f9;
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    border-bottom: 4px solid var(--primary-gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 42px;
    color: #111111;
    display: inline-block;
    margin: 0;
    font-weight: 800;
}

.stat-box span {
    font-size: 38px;
    color: var(--primary-gold);
    font-weight: 800;
}

.stat-box p {
    margin: 10px 0 0 0;
    font-size: 15px;
    color: #666666;
    font-weight: 600;
    text-transform: uppercase;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-brand-story .container { grid-template-columns: 1fr; }
    .about-header-content h1 { font-size: 28px; }
}

/* =========================================
   ABOUT US - TEAM & VISION SECTION
   ========================================= */
.team-vision-section {
    padding: 80px 20px;
    background-color: #fcfcfc;
}

.team-vision-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Vision Row */
.vision-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

.vision-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.3;
}

.vision-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.vision-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vision-highlights span {
    font-size: 16px;
    color: #111;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vision-highlights i {
    color: var(--primary-gold);
    font-size: 20px;
}

.vision-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
}

.team-card {
    background: #ffffff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-gold);
}

/* Highlight Leadership Cards slightly */
.leadership-card {
    background: #fafafa;
    border-bottom: 3px solid var(--primary-gold);
}

.team-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
    padding: 3px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-card h4 {
    margin: 0 0 5px 0;
    font-size: 20px;
    color: #111;
    font-weight: 700;
}

.team-card p {
    margin: 0;
    font-size: 15px;
    color: #777;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .vision-row {
        grid-template-columns: 1fr;
    }
    .vision-text h2 {
        font-size: 28px;
    }
}

/* =========================================
   ABOUT US - WORK PROCESS SECTION
   ========================================= */
.work-process-section {
    margin-top: 60px;
    border-top: 1px solid #eeeeee;
    padding-top: 60px;
}

.process-main-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin-bottom: 50px;
}

.process-main-title span {
    color: var(--primary-gold);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.process-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    position: relative;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212,175,55,0.15);
    border-color: var(--primary-gold);
}

/* Background Step Number */
.step-number {
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 100px;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.05); /* Very light gold */
    z-index: 0;
    transition: all 0.3s ease;
}

.process-card:hover .step-number {
    color: rgba(212, 175, 55, 0.15);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: #fafafa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 2px dashed var(--primary-gold);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background: var(--primary-gold);
    border-style: solid;
}

.process-icon i {
    font-size: 28px;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.process-card:hover .process-icon i {
    color: #111;
}

.process-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.process-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .process-main-title { font-size: 26px; }
}

/* =========================================
   ABOUT US - VISION & MISSION SECTION
   ========================================= */
.vision-mission-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.vision-mission-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-bottom: 4px solid var(--primary-gold);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(212,175,55,0.05), transparent);
    z-index: -1;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212,175,55,0.15);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.4s ease;
}

.vm-card:hover .vm-icon {
    background: var(--primary-gold);
    transform: scale(1.1);
}

.vm-icon i {
    font-size: 35px;
    color: var(--primary-gold);
    transition: all 0.4s ease;
}

.vm-card:hover .vm-icon i {
    color: #111;
}

.vm-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vm-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   SERVICES PAGE - HERO
   ========================================= */
.services-hero {
    height: 400px;
    background-color: #222222;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center; color: #ffffff; width: 100%;
}

/* =========================================
   SERVICES PAGE - INTERACTIVE TABS
   ========================================= */
.services-tabs-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.tabs-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Left Menu Sidebar */
.tab-menu {
    flex: 0 0 320px;
    background-color: #1a1a1a;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
}

.tab-link {
    background: none;
    border: none;
    color: #aaaaaa;
    padding: 20px 30px;
    text-align: left;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    border-left: 5px solid transparent;
}

.tab-link:hover, .tab-link.active {
    background-color: #2a2a2a;
    color: var(--primary-gold);
    border-left: 5px solid var(--primary-gold);
}

/* Right Content Area */
.tab-content-area {
    flex: 1;
    padding: 50px;
}

.tab-content {
    animation: fadeIn 0.5s ease;
}

.tab-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.tab-content h2 { color: var(--primary-gold); font-size: 32px; margin-bottom: 15px; }
.tab-content p { color: #555; font-size: 16px; line-height: 1.8; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .tabs-container { flex-direction: column; }
    .tab-menu { flex: auto; padding: 20px 0; flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .tab-link { border-left: none; border-bottom: 3px solid transparent; text-align: center; padding: 15px 20px; font-size: 16px; }
    .tab-link:hover, .tab-link.active { border-left: none; border-bottom: 3px solid var(--primary-gold); }
    .tab-content-area { padding: 30px 20px; }
    .tab-content img { height: 250px; }
}

/* =========================================
   CALL TO ACTION (CTA) SECTION
   ========================================= */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%); /* Premium Dark Background */
    padding: 70px 20px;
    color: #ffffff;
    margin-top: 50px;
    border-top: 3px solid var(--primary-gold, #d4af37);
}

.cta-section h2 {
    font-size: 36px;
    color: var(--primary-gold, #d4af37); /* Gold color for heading */
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 14px 35px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: max-content; /* આનાથી બટન મોટું નહીં થાય */
    flex: none; /* આનાથી બટન ઓટોમેટિક લાંબુ નહીં થાય */
}

.btn-call {
    background-color: var(--primary-gold, #d4af37);
    color: #000000 !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-call:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #1ebe56;
    transform: translateY(-3px);
}


/* =========================================
   OUR CORE VALUES (HOVER CARDS)
   ========================================= */
.core-values-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: #f9f9f9;
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--primary-gold, #d4af37);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Hover Background Animation */
.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-gold, #d4af37);
    z-index: -1;
    transition: all 0.4s ease;
}

.value-card:hover::before {
    height: 100%; /* Background fills up on hover */
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.value-card .icon-box {
    font-size: 50px;
    color: var(--primary-gold, #d4af37);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.value-card:hover .icon-box {
    color: #ffffff;
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.value-card:hover h3 {
    color: #ffffff;
}

.value-card p {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    transition: color 0.4s ease;
}

.value-card:hover p {
    color: #ffffff;
}


/* =========================================
   CLASSIC SQUARE GRID GALLERY STYLES
   ========================================= */
.gallery-hero {
    height: 350px;
    background-color: #222;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center; color: #fff;
}

.gallery-hero h1 { color: var(--primary-gold, #d4af37); font-size: 40px; margin-bottom: 10px; }

.gallery-section { padding: 60px 20px; background: #f9f9f9; }

.classic-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.classic-gallery-item {
    overflow: hidden;
    border-radius: 8px; /* ક્લાસિક લુક માટે હળવો વળાંક */
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    aspect-ratio: 1 / 1; /* આ કોડથી બોક્સ એકદમ ચોરસ બનશે */
    border: 3px solid transparent;
}

.classic-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

/* Hover Effect - Golden Shadow and Zoom */
.classic-gallery-item:hover {
    border-color: var(--primary-gold, #d4af37);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.classic-gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox (Zoom Overlay) */
.lightbox {
    display: none; position: fixed; z-index: 9999; top: 0; left: 0;
    width: 100%; height: 100%; background-color: rgba(0,0,0,0.9);
    align-items: center; justify-content: center;
}

.lightbox-content { max-width: 90%; max-height: 90%; border-radius: 10px; border: 3px solid var(--primary-gold, #d4af37); animation: zoomIn 0.3s ease; }

.close-lightbox {
    position: absolute; top: 20px; right: 40px; color: #fff;
    font-size: 50px; font-weight: bold; cursor: pointer; transition: 0.3s;
}

.close-lightbox:hover { color: var(--primary-gold, #d4af37); }

@keyframes zoomIn { from {transform: scale(0.8); opacity: 0;} to {transform: scale(1); opacity: 1;} }


/* =========================================
   CONTACT PAGE - FINAL ELEGANT VERTICAL SPLIT
   ========================================= */
.contact-hero {
    height: 300px;
    background-color: #222;
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.pexels.com/photos/3171837/pexels-photo-3171837.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center; color: #fff;
    margin-bottom: 50px;
}

.elegant-split-container {
    display: flex;
    max-width: 1100px;
    margin: 0 auto 50px auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.contact-image-side { flex: 1.2; min-height: 500px; }
.contact-image-side img { width: 100%; height: 100%; object-fit: cover; display: block; }

.contact-details-side { flex: 1; padding: 40px; display: flex; flex-direction: column; justify-content: center; }

/* Contact List Items */
.contact-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
.contact-list-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: all 0.4s ease;
    padding: 15px; 
    border-radius: 12px;
    background: #fdfdfd;
    border: 1px solid #eee;
}

.contact-list-item:hover:not(.address-item) {
    background: var(--primary-gold, #d4af37);
    color: #fff;
    transform: translateX(10px);
    border-color: var(--primary-gold, #d4af37);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.list-icon {
    width: 45px; height: 45px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold, #d4af37);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-right: 15px;
    transition: 0.4s;
}

.contact-list-item:hover .list-icon { background: #fff; color: var(--primary-gold, #d4af37); }
.contact-list-item:hover .list-text h4, 
.contact-list-item:hover .list-text span { color: #fff; }

/* Smart Direction Box */
.smart-direction-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fdfdfd;
    border: 2px solid var(--primary-gold, #d4af37);
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    width: fit-content;
    transition: 0.3s;
    margin-top: 10px;
}
.smart-direction-box:hover { background: var(--primary-gold, #d4af37); color: #fff; transform: translateY(-3px); }

/* એડ્રેસ બોક્સ માટે ખાસ કલર ફિક્સ */
.contact-list-item .list-text h4, 
.contact-list-item .list-text span {
    color: #333333 !important; /* આ ટેક્સ્ટને ઘેરો કરશે */
}

/* હોવર વખતે જ્યારે બોક્સ ગોલ્ડન થાય, ત્યારે ટેક્સ્ટ સફેદ થશે */
.contact-list-item:hover .list-text h4, 
.contact-list-item:hover .list-text span {
    color: #ffffff !important;
}


/* About Us & All Pages Hero Section Spacing Fix */
.hero-section, 
.about-page-header, 
.services-header, 
.gallery-header, 
.contact-header, 
.page-header {
    padding-top: 120px !important;
}


/* Add space between Hero Section and the Next Section */
.about-page-header + section,
.about-page-header + div {
    margin-top: 80px !important;
}


/* Remove Rounded Corners from Hero Section */
.hero-section {
    border-radius: 0 !important;
}

/* Force Footer to be Full Width on all pages */
.site-footer {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}


/* =========================================
   PERFECT FOOTER SPACING (NO WHITE GAP)
   ========================================= */
html, body {
    margin: 0;
    padding: 0;
}

body {
    display: block; /* Flexbox કાઢી નાખ્યું જેથી જગ્યા ન ખેંચાય */
}

/* CTA ની નીચેની વધારાની જગ્યા બંધ કરવા */
.cta-full-width {
    margin-bottom: 0 !important; 
}

/* ફૂટર હંમેશા CTA ની નીચે ચોંટેલું રહેશે */
.site-footer, 
footer {
    margin-top: 0 !important; 
    margin-bottom: 0 !important;
    padding-bottom: 20px !important; /* ફૂટરની અંદર નીચેની જગ્યા, બિલકુલ હોમ પેજ જેવી */
    width: 100%;
}


/* =========================================
   FORCE FIX: REMOVE GAP BETWEEN CTA & FOOTER
   ========================================= */
body, html {
    display: block !important; /* ફ્લેક્સબોક્સની અસર ખતમ કરવા */
    min-height: auto !important;
}

.cta-full-width {
    margin-bottom: 0 !important; /* CTA ની નીચેની જગ્યા ઝીરો કરવા */
}

.site-footer, 
footer {
    margin-top: 0 !important; /* ફૂટરની ઉપરનો મોટો પટ્ટો કાઢી નાખવા */
    position: relative !important;
}


