@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   DESIGN VARIABLES & RESET
   ========================================================================== */
:root {
    --primary: #E5674D;
    /* Terracotta/Coral theme */
    --primary-hover: #CC5238;
    --secondary: #9E2F11;
    /* Terracotta red/brown for deep lineage focus */
    --accent: #c5a059;
    /* Traditional Vedic Gold accent */
    --accent-hover: #b38e47;
    --dark: #0f172a;
    /* Slate midnight color for ultimate contrast */
    --text: #334155;
    --text-light: #64748b;
    --bg-light: #FAF7F2;
    /* Cream/sand background for classic warmth */
    --bg-white: #ffffff;
    --bg-peach: #FAF0E6;
    /* Linen/peach soft tint */
    --border: #e2e8f0;
    --border-gold: rgba(197, 160, 89, 0.25);
    /* Elegant gold border overlay */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smoother transitions */
    --shadow: 0 4px 20px rgba(15, 23, 42, 0.03), 0 1px 3px rgba(15, 23, 42, 0.01);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.05), 0 4px 12px rgba(15, 23, 42, 0.02);
    --shadow-premium: 0 20px 40px rgba(15, 23, 42, 0.06), 0 1px 10px rgba(15, 23, 42, 0.02);

    /* Typography variables */
    --font-headings: 'Cinzel', serif;
    --font-body: 'Poppins', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg-white);
    line-height: 1.65;
    letter-spacing: 0.2px;
    overflow-x: hidden;
}

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

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

/* Common Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 70px 0;
}

.section-bg {
    background-color: var(--bg-light);
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3.25rem;
    /* ~52px */
}

h2 {
    font-size: 2.375rem;
    /* ~38px */
}

h3 {
    font-size: 1.875rem;
    /* ~30px */
}

.section-title {
    font-family: var(--font-headings);
    font-size: 2.375rem;
    /* ~38px */
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1rem;
    /* 16px */
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */

.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.02);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    max-width: 1350px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text h2 {
    font-family: var(--font-headings);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.logo:hover .logo-text h2 {
    color: var(--primary);
}

.logo-text p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

/* Navigation Links */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 12px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    padding: 6px 8px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    /* Prevents "Contact Us" wrapping */
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: calc(100% - 16px);
    height: 2px;
    bottom: 0;
    left: 8px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.header-phone:hover {
    color: var(--primary);
}

.header-phone svg {
    stroke: #64748b;
    transition: var(--transition);
}

.header-phone:hover svg {
    stroke: var(--primary);
}

.header-book-btn {
    background-color: var(--primary) !important;
    color: #fff !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 10px 22px !important;
    letter-spacing: 0.2px !important;
    transition: var(--transition) !important;
    white-space: nowrap !important;
}

.header-book-btn:hover {
    background-color: var(--primary-hover) !important;
    transform: translateY(-1px) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

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

/* Prevent underline hover/active effects on dropdown trigger links */
.nav-link[href="#"]::after,
.nav-link[href^="#"]::after {
    display: none !important;
}

/* Dropdown Sub-menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.98);
    min-width: 240px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    list-style: none;
    padding: 12px 0;
    z-index: 100;
}

/* Scrollable dropdown menus for desktop */
.dropdown-menu.scrollable {
    max-height: 380px;
    overflow-y: auto;
}

/* Custom scrollbar styling for premium scrollable dropdowns */
.dropdown-menu.scrollable::-webkit-scrollbar {
    width: 6px;
}
.dropdown-menu.scrollable::-webkit-scrollbar-track {
    background: transparent;
}
.dropdown-menu.scrollable::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}
.dropdown-menu.scrollable::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

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

.dropdown-link {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text);
}

.dropdown-link:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    outline: none;
    z-index: 1001;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--dark);
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.hamburger span::before,
.hamburger span::after {
    content: "";
    position: absolute;
    left: 0;
}

.hamburger span::before {
    top: -7px;
}

.hamburger span::after {
    bottom: -7px;
}

/* Open state animation */
.hamburger.open span {
    background-color: transparent;
}

.hamburger.open span::before {
    transform: rotate(45deg);
    top: 0;
}

.hamburger.open span::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding: 90px 0;
    background: radial-gradient(circle at 80% 20%, rgba(229, 103, 77, 0.04) 0%, rgba(158, 47, 17, 0.01) 55%, var(--bg-light) 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero-badge-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(158, 47, 17, 0.06);
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.02);
}

.google-rating-badge .stars {
    color: #f59e0b;
    font-weight: bold;
    letter-spacing: 1.5px;
}

.google-rating-badge .rating-text {
    color: var(--text);
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-headings);
    font-size: 3.75rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--dark);
}

.hero-title span {
    color: var(--primary);
}

.hero-description {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 600px;
}

.hero-meta {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 35px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-left: 3px solid var(--accent);
    padding-left: 12px;
}

.hero-btns-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-sub-btns {
    display: flex;
    gap: 15px;
}

.hero-call-btn {
    display: none !important;
    /* Hidden on desktop */
}

.hero-trust-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    padding-left: 4px;
}

.hero-trust-indicator svg {
    color: #16a34a;
    width: 14px;
    height: 14px;
}

.hero-img-mobile {
    display: none;
}

.hero-img-desktop {
    position: relative;
    display: flex;
    justify-content: center;
    order: 2;
    padding-left: 20px;
}

.hero-img-desktop img {
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    border: 4px solid var(--bg-white);
    transition: transform 0.5s ease;
}

.hero-img-desktop:hover img {
    transform: translateY(-5px) scale(1.01);
}

.hero-img-desktop::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 15%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

.hero-content {
    order: 1;
    padding-right: 20px;
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats {
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: -45px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
    background-color: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-gold);
    overflow: hidden;
    padding: 25px 10px;
}

.stat-item {
    padding: 15px 10px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: rgba(197, 160, 89, 0.2);
}

.stat-number {
    font-family: var(--font-headings);
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 5px;
    line-height: 1.1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* ==========================================================================
   ABOUT PORTION
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    padding-right: 20px;
}

.about-content {
    padding-left: 20px;
}

.about-img img {
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.about-title {
    font-family: var(--font-headings);
    font-size: 2.375rem;
    /* ~38px */
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.about-title span {
    color: var(--text-light);
}

.about-branches {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.about-text {
    color: var(--text);
    margin-bottom: 30px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
}

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

.highlight-item svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.highlight-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.highlight-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(197, 160, 89, 0.12);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(197, 160, 89, 0.35);
}

.service-card:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.service-img {
    height: 200px;
    overflow: hidden;
}

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

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

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

.service-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    font-family: var(--font-headings);
    letter-spacing: 0.5px;
}

.service-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-title a:hover {
    color: var(--primary);
}

.service-card-link {
    display: block;
    width: 100%;
}

.service-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-btn:hover {
    color: var(--primary-hover);
    transform: translateX(4px);
}

/* Service Card Action Buttons */
.service-actions {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: auto;
}

.service-action-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    border-radius: 6px;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.service-action-btn svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.service-action-btn.whatsapp {
    background-color: #25D366;
}

.service-action-btn.whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-1px);
}

.service-action-btn.call {
    background-color: var(--secondary);
}

.service-action-btn.call:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

/* ==========================================================================
   YOUTUBE SHORTS GRID
   ========================================================================== */
.shorts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.short-card {
    position: relative;
    padding-top: 177.78%;
    /* 9:16 vertical aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: #000;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.short-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.short-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.short-card iframe[src*="instagram.com"] {
    top: -54px;
    height: calc(100% + 108px);
}

@media(max-width: 1024px) {
    .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media(max-width: 575px) {
    .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ==========================================================================
   TESTIMONIALS SECTION (VIDEO TESTIMONIALS)
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.testimonial-video-wrapper {
    position: relative;
    padding-top: 100%;
    /* square ratio */
    background-color: #000;
}

.testimonial-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-overlay-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
}

.testimonial-overlay-img::after {
    content: '';
    width: 50px;
    height: 50px;
    background-color: rgba(229, 103, 77, 0.9);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center left 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.testimonial-overlay-img:hover::after {
    transform: scale(1.1);
    background-color: var(--primary-hover);
}

.testimonial-card-content {
    padding: 16px;
    flex-grow: 1;
}

.testimonial-quote {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    /* ~18.4px */
    font-style: italic;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.5;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

/* ==========================================================================
   AWARDS SECTION
   ========================================================================== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.award-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.award-img {
    height: 380px;
    overflow: hidden;
    background-color: #faf7f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 15px;
    box-sizing: border-box;
}

.award-content {
    padding: 24px;
}

.award-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.3;
}

.award-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ==========================================================================
   BOOKING & CONTACT SECTION
   ========================================================================== */
.booking-section-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: start;
}

/* Booking Form Wrapper */
.booking-form-wrap {
    background-color: var(--bg-peach);
    padding: 30px 25px;
    border-radius: 20px;
    border: 1px solid #E5D3C8;
    box-shadow: var(--shadow);
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.full-width {
    grid-column: 1 / -1;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-form-wrap label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    font-family: var(--font-body);
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.booking-form-wrap input,
.booking-form-wrap textarea,
.booking-form-wrap select {
    width: 100%;
    height: 52px;
    font-family: var(--font-body);
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg-white);
    padding: 0 16px;
    font-size: 15px;
    color: var(--dark);
    outline: none;
    transition: var(--transition);
}

.booking-form-wrap input:focus,
.booking-form-wrap textarea:focus,
.booking-form-wrap select:focus {
    background: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229, 103, 77, 0.15);
}

.booking-form-wrap textarea {
    height: 100px;
    resize: none;
    padding-top: 14px;
    line-height: 1.5;
}

.booking-form-wrap select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.booking-submit {
    margin-top: 24px;
}

.booking-submit button {
    width: 100%;
    height: 56px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.booking-submit button:hover {
    background: #e66700;
}

.booking-submit button:active {
    transform: scale(0.99);
}

/* Contact Info Box */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(229, 103, 77, 0.1);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-content h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.contact-content p {
    font-size: 14px;
    color: var(--text-light);
}

/* Accordion Locations */
.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item[open] {
    border-color: var(--primary);
    box-shadow: 0 10px 25px -10px rgba(15, 23, 42, 0.05);
}

.accordion-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 20px;
    background-color: var(--bg-white);
    color: var(--dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-title:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

.accordion-title::-webkit-details-marker {
    display: none;
}

.accordion-title::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--text-light);
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
}

.accordion-item[open] .accordion-title::after {
    content: '\2212';
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion-content {
    padding: 20px;
    background-color: rgba(197, 160, 89, 0.03);
    border-top: 1px solid var(--border);
}

.accordion-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-list-item {
    display: flex;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
    align-items: flex-start;
}

.accordion-list-item span {
    font-size: 16px;
    opacity: 0.8;
}

.accordion-list-item a {
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.accordion-list-item a:hover {
    color: var(--primary);
}

.accordion-list-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--dark);
    color: #cbd5e1;
    padding: 60px 0 20px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--bg-white);
    font-family: var(--font-headings);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-about p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
}

/* ==========================================================================
   POPUP MODAL
   ========================================================================== */
.cf7-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.cf7-popup-box {
    position: relative;
    background: #FAF7F2;
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    padding: 40px 30px;
    box-sizing: border-box;
    animation: popupFade .3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: 0 25px 65px rgba(15, 23, 42, 0.15);
}

.cf7-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    background: var(--primary);
    border-radius: 50%;
    color: #fff;
    transition: 0.3s ease;
    z-index: 10;
    border: none;
    outline: none;
}

.cf7-popup-close:hover {
    transform: scale(1.08);
}

.cf7-popup-heading {
    font-size: 32px;
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 25px;
    color: var(--dark);
}

.appointment-form-wrap {
    width: 100%;
    font-family: var(--font-body);
}

.appointment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.appointment-full {
    grid-column: 1 / -1;
}

.appointment-form-wrap label {
    display: block;
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 6px;
    font-weight: 600;
}

.appointment-form-wrap input,
.appointment-form-wrap select,
.appointment-form-wrap textarea {
    width: 100%;
    height: 48px;
    border: 1px solid var(--border);
    outline: none;
    border-radius: 10px;
    background: var(--bg-white);
    padding: 0 16px;
    font-size: 15px;
    color: var(--dark);
    font-family: inherit;
    transition: var(--transition);
}

.appointment-form-wrap input:focus,
.appointment-form-wrap select:focus,
.appointment-form-wrap textarea:focus {
    background: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229, 103, 77, 0.15);
}

.appointment-form-wrap textarea {
    height: 100px !important;
    resize: none;
    padding-top: 12px;
}

.appointment-submit {
    margin-top: 20px;
}

.appointment-submit input {
    width: 100%;
    height: 52px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: var(--font-body);
    font-weight: 600;
}

.appointment-submit input:hover {
    background: var(--primary-hover);
}

@keyframes popupFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   FLOATING BUTTONS
   ========================================================================== */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    background-color: #fff;
}

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

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

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

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

.call-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.instagram-btn {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.instagram-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.facebook-btn {
    background-color: #1877F2;
}

.facebook-btn svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

/* ==========================================================================
   RESPONSIVE GRIDS FOR SUBPAGES
   ========================================================================== */
.responsive-grid-1-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.responsive-grid-1-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.responsive-grid-1-2>div:first-child {
    padding-right: 25px;
}

.responsive-grid-1-2>div:last-child {
    padding-left: 25px;
}

.responsive-grid-2-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.responsive-grid-2-1>div:first-child {
    padding-right: 25px;
}

.responsive-grid-2-1>div:last-child {
    padding-left: 25px;
}

.responsive-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ==========================================================================
   FLATPICKR OVERRIDES
   ========================================================================== */
/* We'll handle custom style overrides for Flatpickr calendars */
.flatpickr-calendar {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1) !important;
    border-radius: 12px !important;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (min-width: 992px) and (max-width: 1200px) {
    .header-container {
        padding: 12px 15px;
    }

    .logo img {
        height: 42px;
    }

    .logo-text h2 {
        font-size: 15px !important;
    }

    .logo-text p {
        font-size: 8px !important;
        letter-spacing: 1.5px !important;
    }

    .nav-list {
        gap: 4px;
    }

    .nav-link {
        font-size: 12.5px;
        padding: 6px 4px;
    }

    .nav-link::after {
        width: calc(100% - 8px);
        left: 4px;
    }

    .header-right {
        gap: 12px;
    }

    .header-phone {
        font-size: 13px;
        gap: 4px;
    }

    .header-phone svg {
        width: 14px;
        height: 14px;
    }

    .header-book-btn {
        padding: 8px 14px !important;
        font-size: 12.5px !important;
    }
}

@media (max-width: 991px) {
    .header-container {
        padding: 15px;
        position: relative;
    }

    .hamburger {
        display: block;
        order: 3;
    }

    .logo {
        order: 1;
        margin-left: 0;
        margin-right: auto;
    }

    .header-phone {
        display: none;
    }

    .header-right {
        order: 2;
        margin-right: 15px;
    }

    .header-book-btn {
        padding: 8px 16px !important;
        font-size: 14px !important;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100%);
        background-color: #F5F5F4;
        /* Soft beige background like Pandit MB Joshi */
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 30px;
        gap: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        overflow-y: auto;
        border-top: 1px solid #DADADA;
        z-index: 999;
    }

    .nav.open {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #DADADA;
        /* Separators like Pandit MB Joshi */
    }

    .nav-link {
        display: block;
        padding: 14px 0;
        font-family: var(--font-body);
        /* Matching reference site */
        font-size: 19px;
        font-weight: 500;
        width: 100%;
    }

    .nav-link::after {
        display: none !important;
    }

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

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        transform: none;
        padding-left: 20px;
        display: none;
        /* Toggled by JS on mobile click */
        background-color: #fcfbfa;
        /* Indented lighter background */
        border-top: 1px solid #DADADA;
        width: 100%;
        padding: 5px 0;
    }

    .dropdown-menu.scrollable {
        max-height: none !important;
        overflow-y: visible !important;
    }

    .dropdown-link {
        display: block;
        padding: 12px 20px;
        font-family: var(--font-body);
        font-size: 17px;
        border-bottom: 1px solid #eef2f5;
        color: var(--text);
    }

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

    .nav-item:hover .dropdown-menu {
        display: none;
        /* Disable hover menu opening on mobile viewports */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 24px;
    }

    .hero-btns {
        justify-content: center;
    }

    .stats {
        margin-top: 0;
        padding: 40px 0 20px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 16px;
        padding: 20px 10px;
        gap: 10px;
    }

    .stat-item {
        padding: 10px;
    }

    .stat-item::after {
        display: none !important;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-section-grid {
        grid-template-columns: 1fr;
    }

    /* Subpage grid stack on mobile */
    .responsive-grid-1-1,
    .responsive-grid-1-2,
    .responsive-grid-2-1 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .responsive-grid-1-1>div,
    .responsive-grid-1-2>div,
    .responsive-grid-2-1>div {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-content,
    .hero-img-desktop,
    .about-img,
    .about-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .responsive-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hero image display on mobile */
    .hero-img-desktop {
        display: block;
        width: 100%;
        text-align: center;
        margin: 15px 0 25px 0;
        order: 1;
    }

    .hero-img-desktop img {
        max-width: 280px;
        height: auto;
        border-radius: 15px;
        box-shadow: var(--shadow-md);
        display: inline-block;
    }

    .hero-content {
        order: 2;
    }
}

@media (max-width: 767px) {
    section {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 2.25rem;
        /* ~36px */
    }

    .about-title {
        font-size: 1.75rem;
        /* ~28px */
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 30px;
        justify-content: center;
        align-items: center;
    }

    .hero-main-btn {
        width: 100% !important;
        display: inline-flex !important;
    }

    .hero-sub-btns {
        display: flex;
        width: 100%;
        gap: 10px;
    }

    .hero-whatsapp-btn,
    .hero-call-btn {
        flex: 1;
        display: inline-flex !important;
        justify-content: center;
        align-items: center;
        font-size: 14px !important;
        padding: 12px 15px !important;
        white-space: nowrap;
    }

    .google-badge-container {
        justify-content: center;
        margin: 0 auto;
    }

    .google-rating-text {
        align-items: center;
    }

    .awards-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-padding-left: 20px !important;
        scroll-padding-right: 20px !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 15px !important;
        padding: 10px 20px 20px 20px !important;
        margin-left: -20px !important;
        margin-right: -20px !important;
        scrollbar-width: none !important; /* Hide scrollbar for Firefox */
    }

    .awards-grid::-webkit-scrollbar {
        display: none !important; /* Hide scrollbar for Chrome/Safari */
    }

    .awards-grid .award-card {
        flex: 0 0 80% !important; /* Fixed width of 80% */
        width: 80% !important;
        scroll-snap-align: start !important;
        scroll-snap-stop: always !important;
        border-radius: 12px !important;
        border: 1px solid rgba(197, 160, 89, 0.15) !important;
        box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05) !important;
        background: var(--bg-white) !important;
        box-sizing: border-box !important;
    }

    .awards-grid .award-img {
        height: 280px !important;
    }

    .awards-grid .award-img img {
        padding: 5px !important;
    }

    .awards-grid .award-content {
        padding: 16px !important;
        text-align: left !important;
    }

    .awards-grid .award-title {
        font-size: 14px !important;
        font-weight: 700 !important;
        color: var(--dark) !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }

    .awards-grid .award-desc {
        display: block !important;
        font-size: 12px !important;
        color: var(--text-light) !important;
        line-height: 1.5 !important;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .testimonials-grid .testimonial-card {
        border-radius: 8px !important;
    }

    .testimonials-grid .testimonial-card-content {
        padding: 10px !important;
    }

    .testimonials-grid .testimonial-quote {
        font-size: 0.85rem !important;
        margin-bottom: 4px !important;
    }

    .testimonials-grid .testimonial-author {
        font-size: 11px !important;
    }

    .testimonials-grid .testimonial-overlay-img::after {
        width: 36px !important;
        height: 36px !important;
        background-size: 16px !important;
        background-position: center left 11px !important;
    }

    .services-grid {
        display: grid !important;
        grid-template-columns: none !important; /* Reset desktop template columns */
        grid-auto-flow: column !important;
        grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-columns: calc(47% - 6px) !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-padding-left: 20px !important;
        scroll-padding-right: 20px !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 12px !important;
        padding: 10px 20px 20px 20px !important;
        margin-left: -20px !important;
        margin-right: -20px !important;
        scrollbar-width: none !important; /* Hide scrollbar for Firefox */
    }

    .services-grid::-webkit-scrollbar {
        display: none !important; /* Hide scrollbar for Chrome/Safari */
    }

    .services-grid .service-card {
        scroll-snap-align: start !important;
        scroll-snap-stop: always !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05) !important;
        border: 1px solid rgba(197, 160, 89, 0.15) !important;
        background: var(--bg-white) !important;
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
    }

    .services-grid .service-img {
        height: 110px !important;
    }

    .services-grid .service-content {
        padding: 12px 14px !important;
        text-align: left !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        flex-grow: 1 !important;
    }

    .services-grid .service-title {
        font-size: 14px !important;
        margin-bottom: 6px !important;
        font-weight: 700 !important;
        color: var(--dark) !important;
        line-height: 1.3 !important;
    }

    .services-grid .service-desc {
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        font-size: 11.5px !important;
        color: var(--text-light) !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
    }

    .services-grid .service-actions {
        display: flex !important;
        gap: 6px !important;
        width: 100% !important;
        margin-top: auto !important;
    }

    .services-grid .service-action-btn {
        flex: 1 !important;
        height: 34px !important;
        font-size: 10px !important;
        gap: 4px !important;
        border-radius: 6px !important;
        padding: 0 4px !important;
        white-space: nowrap !important;
        letter-spacing: 0.2px !important;
    }

    .services-grid .service-action-btn svg {
        width: 12px !important;
        height: 12px !important;
        flex-shrink: 0 !important;
    }

    /* Stats Grid optimized as 2x2 grid on mobile viewports */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Stack highlights vertically */
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    /* Scaling header brand logo for mobile viewports */
    .header-container {
        padding: 10px 8px !important;
    }

    .logo {
        gap: 6px !important;
    }

    .logo img {
        height: 34px;
    }

    .logo-text h2 {
        font-size: 11.5px !important;
        line-height: 1.2;
    }

    .logo-text p {
        font-size: 7px !important;
        letter-spacing: 0.5px !important;
    }

    .header-right {
        margin-right: 8px !important;
    }

    .header-book-btn {
        padding: 6px 10px !important;
        font-size: 11.5px !important;
        white-space: nowrap !important;
    }

    /* Floating quick buttons scaling */
    .floating-buttons {
        bottom: 20px;
        left: 20px;
        gap: 8px;
    }

    .floating-btn {
        width: 40px;
        height: 40px;
    }

    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }

    .call-btn svg {
        width: 20px;
        height: 20px;
    }

    .instagram-btn svg {
        width: 20px;
        height: 20px;
    }

    .facebook-btn svg {
        width: 18px;
        height: 18px;
    }

    /* Accessible popup modal scrolling */
    .cf7-popup-overlay {
        align-items: flex-start;
        padding: 20px 10px;
        overflow-y: auto;
    }

    .cf7-popup-box {
        width: 92%;
        margin: 20px auto;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
        padding: 30px 20px;
    }

    .appointment-grid {
        grid-template-columns: 1fr;
    }

    /* Responsive footer bottom centering */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .responsive-grid-3 {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }

    .responsive-grid-3 > div {
        padding: 12px 6px !important;
        border-radius: 8px !important;
    }

    .responsive-grid-3 > div > div {
        font-size: 20px !important;
        margin-bottom: 5px !important;
    }

    .responsive-grid-3 > div > h3 {
        font-size: 11px !important;
        margin-bottom: 4px !important;
    }

    .responsive-grid-3 > div > p {
        font-size: 9px !important;
        word-break: break-all !important;
    }
}

/* ==========================================================================
   GUIDANCE & EXPERTISE GRID (ABOUT US)
   ========================================================================== */
.guidance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.guidance-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.guidance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.guidance-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.guidance-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.guidance-card:hover .guidance-img-wrap img {
    transform: scale(1.05);
}

.guidance-content {
    padding: 24px 15px;
    text-align: center;
    background-color: var(--bg-white);
}

.guidance-content h3 {
    font-family: var(--font-headings);
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

@media(max-width: 991px) {
    .guidance-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .guidance-img-wrap {
        height: 140px;
    }
}

@media(max-width: 767px) {
    .guidance-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
        margin-top: 15px !important;
    }

    .guidance-grid .guidance-card {
        border-radius: 8px !important;
    }

    .guidance-grid .guidance-img-wrap {
        height: 80px !important;
    }

    .guidance-grid .guidance-content {
        padding: 8px !important;
        text-align: center;
    }

    .guidance-grid .guidance-content h3 {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }
}

/* ==========================================================================
   ABOUT PAGE STATS CARDS
   ========================================================================== */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.about-stat-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.about-stat-icon {
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    text-transform: capitalize;
}

@media(max-width: 991px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media(max-width: 575px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .about-stat-card {
        padding: 20px 10px !important;
        border-radius: 8px !important;
    }

    .about-stat-icon {
        margin-bottom: 8px !important;
    }

    .about-stat-icon svg {
        width: 24px !important;
        height: 24px !important;
    }

    .about-stat-number {
        font-size: 20px !important;
        margin-bottom: 4px !important;
    }

    .about-stat-label {
        font-size: 11px !important;
    }

    /* Extra mobile optimization for 2x2 services grid action buttons */
    .services-grid .service-content {
        padding: 10px 10px !important;
    }

    .services-grid .service-actions {
        gap: 4px !important;
    }

    .services-grid .service-action-btn {
        font-size: 9px !important;
        gap: 3px !important;
        height: 30px !important;
        letter-spacing: 0px !important;
        border-radius: 4px !important;
    }

    .services-grid .service-action-btn svg {
        width: 10.5px !important;
        height: 10.5px !important;
    }
}

/* ==========================================================================
   ABOUT PAGE CTA BANNER
   ========================================================================== */
.about-cta-banner {
    position: relative;
    background-image: linear-gradient(rgba(189, 63, 25, 0.9), rgba(189, 63, 25, 0.9)), url('../assets/cta_bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 0;
    text-align: center;
    color: var(--bg-white);
}

.about-cta-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.about-cta-title {
    font-family: var(--font-headings);
    font-size: 40px;
    font-weight: 700;
    color: var(--bg-white);
    line-height: 1.3;
}

.about-cta-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
}

.about-cta-btn {
    background-color: var(--primary) !important;
    color: var(--bg-white) !important;
    border: none !important;
    padding: 14px 32px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
    transition: var(--transition) !important;
}

.about-cta-btn:hover {
    background-color: var(--primary-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3) !important;
}

@media(max-width: 767px) {
    .about-cta-title {
        font-size: 28px;
    }

    .about-cta-desc {
        font-size: 15px;
    }

    .about-cta-banner {
        padding: 60px 0;
    }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS SYSTEM
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Optimize mobile performance: disable scroll entry animations on mobile screens */
@media (max-width: 767px) {
    .scroll-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Base states of animation modes */
.reveal-fade {
    transform: none;
}

.reveal-slide-up {
    transform: translateY(40px);
}

.reveal-slide-down {
    transform: translateY(-40px);
}

.reveal-slide-left {
    transform: translateX(-40px);
}

.reveal-slide-right {
    transform: translateX(40px);
}

.reveal-scale-in {
    transform: scale(0.94);
}

/* Active animated state triggered by IntersectionObserver */
.scroll-reveal.active {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

/* Premium Floating and Pulsing Micro-Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Optimized for mobile GPUs: Animating transform only, avoiding continuous box-shadow redraw loops */
@keyframes pulse-bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

@keyframes pulse-bounce-call {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Subtle continuous pulse for the floating buttons */
.floating-buttons .whatsapp-btn {
    animation: pulse-bounce 3s infinite ease-in-out;
}

.floating-buttons .call-btn {
    animation: pulse-bounce-call 3s infinite ease-in-out 1.5s; /* staggered */
}

/* Premium hover transitions override */
.btn-primary, .btn-outline, .service-card, .award-card, .testimonial-card, .stat-item {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}