/* ==========================================================================
   STYLE SHEET FOR YAKSHITA BEAUTY PARLOUR & SALON
   Elegant 3-Color Gradient Theme: Champagne Gold, Rose Gold, Blush Pink
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* CSS Variables for design system */
:root {
    /* Main Color Theme - Gorgeous 3-Color Gradients */
    --color-gold-light: #f7e7ce;
    --color-gold: #D4AF37;
    --color-rose-gold: #b76e79;
    --color-pink-light: #FFF0F5;
    --color-pink: #e75480;
    --color-pink-deep: #c71585;
    --color-charcoal: #2b2d2f;
    --color-charcoal-light: #3a3d40;
    --color-white: #ffffff;
    --color-off-white: #faf6f6;
    
    /* Elegant Gradients */
    --gradient-three-color: linear-gradient(135deg, #f7e7ce 0%, #b76e79 50%, #e75480 100%);
    --gradient-pink-gold: linear-gradient(135deg, #e75480 0%, #b76e79 100%);
    --gradient-dark: linear-gradient(135deg, #2b2d2f 0%, #1a1c1e 100%);
    --gradient-soft: linear-gradient(135deg, #faf6f6 0%, #fff0f5 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Shadow and Glow effects */
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(183, 110, 121, 0.15);
    --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.15);
    --glow-gold: 0 0 15px rgba(212, 175, 55, 0.4);
    --glow-pink: 0 0 15px rgba(231, 84, 128, 0.4);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* Base resets & styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-off-white);
    color: var(--color-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-pink-light);
}
::-webkit-scrollbar-thumb {
    background: var(--gradient-pink-gold);
    border-radius: var(--radius-full);
}

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUT
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.text-gradient {
    background: var(--gradient-three-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-three-color);
    color: var(--color-white);
    box-shadow: var(--shadow-medium);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-pink-gold);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(231, 84, 128, 0.3);
}

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

.btn-secondary:hover {
    background: var(--gradient-three-color);
    color: var(--color-white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

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

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-pink);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-three-color);
    border-radius: var(--radius-full);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 240, 245, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(183, 110, 121, 0.1);
}

.navbar.scrolled {
    background: var(--color-white);
    padding: 10px 0;
    box-shadow: var(--shadow-medium);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-container {
    height: 75px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-rose-gold);
    background: var(--color-white);
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.logo-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-charcoal);
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-pink);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-charcoal);
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-pink-gold);
    transition: var(--transition-smooth);
}

.nav-item:hover {
    color: var(--color-pink);
}

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

.nav-item.active {
    color: var(--color-pink);
    font-weight: 600;
}

.nav-btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--color-charcoal);
    border-radius: 9px;
    transition: var(--transition-smooth);
}

@media (max-width: 991px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-white);
        box-shadow: var(--shadow-strong);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* ==========================================================================
   HERO BANNER
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-soft);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 240, 245, 0.95) 40%, rgba(255, 240, 245, 0.5) 100%);
    z-index: 2;
}

.hero-bg-visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    mask-image: linear-gradient(to left, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(183, 110, 121, 0.1);
    border: 1px solid rgba(183, 110, 121, 0.2);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-rose-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge span {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--color-pink);
    border-radius: var(--radius-full);
    box-shadow: var(--glow-pink);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-charcoal-light);
    margin-bottom: 40px;
}

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

@media (max-width: 991px) {
    .hero-bg-visual {
        width: 100%;
        opacity: 0.25;
        mask-image: none;
        -webkit-mask-image: none;
    }
    
    .hero-overlay {
        background: rgba(255, 240, 245, 0.9);
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

/* ==========================================================================
   HIGHLIGHTS & FEATURES SECTION
   ========================================================================== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.highlight-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    border: 1px solid rgba(183, 110, 121, 0.05);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-three-color);
    opacity: 0;
    transition: var(--transition-smooth);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

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

.highlight-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: var(--color-pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-pink);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.highlight-card:hover .highlight-icon {
    background: var(--gradient-three-color);
    color: var(--color-white);
    box-shadow: var(--glow-pink);
}

.highlight-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.highlight-desc {
    color: var(--color-charcoal-light);
    font-size: 0.95rem;
}

/* ==========================================================================
   SERVICES GRID (HOME)
   ========================================================================== */
.services-home {
    background: var(--color-white);
}

.services-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .services-grid-home {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--color-off-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    border: 1px solid rgba(183, 110, 121, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-visual-wrap {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-three-color);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.service-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--color-charcoal-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(183, 110, 121, 0.15);
    padding-top: 20px;
    margin-top: auto;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-pink);
}

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-rose-gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link::after {
    content: '→';
    transition: var(--transition-fast);
}

.service-link:hover::after {
    transform: translateX(4px);
}

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

/* ==========================================================================
   ABOUT SUMMARY WITH BANNER
   ========================================================================== */
.about-summary {
    background: var(--gradient-soft);
    position: relative;
    overflow: hidden;
}

.about-summary::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    border-radius: var(--radius-full);
    background: radial-gradient(circle, rgba(183,110,121,0.06) 0%, transparent 70%);
    z-index: 1;
}

.about-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.about-visual-group {
    position: relative;
}

.about-main-img-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 6px solid var(--color-white);
}

.about-decor-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-three-color);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    color: var(--color-white);
    max-width: 220px;
}

@media (max-width: 576px) {
    .about-decor-box {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
}

.decor-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 6px;
    display: block;
}

.decor-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-summary-content .section-title-wrap {
    text-align: left;
    margin-bottom: 30px;
}

.about-summary-content .section-title::after {
    left: 40px;
}

.about-summary-text {
    font-size: 1.05rem;
    color: var(--color-charcoal-light);
    margin-bottom: 30px;
}

.specialty-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

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

.specialty-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.specialty-bullet {
    width: 8px;
    height: 8px;
    background: var(--color-pink);
    border-radius: var(--radius-full);
}

/* ==========================================================================
   SERVICES PAGE CUSTOM
   ========================================================================== */
.services-header {
    background: var(--gradient-dark);
    padding: 160px 0 80px;
    text-align: center;
    color: var(--color-white);
}

.services-header .section-subtitle {
    color: var(--color-gold);
}

.services-header h1 {
    color: var(--color-white);
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.services-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.services-menu-wrap {
    padding: 80px 0;
}

.services-category-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(183, 110, 121, 0.2);
    background: var(--color-white);
    color: var(--color-charcoal);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--gradient-three-color);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-medium);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.menu-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(183, 110, 121, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at top right, rgba(231, 84, 128, 0.08) 0%, transparent 70%);
}

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

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.menu-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.menu-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--color-pink-light);
    color: var(--color-pink);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.menu-description {
    color: var(--color-charcoal-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dotted rgba(183, 110, 121, 0.2);
    padding-top: 16px;
}

.menu-duration {
    font-size: 0.8rem;
    color: var(--color-rose-gold);
    font-weight: 500;
}

.menu-book-btn {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-pink);
    cursor: pointer;
}

.menu-book-btn:hover {
    text-decoration: underline;
}

/* ==========================================================================
   ABOUT PAGE DETAILS
   ========================================================================== */
.salon-details-section {
    background: var(--color-white);
}

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

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

.details-visual {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    height: 480px;
}

.details-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.details-para {
    color: var(--color-charcoal-light);
    margin-bottom: 20px;
}

.experience-block {
    margin-top: 30px;
    padding: 24px;
    border-radius: var(--radius-sm);
    background: var(--gradient-soft);
    border-left: 4px solid var(--color-pink);
}

.experience-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.experience-desc {
    font-size: 0.95rem;
    color: var(--color-charcoal-light);
}

/* ==========================================================================
   TESTIMONIALS / REVIEW WORKAROUNDS
   ========================================================================== */
.reviews-section {
    background: var(--gradient-soft);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.review-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 35px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(183, 110, 121, 0.05);
    transition: var(--transition-smooth);
}

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

.stars-row {
    color: #FFC107;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: var(--color-charcoal-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background: var(--gradient-three-color);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.reviewer-info h4 {
    font-size: 1rem;
    font-weight: 600;
}

.reviewer-info p {
    font-size: 0.8rem;
    color: var(--color-rose-gold);
}

/* ==========================================================================
   CONTACT SECTION / BOOKING FORM
   ========================================================================== */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

@media (max-width: 991px) {
    .contact-section-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.contact-info-panel {
    background: var(--gradient-dark);
    border-radius: var(--radius-md);
    padding: 50px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-strong);
}

@media (max-width: 576px) {
    .contact-info-panel {
        padding: 30px;
    }
}

.contact-info-title {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-info-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.info-item-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-details h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.info-details p,
.info-details a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.info-details a:hover {
    color: var(--color-gold);
}

.social-links-row {
    display: flex;
    gap: 16px;
    margin-top: 50px;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon-btn:hover {
    background: var(--gradient-three-color);
    transform: translateY(-3px);
}

.booking-form-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 50px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(183, 110, 121, 0.05);
}

@media (max-width: 576px) {
    .booking-form-card {
        padding: 30px;
    }
}

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

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

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

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(183, 110, 121, 0.2);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
    background-color: var(--color-off-white);
}

.form-input:focus {
    border-color: var(--color-pink);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(231, 84, 128, 0.1);
}

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

.form-submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* Map Embed / Location section */
.location-section {
    background: var(--color-white);
    padding: 80px 0;
}

.map-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 4px solid var(--color-white);
    height: 400px;
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: 80px 0 30px;
    border-top: 4px solid var(--color-rose-gold);
}

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

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

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

.footer-brand-column {
    display: flex;
    flex-direction: column;
}

.footer-brand-title {
    color: var(--color-white);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-column h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

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

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-item {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition-fast);
}

.footer-link-item:hover {
    color: var(--color-pink);
    transform: translateX(4px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-row {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-row span {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   MODAL / POPUP
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.85);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-strong);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-charcoal-light);
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-pink);
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
    text-align: center;
}

.modal-text {
    color: var(--color-charcoal-light);
    text-align: center;
    margin-bottom: 24px;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: var(--shadow-strong);
    transition: var(--transition-smooth);
    font-size: 1.5rem;
    cursor: pointer;
}

.floating-btn:hover {
    transform: translateY(-5px);
}

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

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

/* General Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}
