:root {
    /* Brand Colors */
    --primary: #FD1C71;
    --primary-glow: rgba(253, 28, 113, 0.4);
    --secondary: #9c27b0;
    --gradient-main: linear-gradient(135deg, #FD1C71 0%, #9c27b0 100%);

    /* Dark Theme (Default) */
    --background: #050506;
    --surface: #0d0d10;
    --surface-variant: #16161c;
    --glass-bg: rgba(13, 13, 16, 0.85);
    --on-background: #ffffff;
    --on-surface: #f0f0f0;
    --on-surface-variant: #a0a0b0;
    --glass-border: rgba(255, 255, 255, 0.08);
    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    --ambient-opacity: 0.05;

    /* Spacing & Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --container-width: 1300px;
}

.hidden {
    display: none !important;
}

[data-theme="light"] {
    --background: #FAFAFC;
    /* Softer ivory/white */
    --surface: #ffffff;
    --surface-variant: #f0f0f5;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --on-background: #1E1E24;
    /* Soft charcoal instead of black */
    --on-surface: #2D2D35;
    --on-surface-variant: #6B6B7B;
    --glass-border: rgba(0, 0, 0, 0.05);
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    --ambient-opacity: 0.08;
    /* Slightly more visible on light */
    --primary-glow: rgba(253, 29, 114, 0.15);
}

/* Update ambient colors for light mode to be more pastel/soft */
[data-theme="light"] body::before {
    background: #ff75a0;
}

[data-theme="light"] body::after {
    background: #c285d1;
}

[data-theme="light"] .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .hero {
    background-color: var(--background);
    background-image:
        radial-gradient(circle at 20% 30%, rgba(253, 29, 114, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(156, 39, 176, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

[data-theme="light"] .hero-review-badge {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .hero-review-badge .badge-text {
    color: var(--on-background);
}

[data-theme="light"] .hero-content-left h1 {
    color: var(--on-background);
}

[data-theme="light"] .h-stat-item strong {
    color: var(--on-background);
}

[data-theme="light"] .btn-outline {
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--on-background);
}

[data-theme="light"] .floating-label {
    background: rgba(255, 255, 255, 0.8);
    color: var(--on-background);
    border-color: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .floating-info-card.card-bottom {
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .insta-meta h3 {
    color: var(--on-background);
}

[data-theme="light"] .cta-text h2 {
    color: var(--on-background);
}

[data-theme="light"] .cta-text p {
    color: var(--on-surface-variant);
}

[data-theme="light"] .cta-content {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: var(--card-shadow);
}

[data-theme="light"] .nav-links a {
    color: rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .nav-links a:hover {
    color: var(--primary);
}

[data-theme="light"] .section-title {
    color: var(--on-background);
}

[data-theme="light"] .subtitle,
[data-theme="light"] .section-description {
    color: var(--on-surface-variant);
}

[data-theme="light"] .pricing-card,
[data-theme="light"] .service-card,
[data-theme="light"] .package-card,
[data-theme="light"] .contact-info-card,
[data-theme="light"] .highlight-card {
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--card-shadow);
}

[data-theme="light"] .service-name,
[data-theme="light"] .pricing-list li .service-name {
    color: var(--on-surface);
}

[data-theme="light"] .pricing-list li {
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

/* Base style fixes for theme awareness */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--on-background);
    transition: color 0.3s ease;
}

p,
span,
li {
    color: var(--on-surface-variant);
    transition: color 0.3s ease;
}

.section-title {
    color: var(--on-background) !important;
}

[data-theme="light"] .intro-text .lead-text {
    color: var(--on-background);
}

[data-theme="light"] .stat-item span {
    color: var(--on-surface-variant);
}

[data-theme="light"] .intro-stats,
[data-theme="light"] .card-meta,
[data-theme="light"] .contact-info-card,
[data-theme="light"] .phone-item {
    border-color: var(--glass-border);
}

[data-theme="light"] .provider-badge {
    background: var(--surface-variant);
    color: var(--on-surface);
}

[data-theme="light"] .service-name {
    color: var(--on-background);
}

[data-theme="light"] .pricing-header h3,
[data-theme="light"] .pricing-header span {
    color: var(--on-background);
}

[data-theme="light"] .price-note {
    color: var(--on-surface-variant);
}

[data-theme="light"] .package-card h3 {
    color: var(--on-background);
}

[data-theme="light"] .card-content {
    color: var(--on-surface-variant);
}

/* Global Ambient Background Enhancement */
body::before,
body::after {
    content: '';
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: var(--ambient-opacity);
    transition: opacity 0.5s ease;
}

body::before {
    top: -10%;
    right: -10%;
    background: var(--primary);
}

body::after {
    bottom: -10%;
    left: -10%;
    background: var(--secondary);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    color: var(--on-background);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Unified Section Header Style */
.section-header {
    text-align: center;
    margin-bottom: 2.2rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    background: rgba(253, 28, 113, 0.1);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(253, 28, 113, 0.2);
}

.section-title {
    font-size: clamp(24px, 5vw, 32px);
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

.new-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--primary);
    color: #fff;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 10px;
    line-height: 1.4;
    vertical-align: middle;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #fff;
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(253, 29, 114, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Removed underline */
.section-title::after {
    display: none;
}

/* ... existing styles ... */

.package-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.5px;
    padding-right: 2rem;
    /* Avoid overlap if title is long */
}

/* ... existing styles ... */

.packages-section .section-title span {
    color: #fff;
    display: block;
    font-size: 4rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
    background: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
        /* 20px consistent margin on mobile */
    }
}

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

/* Header & Navigation */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.6rem 0;
    background: #000;
    /* Solid black header */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#main-header.scrolled {
    padding: 0.8rem 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(253, 28, 113, 0.2);
}

nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    /* More horizontal padding */
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    text-transform: lowercase;
    transition: all 0.3s ease;
}

.logo-link {
    text-decoration: none;
}

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

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.8rem;
    /* More spacing between links */
    margin: 0 auto;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 25px;
    /* Modern short underline */
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Invert logo if needed - though we want white logo on black header */
.logo-img {
    height: 40px;
}

.logo-img-footer {
    height: 38px;
    margin-bottom: 1.5rem;
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--on-background);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.theme-toggle .light-icon {
    display: none;
}

[data-theme="light"] .theme-toggle .dark-icon {
    display: none;
}

[data-theme="light"] .theme-toggle .light-icon {
    display: block;
}

/* Invert logo in light mode */
[data-theme="light"] .logo-img,
[data-theme="light"] .logo-img-footer {
    filter: brightness(0);
    /* Make white logo black */
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.7rem 1.6rem !important;
    border-radius: 50px;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 20px rgba(253, 29, 114, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-cta:hover {
    transform: translateY(-3px);
    background: #ff3385;
    box-shadow: 0 12px 30px rgba(253, 29, 114, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1100;
    transition: all 0.3s ease;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--on-background);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.mobile-menu-btn.active .bar-1 {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active .bar-2 {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-btn.active .bar-3 {
    transform: translateY(-9px) rotate(-45deg);
}


/* Hero Section - Redesigned Atmospheric Background */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #000;
    background-image: url('./assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0 100px 0;
}

/* Sophisticated Multi-Gradient Overlays */
.hero-overlay {
    position: absolute;
    inset: 0;
    /* Stronger dark overlay from left for better text readability */
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.3) 60%, transparent 100%),
        linear-gradient(0deg, #050506 0%, rgba(5, 5, 6, 0.6) 20%, transparent 50%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

@media (min-width: 1800px) {
    .hero-content {
        max-width: 950px;
    }
}

/* Hero Review Badge */
.hero-review-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    width: fit-content;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-review-badge img {
    width: 24px;
    height: 24px;
}

.badge-text {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
}

.star-icon {
    width: 16px;
    height: 16px;
    fill: #FFD700;
    color: #FFD700;
}

.hero-content h1 {
    font-size: clamp(36px, 5.5vw, 56px);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 850;
    letter-spacing: -1.2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
    color: var(--primary);
    display: block;
    margin-top: 0.5rem;
}

.hero-content .subtitle {
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.5;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-stats-row {
    display: flex;
    gap: 3.5rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.h-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.h-stat-item strong {
    font-size: clamp(2.2rem, 2.8vw, 3rem);
    color: #fff;
    font-weight: 850;
    line-height: 1;
}

.h-stat-item span {
    font-size: clamp(0.75rem, 0.8vw, 0.85rem);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 10;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

@media (max-height: 750px) {
    .hero-scroll-indicator {
        display: none;
    }
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
    0% {
        transform: scaleY(0.7);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    100% {
        transform: scaleY(0.7);
        transform-origin: top;
    }
}

/* Update subsequent section transition */
.info-highlights {
    background: #050506;
    /* Match the hero bottom gradient */
    position: relative;
    z-index: 20;
    padding-top: 4rem;
}

/* Mobile Responsiveness Updates */
@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
        padding: 100px 0 60px 0;
    }

    .hero-container {
        padding: 0 1.25rem;
    }

    .hero-overlay {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 100%);
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-review-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats-row {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
        /* Allow wrapping on small screens */
    }
}

@media (max-width: 480px) {
    .h-stat-item strong {
        font-size: 1.8rem;
    }

    .h-stat-item span {
        font-size: 0.75rem;
    }
}

.main-visual-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 0.85;
    border-radius: 48px;
    overflow: visible;
    /* To allow floating cards to overflow */
}

.main-visual-frame>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Floating Elements */
.floating-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.7rem 1.2rem;
    border-radius: 100px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 5;
    animation: float 5s ease-in-out infinite;
}

.floating-label i {
    color: var(--primary);
    width: 18px;
    height: 18px;
}

.label-1 {
    top: 15%;
    left: -12%;
    animation-delay: 0s;
}

.label-2 {
    top: 40%;
    left: -18%;
    animation-delay: -1.5s;
}

.floating-info-card {
    position: absolute;
    background: #fff;
    padding: 1.5rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 140px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 6;
    animation: float 6s ease-in-out infinite;
}

.floating-info-card strong {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 800;
    line-height: 1;
}

.floating-info-card span {
    font-size: 0.8rem;
    color: #333;
    font-weight: 600;
}

.card-top {
    top: 25%;
    right: -12%;
    animation-delay: -2.5s;
    background: var(--primary);
}

.card-top strong {
    color: #fff;
}

.card-top span {
    color: rgba(255, 255, 255, 0.8);
}

.card-bottom {
    bottom: 8%;
    right: -15%;
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        padding-top: 4rem;
        text-align: center;
    }

    .hero-content-left {
        align-items: center;
        max-width: 100%;
    }

    .hero-review-badge,
    .hero-stats-row {
        justify-content: center;
    }

    .hero-content-right {
        margin-top: 6rem;
    }
}

.contact-card-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.contact-card-item .icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card-item .label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--on-surface-variant);
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.contact-card-item .value {
    display: block;
    font-size: 1.3rem;
    /* Large phone number */
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    line-height: 1.2;
}

.contact-card-item p.value {
    font-size: 1rem;
    /* Smaller address */
    color: #eee;
    font-weight: 500;
}

.hero-contact-card .divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
    width: 100%;
}


/* Buttons */
.btn {
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(253, 29, 114, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 29, 114, 0.5);
    background-color: #ff3385;
    /* Slightly lighter on hover */
}

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

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

/* CTA Strip Section */
.cta-strip {
    padding: 6rem 0;
    background: var(--background);
    position: relative;
}

.cta-content {
    background: linear-gradient(135deg, rgba(253, 29, 114, 0.15) 0%, rgba(253, 29, 114, 0.05) 100%);
    border: 1px solid rgba(253, 29, 114, 0.3);
    border-radius: 30px;
    padding: 2.2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(253, 29, 114, 0.2), transparent 50%);
    pointer-events: none;
}

.cta-text {
    z-index: 1;
    max-width: 60%;
}

.cta-text h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    font-weight: 800;
}

.cta-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.cta-content .btn {
    z-index: 1;
    white-space: nowrap;
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
    background: var(--primary);
    box-shadow: 0 10px 30px rgba(253, 29, 114, 0.3);
}

.cta-content .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(253, 29, 114, 0.5);
}

@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }

    .cta-text {
        max-width: 100%;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }
}

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

.intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    /* More space for the team image */
    gap: 4rem;
    align-items: center;
}

.intro-text .section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    /* Slightly smaller for better flow */
    line-height: 1.2;
    max-width: 100%;
}

.intro-text {
    text-align: left;
}

.intro-text .section-header {
    text-align: left;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}



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



.intro-text .lead-text {
    font-size: 1.15rem;
    color: #fff;
    /* Brighter for readability */
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.8;
    max-width: 90%;
}

.intro-text p {
    color: var(--on-surface-variant);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* very subtle line */
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 2.2rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-item span {
    font-size: 0.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    opacity: 0.8;
}

.intro-image-wrapper {
    position: relative;
    padding: 2rem;
    /* Give space for offset decoration */
}

.image-frame {
    position: relative;
    z-index: 10;
    border-radius: 40px;
    /* More rounded */
    overflow: hidden;
    /* No shadow/border for flat look */
    background: #222;
    /* Placeholder bg */
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 40px;
    z-index: 0;
    opacity: 0.05;
    /* Subtle block */
    transform: translate(20px, -20px);
    /* Specific offset */
    /* Add a second decoration for 'interesting layout' */
}

.image-decoration::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
}

@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-text {
        text-align: center;
        order: 1;
    }

    .intro-text .section-header {
        align-items: center;
        text-align: center;
    }

    .intro-image-wrapper {
        order: 2;
        padding: 1rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .intro-stats {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
}

/* Services (Replaced by Packages) - Retaining minimal styles just in case, but focusing on new Packages styling */
.services {
    padding: 4rem 0;
    background: var(--surface);
}

/* Packages Section (New) */
.packages-section {
    padding: 4rem 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

/* Decorative background blur for the section */
.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(253, 29, 114, 0.08) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.packages-section .container {
    position: relative;
    z-index: 1;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 2rem;
}

@media (max-width: 1100px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.package-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    height: 100%;
    cursor: pointer;
    text-decoration: none !important;
}

.package-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(253, 28, 113, 0.1);
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    flex-grow: 1;
}

.package-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.8rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.package-card:hover h3 {
    color: var(--primary);
}

.package-card .description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ── Provider Dropdown ── */
.provider-dropdown-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 100;
}

.provider-dropdown {
    position: relative;
    width: 420px;
    max-width: 100%;
}

.provider-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.4rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    cursor: pointer;
    user-select: none;
    backdrop-filter: blur(12px);
    transition: border-color 0.3s ease, background 0.3s ease;
    gap: 1rem;
}

.provider-dropdown-trigger:hover,
.provider-dropdown.open .provider-dropdown-trigger {
    border-color: var(--primary);
    background: rgba(253, 29, 114, 0.06);
}

.dropdown-selected {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex: 1;
    min-width: 0;
}

.dropdown-avatar-wrap {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(253, 29, 114, 0.5);
    background: rgba(253, 29, 114, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-all-icon {
    color: var(--primary);
    font-size: 1.2rem;
    line-height: 1;
}

.dropdown-selected-name {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-chevron {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.provider-dropdown.open .dropdown-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.provider-dropdown-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(18, 8, 15, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    list-style: none;
    padding: 0.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(253, 29, 114, 0.1);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 200;
}

.provider-dropdown.open .provider-dropdown-list {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.provider-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.provider-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.provider-dropdown-item.active {
    background: rgba(253, 29, 114, 0.12);
    border: 1px solid rgba(253, 29, 114, 0.25);
}

.dropdown-item-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dropdown-item-info strong {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-item-info span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
    margin-top: 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Service Grid Container ── */
.services-container {
    margin-top: 2rem;
    padding-bottom: 2rem;
}

.provider-group {
    display: block;
    width: 100%;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.provider-group.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

/* ── Reviews Section ── */
.reviews-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.01);
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    width: fit-content;
    margin: 1rem auto 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.google-badge span {
    font-weight: 600;
    font-size: 0.9rem;
}

.reviews-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
    overflow: hidden;
    padding: 1rem 0;
}

.reviews-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    touch-action: pan-y;
}

.review-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 1rem;
    opacity: 0.3;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.review-slide.active {
    opacity: 1;
    transform: scale(1);
}

.reviews-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.reviews-arrow {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(253, 28, 113, 0.4);
}

.reviews-dots {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.review-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.review-dot.active {
    background: var(--primary);
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(253, 28, 113, 0.4);
}

@media (max-width: 768px) {
    .reviews-slider-controls {
        gap: 1rem;
    }

    .reviews-arrow {
        width: 40px;
        height: 40px;
    }
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.stars {
    color: #fbbc05;
    letter-spacing: 2px;
}

.review-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.review-text {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
}

.author-info strong {
    display: block;
    font-size: 1rem;
    color: #fff;
}

.author-info span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.center-cta {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}



/* Filtering Logic Styles */
.package-card {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

@media (max-width: 580px) {
    .provider-dropdown {
        width: 100%;
    }
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
    gap: 1rem;
}

.btn-more {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
    border-radius: 50px;
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(253, 28, 113, 0.3);
}

.btn-more:hover {
    background: #ff3385;
    border-color: #ff3385;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(253, 28, 113, 0.4);
}

.meta-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #fff;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(253, 28, 113, 0.3);
    z-index: 10;
}

.price-badge span {
    color: #fff !important;
}

.price-badge i {
    display: none;
}


/* Bundled Packages */
.bundles-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 1) 0%, rgba(30, 15, 25, 1) 100%);
    position: relative;
    overflow: hidden;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.bundle-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    display: flex;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bundle-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(255, 51, 133, 0.15);
}

.bundle-image {
    flex: 1;
    min-width: 45%;
    position: relative;
}

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

.bundle-content {
    flex: 1.2;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bundle-tag {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bundle-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
}

.bundle-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.bundle-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.bundle-price {
    display: flex;
    flex-direction: column;
}

.old-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

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

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

    .bundle-card {
        flex-direction: column;
    }

    .bundle-image {
        height: 250px;
        min-width: 100%;
    }
}

.package-card:hover .price-badge {
    padding-right: 2rem;
    background: #ff3385;
}

/* Provider Badge - Dark/Outlined */
.provider-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--on-surface);
    padding: 0.3rem 1rem 0.3rem 0.3rem;
    gap: 0.8rem;
}

.provider-photo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(253, 29, 114, 0.3);
}

/* Pricing Carousel Section */
.pricing {
    padding: 4rem 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

/* Pricing Grid Layout */
.pricing-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    /* Container handles padding now */
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    height: 100%;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.pricing-card:hover {
    border-color: rgba(253, 29, 114, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.pricing-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.provider-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
    background: var(--surface-variant);
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.2rem;
}

.pricing-header h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.pricing-header span {
    font-size: 0.85rem;
    color: var(--on-surface-variant);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

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

.service-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.service-price {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

/* Nav Buttons */
.pricing-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(253, 29, 114, 0.1);
    border: 1px solid rgba(253, 29, 114, 0.3);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.pricing-nav-btn:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(253, 29, 114, 0.4);
}

.pricing-nav-btn.prev {
    left: 0;
}

.pricing-nav-btn.next {
    right: 0;
}

/* Pricing Table Styles */
.pricing-table-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.pricing-table thead {
    background: linear-gradient(135deg, rgba(253, 28, 113, 0.15) 0%, rgba(253, 28, 113, 0.05) 100%);
    border-bottom: 2px solid var(--primary);
}

.pricing-table thead th {
    padding: 1.5rem 2rem;
    text-align: left;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.pricing-table thead th.service-column {
    width: 45%;
}

.pricing-table thead th.provider-column {
    width: 30%;
}

.pricing-table thead th.price-column {
    width: 25%;
    text-align: right;
}

.pricing-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.pricing-table tbody tr:hover:not(.category-header):not(.note-row) {
    background: rgba(253, 28, 113, 0.05);
}

.pricing-table tbody td {
    padding: 1.2rem 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-table tbody td.price {
    text-align: right;
    font-weight: 700;
    color: #fff;
    font-size: 1.05rem;
}

.service-desc {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin-top: 0.3rem;
    line-height: 1.4;
}

.category-header {
    background: rgba(255, 255, 255, 0.03) !important;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.category-header:first-child {
    border-top: none;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.provider-avatar-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    object-fit: cover;
}

.category-title div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.category-title strong {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
}

.category-title span {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.note-row {
    background: rgba(253, 28, 113, 0.05) !important;
}

.note-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    padding: 1rem 2rem !important;
}

/* Responsive Table */
@media (max-width: 992px) {

    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 1rem 1.5rem;
    }

    .pricing-table thead th.provider-column {
        display: none;
    }

    .pricing-table tbody td:nth-child(3) {
        display: none;
    }
}

@media (max-width: 768px) {
    .pricing-table-wrapper {
        border-radius: 16px;
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 0.8rem 1rem;
    }

    .provider-avatar-small {
        width: 40px;
        height: 40px;
    }

    .category-title {
        gap: 0.8rem;
    }

    .category-title strong {
        font-size: 1rem;
    }

    .category-title span {
        font-size: 0.75rem;
    }
}

.price-note {
    text-align: center;
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Contact Section Refined */
.contact-section {
    padding: 6rem 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--surface-variant);
    padding: 1.8rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info-card:hover {
    border-color: rgba(253, 29, 114, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.contact-info-card .icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(253, 29, 114, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-card>div:not(.icon-wrapper) {
    flex: 1;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-info-card p,
.contact-info-card a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-card a:hover {
    color: var(--primary);
}

.phone-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
    width: 100%;
}



.phone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    /* Slight glass look */
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-item:hover {
    background: rgba(253, 29, 114, 0.1);
    border-color: rgba(253, 29, 114, 0.4);
    transform: translateX(8px);
}

.phone-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.phone-item strong {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.map-container {
    height: 550px;
    /* Fully matches the height of contact columns */
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    /* Removes bottom space */
    border: 0;
    filter: grayscale(0.2) contrast(1.1);
    /* Slightly more modern map look */
    transition: all 0.6s ease;
}

.map-container:hover iframe {
    transform: scale(1.03);
    filter: grayscale(0);
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        height: 350px;
        order: 2;
        /* Map below contacts */
        margin-top: 1rem;
    }
}

.card-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--on-surface);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.card-link i {
    width: 18px;
    height: 18px;
    color: var(--on-surface-variant);
    transition: all 0.3s ease;
}

.card-link:hover {
    background: var(--gradient-main);
    border-color: transparent;
    transform: rotate(-45deg);
    box-shadow: 0 5px 15px rgba(253, 29, 114, 0.4);
}

.card-link:hover i {
    color: #fff;
    transform: rotate(45deg);
    /* Counter-rotate icon for cool effect */
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background: var(--background);
}

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

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
}

.gallery-item:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background: var(--background);
}

.price-list-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface-variant);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid var(--glass-border);
}

.price-list-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .price-list-wrapper {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .price-category {
        padding: 1.5rem;
    }
}

.price-category {
    margin-bottom: 0;
    padding: 2.5rem;
    background: var(--surface-variant);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    height: 100%;
}

.provider-info {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 1rem;
}

.provider-info h3 {
    color: var(--on-background);
    margin-bottom: 0.2rem;
}

.provider-specialization {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.item-desc {
    display: flex;
    flex-direction: column;
}

.item-desc strong {
    font-size: 1rem;
    color: var(--on-surface);
}

.item-desc span {
    font-size: 0.8rem;
    color: var(--on-surface-variant);
}

.price-item>span {
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    margin-left: 1rem;
}

.price-note {
    margin-top: 2rem;
    color: var(--on-surface-variant);
    font-size: 0.85rem;
}



/* Instagram Feed Section */
.instagram-feed {
    padding: 2rem 0 5.5rem 0;
    overflow: hidden;
}

.insta-profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.insta-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.insta-pfp-text {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.insta-meta h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.1rem;
}

.insta-meta span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.insta-follow-btn {
    padding: 0.6rem 1.8rem;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.insta-follow-btn:hover {
    background: #ff3385;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 29, 114, 0.4);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    padding: 0 2rem;
}

.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 20px;
    display: block;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(253, 29, 114, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
}

.insta-overlay i {
    width: 30px;
    height: 30px;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

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

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

.insta-item:hover .insta-overlay i {
    transform: scale(1);
}

@media (max-width: 1200px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }
}

/* Main Footer */
.main-footer {
    background: #000;
    /* Solid black footer */
    padding: 4rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    text-transform: lowercase;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.brand-desc {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 350px;
}

.footer-nav h4,
.footer-info h4,
.footer-social h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.2s ease;
}

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


/* Footer Social Icons */
.footer-social {
    display: flex;
    flex-direction: column;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(253, 28, 113, 0.3);
}

.social-icon i,
.social-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.vb-banner svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

/* Phone List Styles */
.phone-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.phone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-item:hover {
    background: rgba(253, 28, 113, 0.1);
    border-color: rgba(253, 28, 113, 0.3);
    transform: translateX(5px);
}

.phone-name {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.phone-number {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    text-align: center;
}

.vb-banner {
    background: linear-gradient(135deg, #FF512F 0%, #DD2476 100%);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(255, 81, 47, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vb-banner:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 81, 47, 0.5);
    filter: brightness(1.1);
}

.vb-banner i {
    width: 20px;
    height: 20px;
    color: #fff;
}

.vb-banner span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-right: -4px;
}

.credits a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.credits a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Modal */
.modal,
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 6, 0.85);
    backdrop-filter: blur(12px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.active,
.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    max-width: 850px; /* Narrower for better fit */
    width: 95%; /* Better margins on small screens */
    max-height: 90vh; /* Force height inside viewport */
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow-y: auto; /* Allow scrolling content */
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--on-surface);
    z-index: 10;
    transition: all 0.2s ease;
}

.close-modal:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 2fr 3.5fr; /* Shift more space to info */
    min-height: auto; /* Remove fixed min-height */
}

/* Modal Image Side */
.modal-image {
    position: relative;
    height: 100%;
    min-height: 250px;
}

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

.modal-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.modal-image-overlay span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Modal Body Side */
.modal-body {
    padding: 2rem 1.5rem; /* Compact padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-title {
    font-size: 1.8rem; /* Smaller title */
    margin-bottom: 0.5rem;
    color: var(--on-background);
    line-height: 1.1;
}

.modal-description {
    color: var(--on-surface-variant);
    margin-bottom: 1.5rem; /* Reduced margin */
    font-size: 0.95rem; /* Smaller text */
    line-height: 1.5;
}

.modal-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-contact-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    background: var(--surface-variant);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0.5rem;
}

.modal-phone-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.modal-phone-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    gap: 0.8rem;
}

.modal-phone-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(253, 28, 113, 0.15);
}

.phone-item-main {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.phone-icon-wrap {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253, 28, 113, 0.1);
    color: var(--primary);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.modal-phone-item:hover .phone-icon-wrap {
    background: var(--primary);
    color: white;
}

.phone-icon-wrap i,
.phone-icon-wrap svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

.modal-phone-item .phone-name {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.modal-phone-item .phone-number {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    margin-left: 3rem; /* Indent number under the name */
}

.modal-phone-item:hover .phone-number {
    opacity: 1;
}

.modal-social-invite {
    text-align: center;
    margin: 0.5rem 0 1rem;
}

.modal-social-invite p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.modal-social-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 0;
}

.modal-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-social-btn.fb {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}

.modal-social-btn.ig {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

.modal-social-btn:hover {
    transform: translateY(-3px);
}

.modal-social-btn.fb:hover {
    background: #1877f2;
    color: white;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.2);
}

.modal-social-btn.ig:hover {
    background: #e1306c;
    color: white;
    box-shadow: 0 10px 20px rgba(225, 48, 108, 0.2);
}

.modal-social-btn i,
.modal-social-btn svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
    display: block; /* Ensure it's not hidden by mistake */
}

.modal-contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateX(5px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253, 28, 113, 0.1);
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.modal-contact-card:hover .contact-icon {
    background: var(--primary);
    color: white;
}

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

.contact-details .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--on-surface-variant);
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.contact-details .value {
    color: var(--on-background);
    font-size: 1.1rem;
    font-weight: 600;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.2;
}

.action-arrow {
    color: var(--on-surface-variant);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.modal-contact-card:hover .action-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary);
}

.modal-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--on-surface-variant);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .modal-image {
        display: none;
    }

    .modal-body {
        padding: 2rem 1.2rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-phone-item {
        padding: 0.7rem 1rem;
    }

    .modal-phone-item .phone-name {
        font-size: 0.9rem;
    }

    .modal-phone-item .phone-number {
        font-size: 1rem;
    }

    .modal-social-row {
        gap: 0.5rem;
    }

    .modal-social-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Footer Upgrade */
footer {
    padding: 8rem 0 4rem;
    background: #050506;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--on-background);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--on-surface-variant);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 6, 0.98);
        /* Solid dark background for reliability */
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
        padding: 2rem;
    }

    .nav-links.mobile-active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-links.mobile-active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger links animation */
    .nav-links.mobile-active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.mobile-active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.mobile-active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.mobile-active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.mobile-active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links a {
        font-size: 2rem;
        font-weight: 700;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-right {
        gap: 1.5rem;
    }

    .nav-cta {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .nav-cta {
        display: none;
        /* Hide CTA on very small screens to save space, it's in the menu or redundant */
    }

    /* Or keep it and hide logo text if there was any, but here we have image logo */
    .logo-img {
        height: 36px;
    }
}


/* Highlights Section */
.info-highlights {
    position: relative;
    margin-top: -4rem;
    /* Reduced overlap to move cards lower */
    z-index: 2;
    padding-bottom: 4rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.highlight-card {
    background: #121214;
    /* Dark grey background */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 2rem 1.8rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.highlight-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    background: #161619;
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--primary);
    /* Solid pink default */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(253, 29, 114, 0.3);
}

.highlight-card:hover .card-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(253, 29, 114, 0.4);
}

.card-icon-wrapper i {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

.highlight-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .info-highlights {
        margin-top: 0;
        /* Reset overlap on smaller screens */
        padding-top: 4rem;
        background: var(--background);
        /* Ensure bg matches */
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.gallery-item {
    cursor: zoom-in;
}

/* Service Card More Link */
/* Service Card Link - Circular Button */
.btn-more-info {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(253, 28, 113, 0.3);
    border: 2px solid transparent;
}

.btn-more-info:hover {
    transform: scale(1.1) rotate(-10deg);
    background: #ff3385;
    box-shadow: 0 6px 16px rgba(253, 28, 113, 0.5);
}

.btn-more-info i {
    width: 20px;
    height: 20px;
    stroke-width: 3px;
}

/* Service Card Specific Styling (Merged) */

/* Service Detail Modal */
.service-detail-modal {
    max-width: 900px !important;
    padding: 0 !important;
    overflow: hidden;
    background: #0d0d10;
    border: 1px solid rgba(253, 28, 113, 0.2);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.service-modal-body {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.service-modal-image {
    flex: 1;
    min-width: 40%;
    position: relative;
    background: #000;
}

.service-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.service-modal-info {
    flex: 1.5;
    padding: 3rem;
    overflow-y: auto;
    max-height: 80vh;
}

.modal-header-meta {
    margin-bottom: 2rem;
}

.service-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(253, 28, 113, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

#modal-service-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0;
    color: #fff;
    font-weight: 800;
}

.modal-description {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.modal-gallery-section {
    margin-bottom: 2.5rem;
}

.modal-gallery-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.modal-gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
}

.modal-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.modal-pricing-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-prices-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.modal-price-section-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(225, 48, 108, 0.3);
    font-weight: 600;
}

.modal-price-section-title:first-child {
    margin-top: 0;
}

.modal-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.8rem;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
}

.modal-price-item .item-name {
    color: #e0e0e0;
}

.modal-price-item .item-price {
    color: var(--primary);
    font-weight: 600;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

.modal-provider-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.provider-contact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #e0e0e0;
}

.provider-contact:last-child {
    margin-bottom: 0;
}

.provider-contact i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.provider-contact a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.provider-contact a:hover {
    color: #ff3385;
}

.modal-instagram-section {
    margin: 1.5rem 0;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.instagram-link i {
    width: 20px;
    height: 20px;
}

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

    .service-modal-image {
        height: 250px;
        min-width: 100%;
    }

    .service-modal-image img {
        position: relative;
    }

    .service-modal-info {
        padding: 2rem;
    }

    #modal-service-title {
        font-size: 1.8rem;
    }

    .instagram-link {
        font-size: 0.9rem;
        padding: 0.9rem 1.2rem;
    }

    .modal-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PMU PAGE STYLES
   ============================================ */

/* PMU Hero Section */
.pmu-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b2e 100%);
    text-align: center;
}

.pmu-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(225, 48, 108, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(225, 48, 108, 0.3);
}

.pmu-hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pmu-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* PMU Gallery Section */
.pmu-gallery-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.pmu-gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
}

.pmu-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pmu-gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pmu-gallery-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(225, 48, 108, 0.4);
}

.pmu-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* PMU Pricing Section */
.pmu-pricing-section {
    padding: 80px 0;
    background: #0f0f0f;
}

.pmu-pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
}

.pmu-price-category {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pmu-price-category:last-child {
    margin-bottom: 0;
}

.pmu-price-category h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(225, 48, 108, 0.3);
}

.pmu-price-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.pmu-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
}

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

.pmu-price-item .price-name {
    color: #e0e0e0;
    font-size: 1.05rem;
}

.pmu-price-item .price-value {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* PMU Contact Section */
.pmu-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b2e 100%);
}

.pmu-contact-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.pmu-contact-card h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
}

.pmu-provider-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.provider-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #e0e0e0;
    font-size: 1.1rem;
}

.provider-detail i {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.provider-detail a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.provider-detail a:hover {
    color: #ff3385;
}

/* Responsive Design for PMU Page */
@media (max-width: 768px) {
    .pmu-hero {
        padding: 100px 0 60px;
    }

    .pmu-hero h1 {
        font-size: 2.5rem;
    }

    .pmu-subtitle {
        font-size: 1rem;
    }

    .pmu-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .pmu-gallery-section h2,
    .pmu-pricing-section h2 {
        font-size: 2rem;
    }

    .pmu-price-category {
        padding: 1.5rem;
    }

    .pmu-price-category h3 {
        font-size: 1.5rem;
    }

    .pmu-price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .pmu-contact-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .pmu-gallery-grid {
        grid-template-columns: 1fr;
    }
}



/* ============================================
   GALLERY PAGE STYLES
   ============================================ */

/* Gallery Hero Section */
.gallery-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b2e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(225, 48, 108, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.gallery-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gallery-hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.gallery-hero .subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Main Gallery Section */
.main-gallery-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.gallery-category {
    margin-bottom: 5rem;
}

.gallery-category:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-header p {
    font-size: 1.1rem;
    color: #888;
}

/* Masonry Grid Layout */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-masonry .gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    cursor: zoom-in;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-masonry .gallery-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(225, 48, 108, 0.4);
}

.gallery-masonry .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-overlay i {
    width: 40px;
    height: 40px;
    color: white;
    margin-bottom: 0.5rem;
    stroke-width: 2;
}

.gallery-overlay span {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    padding: 0 1rem;
}

/* Active Navigation Link */
.nav-links a.active {
    color: var(--primary);
}

/* Responsive Design for Gallery Page */
@media (max-width: 992px) {
    .gallery-hero {
        padding: 120px 0 60px;
    }

    .gallery-hero h1 {
        font-size: 2.8rem;
    }

    .gallery-hero .subtitle {
        font-size: 1.1rem;
    }

    .category-header h2 {
        font-size: 2rem;
    }

    .gallery-masonry {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        padding: 100px 0 50px;
    }

    .gallery-hero h1 {
        font-size: 2.2rem;
    }

    .gallery-hero .subtitle {
        font-size: 1rem;
    }

    .category-header h2 {
        font-size: 1.8rem;
    }

    .category-header p {
        font-size: 1rem;
    }

    .main-gallery-section {
        padding: 60px 0;
    }

    .gallery-category {
        margin-bottom: 4rem;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-hero h1 {
        font-size: 1.8rem;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .category-header h2 {
        font-size: 1.5rem;
    }
}

.modal-social-invite {
    text-align: center;
    margin: 1.5rem 0 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.modal-social-invite::before,
.modal-social-invite::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* ── GRID ALIGNMENT FIX ── */
.packages-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-auto-rows: 1fr !important;
    gap: 2rem !important;
}

@media (max-width: 1100px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ── CONTINUOUS GRID REFACTOR ── */
.services-container {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-auto-rows: 1fr !important;
    gap: 2rem !important;
}

.provider-group,
.packages-grid {
    display: contents !important;
}

.provider-group.hidden {
    display: none !important;
}

@media (max-width: 1100px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* Ensure reveal works on cards since groups are display:contents */
.package-card.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.package-card.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── CONTACT MOBILE RESPONSIVITY FIX ── */
@media (max-width: 580px) {
    .contact-info-card {
        flex-direction: column;
        align-items: stretch; /* Změna na stretch pro plnou šířku obsahu */
        text-align: center;
        gap: 0.8rem;
        padding: 1.2rem 0.5rem; /* Snížení bočního paddingu */
    }

    .contact-info-card .icon-wrapper {
        display: none !important;
    }

    .phone-item {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.2rem !important;
        padding: 1rem !important;
        text-align: center;
        width: 100% !important; /* Vynucení plné šířky */
        box-sizing: border-box;
    }

    .phone-list {
        width: 100%;
        padding: 0;
    }

    .phone-name {
        margin-bottom: 0;
        font-size: 0.85rem !important;
    }

    .phone-number {
        font-size: 1.2rem !important; /* Mírné zvětšení pro lepší čitelnost */
        display: block;
        width: 100%;
    }
}