/* Import Modern Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary: #78350F; /* vibrant premium bronze coffee */
    --primary-hover: #451A03; /* darker espresso brown */
    --primary-light: #ffffff; /* pure white tint */
    --secondary: #1C1917; /* sleek warm stone-dark */
    --accent: #B45309; /* warm golden bronze accent */
    --dark: #1C1917; /* near-black warm stone */
    --light: #ffffff; /* pure white page background */
    --white: #ffffff;
    --gray-50: #ffffff; /* pure white gray-50 */
    --gray-100: #ffffff; /* pure white gray-100 */
    --gray-200: #E2E8F0; /* light neutral grey border */
    --gray-400: #94A3B8; /* muted grey */
    --gray-600: #78716C; /* balanced stone-600 secondary text */
    --gray-800: #292524; /* primary dark text stone-800 */
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 16px 36px rgba(0, 0, 0, 0.06);
    
    /* Borders */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout Constants */
    --max-width: 1280px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    overflow-x: visible;
    width: 100%;
}

.page-wrapper {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--gray-800);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

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

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

.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    gap: 8px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp {
    background: var(--white);
    color: #059669;
    border: 2px solid #059669;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus,
.btn-whatsapp:active {
    background: #059669;
    border-color: #059669;
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.2);
}

.btn-details {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 16px;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
    box-shadow: none;
}

.btn-details:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Pulsing Animations for Important CTAs */
.btn-pulse {
    animation: pulse-primary-btn 2.5s infinite;
}

.btn-pulse-wa {
    animation: pulse-wa-btn 2.5s infinite;
}

@keyframes pulse-primary-btn {
    0% {
        box-shadow: 0 4px 14px rgba(120, 53, 15, 0.15), 0 0 0 0 rgba(120, 53, 15, 0.4);
    }
    70% {
        box-shadow: 0 4px 14px rgba(120, 53, 15, 0.15), 0 0 0 10px rgba(120, 53, 15, 0);
    }
    100% {
        box-shadow: 0 4px 14px rgba(120, 53, 15, 0.15), 0 0 0 0 rgba(120, 53, 15, 0);
    }
}

@keyframes pulse-wa-btn {
    0% {
        box-shadow: 0 4px 14px rgba(16, 185, 129, 0.15), 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        box-shadow: 0 4px 14px rgba(16, 185, 129, 0.15), 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 4px 14px rgba(16, 185, 129, 0.15), 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Header & Top Bar */
.top-bar {
    background-color: var(--secondary);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-info {
    display: flex;
    gap: 20px;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-social a {
    opacity: 0.8;
}

.top-bar-social a:hover {
    opacity: 1;
    color: var(--accent);
}

header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 2px solid #000000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 55px;
    width: 55px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.logo-link:hover .logo-img {
    transform: rotate(5deg) scale(1.06);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.logo-text h2 {
    font-size: 1.3rem;
    color: var(--primary);
    line-height: 1;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--gray-600);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-weight: 500;
    font-family: var(--font-heading);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* Navigation Dropdown styles */
.nav-item.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-caret {
    font-size: 0.8rem;
    margin-left: 2px;
    transition: var(--transition);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    min-width: 220px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-800);
    transition: var(--transition);
    border-bottom: 1px solid var(--gray-50);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    padding-left: 25px;
}

/* Show dropdown on hover (Desktop only) */
@media (min-width: 769px) {
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 450px;
    background-color: var(--secondary);
    color: var(--white);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

@keyframes zoomEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
    animation: zoomEffect 6s infinite alternate ease-in-out;
}

.hero-overlay {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.prev-arrow {
    left: 25px;
}

.next-arrow {
    right: 25px;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.95rem;
    }
    .prev-arrow {
        left: 12px;
    }
    .next-arrow {
        right: 12px;
    }
}

/* Slider Pagination Dots */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background-color: rgba(255, 255, 255, 0.85);
    transform: scale(1.25);
}

.hero-catalog-link:hover {
    background-color: var(--primary-hover) !important;
    color: var(--white) !important;
    transform: translateX(3px);
}

/* Interactive Calculator Panel */
.calc-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    color: var(--dark);
    border: 1px solid var(--gray-100);
}

.calc-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.calc-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.grid-calc-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.calc-result-box {
    background-color: var(--gray-50);
    border: 1.5px dashed var(--primary);
    padding: 16px;
    border-radius: var(--radius-md);
    margin-top: 24px;
    text-align: center;
}

.calc-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.calc-info-text {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-top: 4px;
}

/* Feature Highlights */
.features-section {
    background-color: var(--white);
    position: relative;
    z-index: 10;
    margin-top: -40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
}

.feature-box {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    height: 70px;
    width: 70px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 2rem;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.feature-box h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* Services Catalog */
.section-title-wrapper {
    margin-bottom: 50px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-top: 10px;
    margin-bottom: 15px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray-600);
    font-size: 1.05rem;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-img-wrapper {
    position: relative;
    height: auto;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.service-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.service-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.service-card-body p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--gray-100);
    padding-top: 16px;
    margin-top: auto;
}

.price-lbl {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    display: block;
}

.price-val {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}

/* Why Choose Balaji Enterprises Section */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    position: relative;
}

.about-img-box img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* About Us Logo Showcase styling */
.about-logo-wrapper {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(10, 15, 32, 0.2);
    transition: var(--transition);
    overflow: visible; /* to allow the badge to overlap */
}

.about-logo-wrapper::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px dashed rgba(10, 15, 32, 0.25);
    border-radius: calc(var(--radius-lg) + 8px);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition);
}

.about-logo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    border-color: rgba(10, 15, 32, 0.4);
}

.about-logo-wrapper:hover::before {
    transform: scale(1.02);
    border-color: rgba(10, 15, 32, 0.5);
}

.about-logo-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-lg) - 4px);
    display: block;
    object-fit: contain;
}

.about-experience-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background-color: var(--accent);
    color: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.about-experience-badge strong {
    font-size: 1.6rem;
    display: block;
    line-height: 1;
}

.about-experience-badge span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.about-point-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.about-point-icon {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Gallery Filtering & Lightbox */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--white);
    color: var(--gray-600);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: auto;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background-color: var(--white);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

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

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

.gallery-overlay h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.8rem;
    color: var(--gray-200);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.92);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 750px;
    width: 100%;
    position: relative;
}

.lightbox-content {
    max-width: 100%;
    max-height: 60vh;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.7);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2010;
}

.lightbox-caption {
    margin-top: 15px;
    margin-bottom: 15px;
    color: var(--white);
    text-align: center;
    font-size: 1.15rem;
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.4;
}

.lightbox-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
    margin-top: 5px;
}

@media (max-width: 480px) {
    .lightbox-actions {
        flex-direction: column;
        gap: 10px;
    }
    .lightbox-actions .btn {
        width: 100%;
    }
}

/* Testimonials / Reviews */
.reviews-section {
    background-color: var(--primary-light);
}

.review-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.review-stars {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-card p {
    font-style: normal;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-user-avatar {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.review-user-name h5 {
    font-size: 1rem;
}

.review-user-name span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* Booking & Lead Form Section */
.booking-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.booking-info h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.booking-info p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

.booking-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-item {
    display: flex;
    gap: 15px;
}

.booking-item-icon {
    font-size: 1.5rem;
    color: var(--primary);
    background-color: var(--primary-light);
    height: 44px;
    width: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}

.booking-item-text h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.booking-item-text p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

.booking-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}

/* Service Detail Page Layout */
.page-header {
    background-color: var(--secondary);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero_background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.page-header .container {
    position: relative;
    z-index: 10;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb-separator {
    color: var(--gray-600);
}

.breadcrumb-active {
    color: var(--white);
    font-weight: 500;
}

.product-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.product-gallery {
    margin-bottom: 30px;
}

.product-main-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: var(--shadow-md);
}

.product-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.product-feat-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.product-feat-card h4 {
    margin-bottom: 6px;
}

.product-feat-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.faq-container {
    margin-top: 40px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 24px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--gray-50);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--gray-600);
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 500px;
}

.faq-icon::before {
    content: '+';
    font-size: 1.2rem;
    font-weight: bold;
}

.faq-item.active .faq-icon::before {
    content: '-';
}

.sidebar-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    border: 1px solid var(--gray-100);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary);
    padding-left: 12px;
}

.sidebar-links li {
    margin-bottom: 12px;
}

.sidebar-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background-color: var(--gray-50);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background-color: var(--primary-light);
    color: var(--primary);
}

/* Contact Page Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}

.contact-card-info {
    background-color: var(--white);
    color: var(--gray-800);
    border: 1px solid var(--gray-200);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card-info h2 {
    color: var(--secondary);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact-card-info p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-det-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-det-icon {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-det-text h4 {
    color: var(--secondary);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.contact-det-text p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.map-container {
    margin-top: 40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Section */
footer {
    background-color: var(--white);
    color: var(--gray-800);
    border-top: 1px solid var(--gray-200);
    padding-top: 80px;
    font-size: 0.95rem;
    font-weight: bold;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.footer-widget {
    text-align: center;
}

.footer-logo-img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
    transition: var(--transition);
    display: inline-block;
}

.footer-logo-img:hover {
    transform: rotate(-5deg) scale(1.08);
}

.footer-widget h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-widget p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-social-icon {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

/* Real Colorful Social Icons */
.icon-facebook {
    color: #1877F2 !important;
}

.icon-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    display: inline-block;
}

.icon-email {
    color: #EA4335 !important;
}

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

.footer-links a {
    color: var(--gray-600);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 30px;
    gap: 15px;
    color: var(--gray-600);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Sticky Social Floating Buttons */
.sticky-cta-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1500;
}

.sticky-btn {
    height: 56px;
    width: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    font-size: 1.8rem;
    transition: var(--transition);
    position: relative;
}

.sticky-btn:hover {
    transform: scale(1.1);
}

.sticky-btn-call {
    background-color: var(--primary);
}

.sticky-btn-call svg,
.sticky-btn-call i {
    animation: sticky-call-shake 2s infinite ease-in-out;
}

.sticky-btn-call::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--primary);
    border-radius: 50%;
    animation: animate-ripple 2s linear infinite;
    pointer-events: none;
}

.sticky-btn-call::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--primary);
    border-radius: 50%;
    animation: animate-ripple 2s 1s linear infinite;
    pointer-events: none;
}

.sticky-btn-whatsapp {
    background-color: #25d366;
}

.sticky-btn-whatsapp::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #25d366;
    border-radius: 50%;
    animation: animate-ripple 2s linear infinite;
    pointer-events: none;
}

.sticky-btn-whatsapp::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #25d366;
    border-radius: 50%;
    animation: animate-ripple 2s 1s linear infinite;
    pointer-events: none;
}

@keyframes animate-ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes sticky-call-shake {
    0% { transform: rotate(0) scale(1); }
    15% { transform: rotate(-15deg) scale(1.1); }
    30% { transform: rotate(15deg) scale(1.1); }
    45% { transform: rotate(-10deg) scale(1.1); }
    60% { transform: rotate(10deg) scale(1.1); }
    75% { transform: rotate(-5deg) scale(1.05); }
    90% { transform: rotate(5deg) scale(1.05); }
    100% { transform: rotate(0) scale(1); }
}

.sticky-btn-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--dark);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sticky-btn:hover .sticky-btn-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Toast Message */
.toast-msg {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--dark);
    color: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    display: none;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .about-split, .booking-split, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .header-container {
        height: 70px;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        padding: 40px;
        gap: 30px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .nav-menu.open {
        left: 0;
    }
    .nav-item.dropdown {
        width: 100%;
    }
    .nav-item.dropdown .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 10px 0 0 15px;
        display: none;
        opacity: 1;
        visibility: visible;
        min-width: unset;
        transition: none;
    }
    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }
    .nav-item.dropdown.active .dropdown-caret {
        transform: rotate(180deg);
    }
    .menu-toggle {
        display: block;
    }
    .nav-cta {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero {
        height: 320px;
    }
    .section-title {
        font-size: 2rem;
    }
    .about-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .grid-calc-inputs {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
}

/* Navigation menu social links styling */
.nav-menu-socials {
    display: none;
}

@media (max-width: 768px) {
    .nav-menu-socials {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid var(--gray-200);
        width: 100%;
    }
    .nav-menu-socials a {
        color: var(--primary);
        font-size: 1.25rem;
        transition: var(--transition);
    }
    .nav-menu-socials a:hover {
        color: var(--accent);
    }
    .features-section {
        padding: 20px 15px;
        margin-top: -20px;
    }
    .features-section .grid-3 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 10px;
    left: 15px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 0.95rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.scroll-to-top-btn:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-3px);
}

.scroll-to-top-btn i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-to-top-btn.scroll-down i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .scroll-to-top-btn {
        bottom: 15px; /* Moved all the way to the bottom edge */
        left: 10px;
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}

/* Slider Logo Overlay */
.slider-logo-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 15;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 4px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-md);
    pointer-events: none; /* User can click slides underneath the logo card */
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-watermark {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .slider-logo-overlay {
        top: 15px;
        right: 15px;
        padding: 3px;
    }
    .slider-watermark {
        width: 30px;
        height: 30px;
    }
}

/* Custom Premium Bronze CTA Button for Book Visit (Swapped/Outline style) */
.btn-book-visit {
    background-color: transparent;
    color: var(--primary); /* Vibrant Bronze text */
    border: 2px solid var(--primary); /* Vibrant Bronze border */
    transition: var(--transition);
}

.btn-book-visit:hover,
.btn-book-visit:focus,
.btn-book-visit:active {
    background-color: var(--primary); /* Fills in Vibrant Bronze on hover */
    border-color: var(--primary);
    color: var(--white); /* White text on hover */
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Bronze Pulse Glow Animation */
.btn-pulse-bronze {
    animation: pulse-bronze-btn 2.5s infinite;
}

@keyframes pulse-bronze-btn {
    0% {
        box-shadow: 0 4px 14px rgba(120, 53, 15, 0.15), 0 0 0 0 rgba(120, 53, 15, 0.4);
    }
    70% {
        box-shadow: 0 4px 14px rgba(120, 53, 15, 0.15), 0 0 0 10px rgba(120, 53, 15, 0);
    }
    100% {
        box-shadow: 0 4px 14px rgba(120, 53, 15, 0.15), 0 0 0 0 rgba(120, 53, 15, 0);
    }
}

/* Service Area Card Hover Effect */
.service-area-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-md) !important;
}

/* Styling Submit Request buttons inside booking forms to match the "Our Products" (.btn-whatsapp) style */
.booking-card form button[type="submit"] {
    background: var(--white) !important;
    color: #059669 !important;
    border: 2px solid #059669 !important;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
    animation: none !important;
}

.booking-card form button[type="submit"]:hover,
.booking-card form button[type="submit"]:focus,
.booking-card form button[type="submit"]:active {
    background: #059669 !important;
    border-color: #059669 !important;
    color: var(--white) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.2) !important;
}



