/* 
   TMCC Premium Redesign 
   Theme: Accessible Luxury & Medical Excellence
   Palette: Deep Burgundy, Soft Rose, Clean White, Dark Charcoal
*/

/* Google Fonts loaded via <link> in HTML — DO NOT use @import (render-blocking) */

/* Font fallback metric overrides to prevent CLS */
@font-face {
    font-family: 'Playfair Display Fallback';
    src: local('Times New Roman');
    size-adjust: 115%;
    ascent-override: 90%;
    descent-override: 22%;
    line-gap-override: 0%
}

@font-face {
    font-family: 'Poppins Fallback';
    src: local('Arial');
    size-adjust: 107%;
    ascent-override: 93%;
    descent-override: 25%;
    line-gap-override: 0%
}

:root {
    --primary-color: #9B2C47;
    /* Deep Burgundy - The brand signature */
    --accent-color: #D4AF37;
    /* Subtle Gold for luxury touches */
    --secondary-color: #FDF2F5;
    /* Very soft pink/rose background */
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;
    --gradient-overlay: linear-gradient(135deg, rgba(155, 44, 71, 0.9), rgba(10, 25, 47, 0.8));

    --font-heading: 'Playfair Display', 'Playfair Display Fallback', serif;
    --font-body: 'Poppins', 'Poppins Fallback', 'Noto Color Emoji', 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(155, 44, 71, 0.15);

    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

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

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

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.15rem;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 20px auto 0;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* UI Elements */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(155, 44, 71, 0.3);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: none;
}

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

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

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

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

/* Header & Navigation — Premium Black & Gold */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding: 15px 0;
    transition: all 0.4s ease;
}

.site-header.scrolled {
    padding: 10px 0;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo:hover img {
    transform: scale(1.05) rotate(-2deg);
}

.logo h1 {
    font-size: 2rem;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #d4af37 0%, #f1d37a 50%, #b59025 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #d4af37;
    margin: 0;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 2px 15px rgba(212, 175, 55, 0.2);
}

.logo span {
    display: block;
    font-size: 0.7rem;
    font-family: var(--font-body);
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 400;
    opacity: 0.9;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e0e0e0;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    height: 3px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, #d4af37, #f0d060);
    box-shadow: 0 1px 10px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.main-nav a:not(.btn):hover,
.main-nav a:not(.btn).active {
    color: #d4af37;
}

.main-nav a:not(.btn):hover::after,
.main-nav a:not(.btn).active::after {
    transform: scaleX(1);
}

/* Premium Button in Navbar */
.main-nav .btn-primary {
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.main-nav .btn-primary:hover {
    background: #d4af37;
    color: #0a0a0a;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* Services Dropdown (Desktop) */
.has-dropdown {
    position: relative;
}

/* Invisible bridge fills gap between nav link and dropdown so hover isn't lost */
.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
}

.dropdown-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    min-width: 260px;
    padding: 15px 0;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 3px solid var(--accent-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1100;
    display: flex;
    flex-direction: column;
}

.has-dropdown>a i {
    font-size: 0.75rem;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover>a i {
    transform: rotate(180deg);
}

.dropdown-submenu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(10, 10, 10, 0.98);
}

.main-nav li:hover .dropdown-submenu,
.has-dropdown:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-submenu li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.dropdown-submenu a {
    display: block !important;
    padding: 12px 25px !important;
    text-transform: none !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    color: #e0e0e0 !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.05) !important;
    transition: all 0.3s ease !important;
}

.dropdown-submenu a::after {
    display: none !important;
    /* Hide the underline effect inside dropdown */
}

.dropdown-submenu li:last-child a {
    border-bottom: none !important;
}

.dropdown-submenu a:hover {
    background: rgba(212, 175, 55, 0.1) !important;
    color: var(--accent-color) !important;
    padding-left: 32px !important;
}

/* Active current page indicator in desktop dropdown */
.dropdown-submenu a.active {
    color: var(--accent-color) !important;
    background: rgba(212, 175, 55, 0.06) !important;
    padding-left: 25px !important;
    position: relative;
}

.dropdown-submenu a.active::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 25px;
    right: 25px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f0d060);
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
    border-radius: 2px;
}

/* Mobile Dropdown styles will be in the media query */

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: #d4af37;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-toggle:hover {
    transform: scale(1.1);
    color: #f0d060;
}

/* Hero Section */
.hero-section {
    height: 85vh;
    background-color: #1a1a1a;
    /* Reduce slightly from 100vh to show more context */
    min-height: 600px;
    background-size: cover;
    background-position: top center;
    /* Balance the framing */
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 0;
    padding-top: 80px;
    /* Offset for fixed header */
    overflow: hidden;
}

/* Hero background image (used in service pages via <img> tag) */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.hero-section.hero-fullscreen {
    height: 100vh;
    min-height: 100vh;
    background-position: top center;
}

/* Standardize mobile hero to auto/100vh to prevent content cutoff and CLS */
@media (max-width: 768px) {
    .hero-section {
        height: 100dvh !important;
        min-height: 100dvh !important;
        padding-top: 90px;
        padding-bottom: 40px;
        overflow: hidden !important;
    }

    .hero-bg-img {
        object-fit: cover !important;
        object-position: center top !important;
    }

    /* Darker on mobile for readability */
    .hero-section::before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.40) 100%) !important;
    }

    .hero-section .overlay {
        background: rgba(0, 0, 0, 0.30) !important;
    }
}

/* Active Nav State */
.main-nav a.active::after {
    width: 100%;
}

/* Gradient overlay — ensures hero text is always readable over bright images */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
}

/* Service page hero .overlay div */
.hero-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    padding-left: 0;
    min-height: 280px;
    /* Aligned with Poppins/Playfair line heights */
    /* Prevent CLS — reserve space regardless of font loading */
    contain: layout;
}

.hero-tagline {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-left: 3px solid var(--accent-color);
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.hero-content h2 {
    font-size: 3.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: left;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
    opacity: 1;
    margin-bottom: 32px;
    max-width: 580px;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}



.hero-cta {
    display: flex;
    gap: 20px;
}

/* Hero Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

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

/* Ensure overlay works within slide */
.hero-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.08) 100%);
    z-index: 1;
}

/* Update hero-content to be centered properly within slide */
.hero-slide .hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    /* Header offset */
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

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

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

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Ensure mobile responsiveness */
@media (max-width: 768px) {

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .hero-slide {
        background-position: center top;
        /* Focus on faces/top part of image for better framing on mobile */
    }
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    /* Modern rounded corners */
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-image img {
    transition: var(--transition);
}

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

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2rem;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.feature-list li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-list i {
    color: var(--primary-color);
    background: var(--secondary-color);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 0.9rem;
}

/* Services Sections */
.generic-section {
    padding: 100px 0;
}

.service-section {
    padding: 100px 0;
}

.bg-soft {
    background-color: var(--secondary-color);
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

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

.service-grid-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-grid-1 .service-card {
    display: block;
}

.service-grid-1 .service-card h2,
.service-grid-1 .service-card p,
.service-grid-1 .service-card ul {
    text-align: left;
}

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

.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(155, 44, 71, 0.1);
    border-color: rgba(155, 44, 71, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    padding-top: 0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: none;
    background: #f0f0f0;
    /* Placeholder color */
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

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

.service-card h2,
.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #C5A059;
    /* Premium Gold/Bronze */
    text-transform: capitalize;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.service-card a:hover {
    color: var(--secondary-color);
}

/* Pink Card Style - Home Page Premium Services */
.service-card-pink {
    background: #FDF2F5;
    padding: 30px 24px 28px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 4px 20px rgba(155, 44, 71, 0.07);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.service-card-pink:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(155, 44, 71, 0.13);
}

.service-card-pink .pink-card-img {
    width: 160px;
    height: 160px;
    border-radius: 14px;
    overflow: hidden;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.service-card-pink .pink-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card-pink h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1F5C4E;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.service-card-pink p {
    font-size: 0.93rem;
    line-height: 1.65;
    color: #777;
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-card-pink a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.service-card-pink a:hover {
    color: #1F5C4E;
}

/* Premium List Styles for Treatment Cards */
.premium-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    text-align: left;
}

.premium-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
    transition: all 0.3s ease;
}

.premium-list li::before {
    content: '\f058';
    /* FontAwesome check-circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #C5A059;
    /* Gold */
    font-size: 1rem;
    transition: all 0.3s ease;
}

.premium-list li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.premium-list li:hover::before {
    transform: scale(1.2);
    color: var(--primary-color);
}



/* Featured Service Layout (Image + Text) */
.featured-service {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.featured-service.reverse {
    flex-direction: row-reverse;
}

.fs-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    height: 500px;
}

.fs-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.fs-content {
    flex: 1;
}

.fs-content h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.fs-tags {
    margin-top: 25px;
}

.fs-tags span {
    display: inline-block;
    padding: 8px 18px;
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid rgba(155, 44, 71, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    transition: var(--transition);
}

.fs-tags span:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Accordion Style */
.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.accordion-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: var(--secondary-color);
}

.accordion-header h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--text-dark);
}

.accordion-body {
    padding: 30px;
    border-top: 1px solid #f0f0f0;
    color: var(--text-light);
}

/* Contact & Footer */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-section {
    background-color: #1a1a1a;
    /* Premium Dark Charcoal */
    /* background-image removed for uniform color */
    color: var(--white);
    padding: 100px 0;
}

.contact-section h2,
.contact-section h3,
.contact-section p,
.contact-section li {
    color: var(--white);
}

.contact-section h2::after {
    background-color: var(--white);
}

.contact-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* Premium Contact Card */
.contact-details-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-details-card h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-details-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    background: #fdfdfd;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(155, 44, 71, 0.1);
}

.contact-method .icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-method .details {
    display: flex;
    flex-direction: column;
}

.contact-method .details strong {
    color: var(--text-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-method .details a {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
}

.social-links-premium {
    display: flex;
    gap: 15px;
}

.social-links-premium a {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links-premium a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info-block {
    margin-bottom: 40px;
}

.contact-info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.contact-info-block p {
    font-size: 1.05rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-form-wrapper h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fdfdfd;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}

.contact-form button {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-weight: 700;
    padding: 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-form button:hover {
    background-color: #7d1f35;
    transform: translateY(-2px);
}

footer {
    padding: 0;
    margin: 0;
}

/* =========================================
   MOBILE NAVIGATION STYLES
   ========================================= */

/* Mobile toggle button */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: #d4af37;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.mobile-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #f0d060;
    border-color: #d4af37;
}

/* Mobile nav open state (controlled via class toggle) */
.main-nav.mobile-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px 0 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 2px solid #d4af37;
    animation: slideDown 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 999;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

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

.main-nav.mobile-open ul {
    flex-direction: column;
    gap: 0;
    padding: 0 24px;
}

.main-nav.mobile-open ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-nav.mobile-open ul li:last-child {
    border-bottom: none;
    margin-top: 20px;
}

.main-nav.mobile-open ul li a {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
    color: #e0e0e0;
    letter-spacing: 1px;
    text-align: center;
}

.main-nav.mobile-open ul li a:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.main-nav.mobile-open ul li a.btn {
    text-align: center;
    border-radius: 4px;
    padding: 14px 20px;
    background: #d4af37;
    color: #000;
    font-weight: 600;
    margin-top: 10px;
}

.main-nav.mobile-open ul li a.btn:hover {
    background: #b59025;
    color: #fff;
    padding-left: 20px;
    /* Reset padding shift for button */
}

/* =========================================
   RESPONSIVE: 1024px (Tablet Landscape)
   ========================================= */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-content h2 {
        font-size: 2.8rem;
    }

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

    .about-grid,
    .featured-service,
    .contact-grid,
    .location-grid,
    .service-grid-2 {
        grid-template-columns: 1fr;
    }

    .featured-service {
        gap: 40px;
    }

    .featured-service.reverse,
    .featured-service {
        flex-direction: column;
    }

    .hero-section {
        justify-content: center;
        text-align: center;
        padding-top: 60px;
    }

    .hero-content {
        padding: 0 20px;
        text-align: center;
    }

    .hero-content h2 {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .service-section,
    .generic-section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .contact-grid {
        gap: 40px;
    }
}

/* =========================================
   RESPONSIVE: 768px (Tablet Portrait)
   ========================================= */
@media (max-width: 768px) {

    /* Show mobile toggle, hide desktop nav */
    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Header adjustments */
    .header-container {
        padding: 0 16px;
    }

    .site-header {
        padding: 12px 0;
    }

    /* Hero Section */
    /* Hero Section - Restore flow on mobile to prevent cutting off content */
    /* Hero Section - Standardized flow on mobile */
    .hero-section {
        display: block;
    }

    .hero-slider,
    .hero-slide {
        position: relative !important;
        height: 100dvh !important;
        min-height: 100dvh !important;
        width: 100%;
        overflow: hidden;
        /* Changed from visible to hidden to contain content */
    }

    .hero-slide .overlay {
        height: 100dvh !important;
        min-height: 100dvh !important;
    }

    .hero-slide.active {
        opacity: 1;
        display: block;
    }

    .hero-slide:not(.active) {
        display: none;
    }

    .hero-content {
        padding: 0 20px;
        text-align: center;
        transform: none !important;
        /* Disable vertical centering transform if any */
    }

    .hero-section.hero-fullscreen {
        height: 70vh;
        min-height: 450px;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 0.875rem;
    }

    .hero-tagline {
        font-size: 0.75rem;
    }

    /* Typography */
    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    /* Grids */
    .service-grid-3 {
        grid-template-columns: 1fr;
    }

    .service-grid-2 {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-grid-1 .service-card {
        grid-template-columns: 1fr;
    }

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

    /* Featured Service */
    .fs-image {
        height: 300px;
    }

    /* Section spacing */
    .service-section,
    .generic-section,
    .about-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

    /* Cards */
    .service-card {
        padding: 30px 25px;
    }

    /* Contact section */
    .contact-section {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-top: 30px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-details-card {
        padding: 25px;
    }

    /* Fix long email overflow */
    .contact-method .details a {
        word-break: break-all;
        overflow-wrap: break-word;
        font-size: 0.95rem;
    }

    /* Location cards on contact page */
    .location-grid {
        gap: 20px;
    }

    .location-grid .service-card {
        padding: 25px 20px;
    }

    .map-placeholder {
        height: 150px !important;
    }

    /* Feature list */
    .feature-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Accordion */
    .accordion-header {
        padding: 18px 20px;
    }

    .accordion-header h3 {
        font-size: 1.05rem;
    }

    .accordion-body {
        padding: 20px;
    }

    /* Footer */
    footer .contact-grid {
        text-align: center !important;
    }

    .contact-info-block {
        margin-bottom: 20px;
    }

    /* About */
    .about-grid {
        gap: 40px;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }
}

/* =========================================
   RESPONSIVE: 480px (Mobile)
   ========================================= */
@media (max-width: 480px) {

    /* Header */
    .header-container {
        padding: 0 20px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo span {
        font-size: 0.6rem;
    }

    /* Hero */
    .hero-section {
        height: 100dvh !important;
        min-height: 100dvh !important;
        overflow: hidden;
        padding-top: 100px;
        padding-bottom: 60px;
        background-attachment: scroll;
        /* Fix for mobile bg jitter */
    }

    .hero-content {
        padding: 0 20px;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2rem;
        /* reduced from 3.8rem */
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.875rem;
        margin-bottom: 24px;
    }

    .hero-tagline {
        font-size: 0.75rem;
        padding: 6px 12px;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
        display: inline-block;
    }

    /* Hero - Disable complex animations on mobile for reliability */
    .hero-tagline,
    .hero-content h2,
    .hero-content p,
    .hero-cta,
    .animate-on-scroll {
        opacity: 1 !important;
        animation: none !important;
        transform: translateY(0) !important;
        transition: none !important;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 1rem;
    }

    /* Typography */
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 15px;
    }

    /* Container */
    .container {
        padding: 0 20px;
        max-width: 100%;
    }

    /* Sections */
    .service-section,
    .generic-section,
    .about-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
        padding-bottom: 0;
    }

    /* Cards */
    .service-card {
        padding: 30px 20px;
        margin: 0 10px;
        /* spacing from edges */
    }

    /* Contact */
    .contact-section {
        padding: 60px 0;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .social-links-premium {
        justify-content: center;
    }

    /* Accordion */
    .accordion-header {
        padding: 20px;
    }

    .accordion-header h3 {
        font-size: 1rem;
        padding-right: 15px;
    }

    .accordion-body {
        padding: 20px;
        font-size: 0.95rem;
    }

    /* About Image */
    .about-image {
        border-radius: 12px;
        height: 250px;
        /* Fixed height for consistency */
    }

    .about-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    /* Highlight cards */
    .highlight-card {
        margin-bottom: 15px;
    }

    /* Featured Service Image */
    .fs-image {
        height: 250px;
    }

    .fs-content h3 {
        font-size: 1.8rem;
    }

    /* Footer padding */
    footer .contact-section {
        padding: 50px 0;
    }
}

/* =========================================
   ANIMATIONS & MICRO-INTERACTIONS
   ========================================= */

/* Base Animation Class */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Effects */
.service-grid-3 .service-card:nth-child(2) {
    transition-delay: 0.1s;
}

.service-grid-3 .service-card:nth-child(3) {
    transition-delay: 0.2s;
}

/* Hero Animation on Load (Keyframes) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* Apply fade-in for hero elements explicitly */
.hero-tagline {
    opacity: 0;
    animation: fadeInUp 1s 0.2s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-content h2 {
    opacity: 0;
    animation: fadeInUp 1s 0.4s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-content p {
    opacity: 0;
    animation: fadeInUp 1s 0.6s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 1s 0.8s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Pulse Effect for CTA */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(155, 44, 71, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(155, 44, 71, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(155, 44, 71, 0);
    }
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.hero-cta .btn-primary {
    animation: pulse-glow 3s infinite;
}

/* Smooth Accordion Transition */
.accordion-body {
    transition: max-height 0.3s ease-out;
}

/* =========================================
   PREMIUM FOOTER — Black & Gold Theme
   ========================================= */

.premium-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    color: #c9c9c9;
    padding: 80px 0 0;
    border-top: 3px solid #d4af37;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Subtle gold diagonal accent */
.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.premium-footer .container {
    position: relative;
    z-index: 1;
}

.premium-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
    text-align: left;
}

/* Footer Brand Column */
.premium-footer .footer-brand {
    text-align: center;
}

.premium-footer .footer-brand h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #d4af37;
    margin-bottom: 10px;
    display: block;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.premium-footer .footer-brand span {
    display: block;
    font-size: 0.9rem;
    color: rgba(212, 175, 55, 0.7);
    margin-top: 5px;
    margin-bottom: 0;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.premium-footer .footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #999;
    margin-top: 20px;
    margin-bottom: 25px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Gold decorative line under brand */
.premium-footer .footer-brand::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 25px auto 0;
}

.premium-footer .footer-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.premium-footer .footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: #d4af37;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-footer .footer-socials a:hover {
    background: #d4af37;
    color: #0a0a0a;
    border-color: #d4af37;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Footer Links Columns */
.premium-footer h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-bottom: 12px;
}

.premium-footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #d4af37;
}

.premium-footer ul {
    list-style: none;
    padding: 0;
}

.premium-footer ul li {
    margin-bottom: 14px;
}

.premium-footer ul li a {
    color: #999;
    font-size: 0.9rem;
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
    /* Required for transform */
}

.premium-footer ul li a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    transform-origin: left;
    width: 10px;
    height: 1px;
    background: #d4af37;
    transition: transform 0.3s ease;
}

.premium-footer ul li a:hover {
    color: #d4af37;
    transform: translateX(10px);
}

.premium-footer ul li a:hover::before {
    transform: translateY(-50%) scaleX(1);
}

.premium-footer ul li a:hover::before {
    width: 12px;
}

/* Footer Contact Column */
.premium-footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}

.premium-footer .contact-item a {
    color: #999;
    transition: color 0.3s ease;
}

.premium-footer .contact-item a:hover {
    color: #d4af37;
}

.premium-footer .contact-item i {
    color: #d4af37;
    margin-top: 4px;
    font-size: 1rem;
}

.premium-footer .btn-directions {
    display: inline-block;
    background: transparent;
    color: #d4af37;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 15px;
    border: 1px solid #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.premium-footer .btn-directions:hover {
    background: #d4af37;
    color: #0a0a0a;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.25);
}

/* Footer Map Column */
.premium-footer .map-container {
    height: 380px;
    /* Increased height for better visibility */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    position: relative;
    background: #000;
}

.premium-footer .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    /* Premium monochrome look */
    filter: grayscale(100%) invert(90%) contrast(1.1) brightness(0.9);
    opacity: 0.85;
    transition: var(--transition);
}

.premium-footer .map-container:hover iframe {
    filter: grayscale(40%) invert(0%) contrast(1) brightness(1);
    opacity: 1;
}

/* Map Location Overlay */
.map-locations-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 5;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.location-chip {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.location-chip i {
    color: #d4af37;
    font-size: 0.8rem;
}

.location-chip:hover,
.location-chip.active {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.location-chip.active i {
    color: #000;
}

@media (max-width: 768px) {
    .premium-footer .map-container {
        height: 300px;
    }

    .map-locations-overlay {
        justify-content: center;
    }
}

/* Footer Bottom */
.premium-footer .footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 25px 0;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.2);
}

.premium-footer .footer-bottom a {
    color: #d4af37;
    margin-left: 5px;
    transition: color 0.3s ease;
}

.premium-footer .footer-bottom a:hover {
    color: #f0d060;
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .premium-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .premium-footer .footer-brand,
    .premium-footer h3,
    .premium-footer ul,
    .premium-footer p {
        text-align: center;
    }

    .premium-footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .premium-footer .contact-item {
        justify-content: center;
    }

    .premium-footer .footer-socials {
        justify-content: center;
    }

    .premium-footer {
        padding: 60px 0 0;
    }

    .premium-footer h3 {
        margin-bottom: 20px;
    }

    .premium-footer ul li a:hover {
        padding-left: 0;
    }

    .premium-footer ul li a::before {
        display: none;
    }

    /* Mobile Nav Dropdown */
    .has-dropdown>a i {
        display: none;
    }

    .main-nav.mobile-open .has-dropdown>a::after {
        content: '\f107';
        /* fa-chevron-down */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: 8px;
        font-size: 0.8rem;
        transition: transform 0.3s ease;
        display: inline-block;
        position: static;
        width: auto;
        height: auto;
        transform: none;
        background: none;
        box-shadow: none;
    }

    .main-nav.mobile-open .has-dropdown.submenu-open>a::after {
        transform: rotate(180deg);
    }

    .main-nav.mobile-open .dropdown-submenu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        /* Controlled by JS */
        background: rgba(20, 20, 20, 0.5);
        min-width: 100%;
        box-shadow: none;
        border: none;
        padding: 5px 0;
        margin-top: 10px;
        border-radius: 4px;
        backdrop-filter: none;
    }

    .main-nav.mobile-open .dropdown-submenu a {
        padding: 12px 20px !important;
        font-size: 0.85rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        text-align: center !important;
    }

    .main-nav.mobile-open .dropdown-submenu a:hover {
        padding: 12px 20px !important;
        background: rgba(212, 175, 55, 0.1) !important;
    }

    /* Ensure dropdown items are always centered on mobile regardless of mobile-open state */
    .dropdown-submenu {
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
    }

    .dropdown-submenu li {
        text-align: center !important;
        width: 100% !important;
    }

    .dropdown-submenu a {
        text-align: center !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        justify-content: center !important;
    }

    .dropdown-submenu a:hover {
        padding-left: 16px !important;
    }
}

/* Google Map Placeholder */
.map-placeholder {
    width: 100%;
    height: 450px;
    background-image: url('assets/images/map-placeholder.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    /* Optional rounded corners */
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    /* Slight overlay */
    transition: background 0.3s;
}

.map-placeholder:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.btn-load-map {
    position: relative;
    z-index: 2;
    padding: 12px 24px;
    background-color: var(--primary-color, #cca43b);
    /* Fallback or var */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, background-color 0.2s;
}

.btn-load-map:hover {
    transform: translateY(-2px);
    background-color: #b89335;
    /* Darker shade */
}

/* =========================================
   TRUST SIGNALS BAR
   ========================================= */
.trust-bar {
    background: linear-gradient(135deg, #9B2C47 0%, #7a1f38 100%);
    color: #fff;
    padding: 14px 0;
    text-align: center;
    border-bottom: 2px solid rgba(212, 175, 55, 0.4);
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.trust-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.trust-item .trust-icon {
    font-size: 1.1rem;
    color: #D4AF37;
}

.trust-item .trust-stars {
    color: #FFD700;
    font-size: 1rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .trust-bar-inner {
        flex-direction: column;
        gap: 4px;
    }

    .trust-item {
        border-right: none !important;
        padding: 4px 16px;
    }
}

/* =========================================
   SERVICE CONTENT SECTION IMAGES
   ========================================= */
.service-images-row {
    display: flex;
    gap: 24px;
    margin: 40px 0;
    justify-content: center;
}

.service-images-row img {
    width: calc(50% - 12px);
    max-width: 560px;
    border-radius: 12px;
    object-fit: cover;
    height: 320px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-images-row.single img {
    width: 100%;
    max-width: 860px;
    height: 360px;
}

@media (max-width: 768px) {
    .service-images-row {
        flex-direction: column;
    }

    .service-images-row img {
        width: 100%;
        max-width: 100%;
        height: 220px;
    }

    .service-images-row.single img {
        height: 220px;
    }
}

/* =========================================
   GOOGLE REVIEWS SECTION
   ========================================= */
.google-reviews-section {
    background: var(--secondary-color);
    padding: 80px 0;
}

.google-reviews-section .section-header {
    margin-bottom: 50px;
}

.google-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.google-g-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    /* Google G colored text */
    background: linear-gradient(135deg, #4285F4, #EA4335, #FBBC05, #34A853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 2px solid #e0e0e0;
}

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

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(155, 44, 71, 0.12);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9B2C47, #D4AF37);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.review-card-meta {
    flex: 1;
}

.review-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.review-stars {
    color: #FBBC05;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #555;
    background: #f1f3f4;
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 3px;
    font-weight: 500;
}

.google-badge .g-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4 25%, #EA4335 50%, #FBBC05 75%, #34A853 100%);
    flex-shrink: 0;
}

.review-text {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
}

.review-text::before {
    content: '\201C';
    font-size: 1.5rem;
    color: var(--primary-color);
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 2px;
}

.review-text::after {
    content: '\201D';
    font-size: 1.5rem;
    color: var(--primary-color);
    line-height: 0;
    vertical-align: -0.4em;
    margin-left: 2px;
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* =========================================
   FAQ SECTION (SERVICE PAGES)
   ========================================= */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-section .section-header {
    margin-bottom: 50px;
}

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

.faq-item {
    border: 1px solid rgba(155, 44, 71, 0.15);
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item.open {
    box-shadow: 0 4px 20px rgba(155, 44, 71, 0.12);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    background: #fff;
    transition: background 0.2s ease;
    gap: 12px;
}

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

.faq-question h3 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
    line-height: 1;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: var(--accent-color);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text-light);
    border-top: 1px solid rgba(155, 44, 71, 0.1);
    padding-top: 16px;
}

.faq-item.open .faq-answer {
    display: block;
}

/* =========================================
   BOTTOM CTA SECTION
   ========================================= */
.bottom-cta-section {
    background: linear-gradient(135deg, #9B2C47 0%, #7a1f38 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bottom-cta-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
}

.bottom-cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.bottom-cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.bottom-cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.bottom-cta-section .btn-cta-white {
    display: inline-block;
    background: #fff;
    color: var(--primary-color);
    padding: 16px 44px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.bottom-cta-section .btn-cta-white:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .bottom-cta-section h2 {
        font-size: 1.8rem;
    }

    .bottom-cta-section p {
        font-size: 0.95rem;
    }
}

/* =========================================
   FLOATING WHATSAPP & CALL BUTTONS
   ========================================= */
.floating-buttons {
    position: fixed;
    bottom: 28px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 9999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.float-btn:hover {
    transform: scale(1.12) translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
    color: #fff;
}

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

.float-btn.call {
    background: #D4AF37;
    /* TMCC Gold */
}

.float-btn i {
    font-size: 1.6rem;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.float-btn.whatsapp i {
    font-size: 2.1rem;
    /* Larger as requested */
}

/* Tooltip labels */
.float-btn::before {
    content: attr(data-label);
    position: absolute;
    right: 68px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-family: var(--font-body);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.float-btn:hover::before {
    opacity: 1;
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 20px;
        right: 16px;
        gap: 10px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* =========================================
   FOOTER QUICK LINKS COLUMN
   ========================================= */
.footer-quick-links h3 {
    color: #D4AF37;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-quick-links ul li {
    margin-bottom: 8px;
}

.footer-quick-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.footer-quick-links ul li a:hover {
    color: #D4AF37;
}

/* =========================================
   404 PAGE
   ========================================= */
.not-found-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    background: var(--secondary-color);
}

.not-found-content .error-code {
    font-size: 8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.15;
    position: relative;
}

.not-found-content .error-code::after {
    content: '404';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.not-found-content h1 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.not-found-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.not-found-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================
   PROBLEMS SECTION
   ========================================= */
.problems-section {
    padding: 80px 0;
    background: #fff;
}

.problems-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problems-content {
    max-width: 550px;
}

.problems-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.problems-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-dark);
}

.problems-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.problems-image img {
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .problems-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .problems-content .section-header {
        text-align: center !important;
    }

    .problems-list {
        text-align: left;
    }

    .problems-image {
        min-height: 350px;
    }
}

@media (max-width: 600px) {
    .problems-list {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   REAL RESULTS SECTION
   ========================================= */
.results-section {
    padding: 80px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.result-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.result-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f8f8f8;
}

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

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

.result-label {
    position: absolute;
    bottom: 15px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
}

.before-label {
    left: 15px;
}

.after-label {
    right: 15px;
    background: var(--primary-color);
}

.result-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.result-info {
    padding: 24px;
    text-align: center;
}

.result-info h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.result-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

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

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}
/* =========================================
   BOOK NOW CTA & BOOKING FORM
   ========================================= */

/* Book Now CTA — above FAQ */
.book-now-cta {
    background: linear-gradient(135deg, #9B2C47 0%, #6d1e32 100%);
    padding: 60px 0;
    text-align: center;
}

.book-now-cta h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 16px;
}

.book-now-cta p {
    color: rgba(255,255,255,0.88);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 30px;
    line-height: 1.75;
}

.book-now-cta .btn-book {
    display: inline-block;
    background: #D4AF37;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 16px 44px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}

.book-now-cta .btn-book:hover {
    background: #f0c93a;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212,175,55,0.5);
}

/* Booking Form — below FAQ */
.booking-form-section {
    background: #fff;
    padding: 80px 0;
}

.booking-form-section .section-header {
    margin-bottom: 48px;
}

.booking-form {
    max-width: 860px;
    margin: 0 auto;
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 48px 44px;
    box-shadow: 0 8px 40px rgba(155,44,71,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 1.5px solid #e0cdd4;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: #fff;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(155,44,71,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    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='%239B2C47' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.btn-form-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 8px;
}

.btn-form-submit:hover {
    background: #7d2039;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-form {
        padding: 32px 24px;
    }

    .book-now-cta h2 {
        font-size: 1.5rem;
    }
}

/* =========================================
   PREMIUM CONTACT PAGE
   ========================================= */

/* Hero — no image, dark gradient */
.contact-hero-premium {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0f 50%, #2c1020 100%);
    padding: 160px 0 80px;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.contact-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-tagline {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4AF37;
    border: 1px solid rgba(212,175,55,0.4);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.contact-hero-text h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-hero-text p {
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-hero-badges {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-badge {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 14px;
    padding: 20px 24px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.contact-badge:hover {
    background: rgba(212,175,55,0.08);
    border-color: rgba(212,175,55,0.35);
}

.contact-badge i {
    font-size: 1.3rem;
    color: #D4AF37;
    width: 24px;
    flex-shrink: 0;
}

.contact-badge .badge-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 3px;
}

.contact-badge a,
.contact-badge span {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
}

.contact-badge a:hover {
    color: #D4AF37;
}

/* Premium Contact Form Section */
.premium-contact-section {
    background: #f8f3f5;
    padding: 90px 0;
}

.premium-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}

/* Left Info Panel */
.contact-info-panel {
    background: #fff;
    border-radius: 20px;
    padding: 44px 36px;
    box-shadow: 0 8px 40px rgba(155,44,71,0.07);
    position: sticky;
    top: 100px;
}

.contact-info-panel h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.contact-why-list {
    list-style: none;
    padding: 0;
    margin-bottom: 36px;
}

.contact-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.92rem;
    color: var(--text-dark);
    border-bottom: 1px solid #f0e8ec;
}

.contact-why-list li:last-child {
    border-bottom: none;
}

.contact-why-list li i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-branches h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.branch-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}

.branch-item i {
    color: #D4AF37;
    margin-top: 4px;
    flex-shrink: 0;
}

.branch-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.branch-item span {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-socials {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #f0e8ec;
}

.contact-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.contact-socials a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Right Form Panel */
.contact-form-panel {
    background: #fff;
    border-radius: 20px;
    padding: 48px 44px;
    box-shadow: 0 8px 40px rgba(155,44,71,0.07);
}

.form-panel-header {
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--secondary-color);
}

.form-panel-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-panel-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.premium-contact-form .pf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.premium-contact-form .pf-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.premium-contact-form .pf-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.premium-contact-form .pf-group label i {
    color: var(--primary-color);
    font-size: 0.78rem;
}

.premium-contact-form .pf-group label span {
    color: var(--primary-color);
    font-size: 1rem;
}

.premium-contact-form input,
.premium-contact-form select,
.premium-contact-form textarea {
    padding: 14px 18px;
    border: 1.5px solid #e8d8de;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: var(--text-dark);
    background: #fdfafa;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.premium-contact-form input:focus,
.premium-contact-form select:focus,
.premium-contact-form textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(155,44,71,0.08);
}

.premium-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.premium-contact-form select {
    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='%239B2C47' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-color: #fdfafa;
    padding-right: 44px;
    cursor: pointer;
}

.pf-submit {
    width: 100%;
    padding: 17px;
    background: linear-gradient(135deg, #9B2C47 0%, #7d2039 100%);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(155,44,71,0.3);
    margin-top: 8px;
}

.pf-submit:hover {
    background: linear-gradient(135deg, #b33356 0%, #9B2C47 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(155,44,71,0.4);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-note i {
    color: #4caf50;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-hero-inner,
    .premium-contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        position: static;
    }

    .contact-hero-premium {
        padding: 130px 0 60px;
    }

    .contact-hero-text h1 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .premium-contact-form .pf-row {
        grid-template-columns: 1fr;
    }

    .contact-form-panel {
        padding: 32px 24px;
    }

    .contact-info-panel {
        padding: 32px 24px;
    }
}
