:root {
    --bg-color: #f8fafc;
    --surface-light: rgba(255, 255, 255, 0.6);
    --surface-solid: #ffffff;
    --border-color: rgba(255, 255, 255, 0.6);
    --primary-color: #0f172a;
    --secondary-color: #475569;
    --accent-gradient: linear-gradient(135deg, #ec4899, #8b5cf6);
    --accent-gradient-hover: linear-gradient(135deg, #db2777, #7c3aed);
    --whatsapp-color: #25D366;
    --whatsapp-hover: #1EBE5D;
    
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(120deg, #fce7f3 0%, #e0e7ff 50%, #f3e8ff 100%);
    background-size: 200% 200%;
    animation: gradientBG 15s ease infinite;
    color: var(--primary-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.glass {
    background: var(--surface-light);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(31, 38, 135, 0.05);
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 600; }
h3 { font-size: 1.8rem; }
p { color: var(--secondary-color); font-weight: 400; font-size: 1.1rem; }

.dot { color: #ec4899; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s;
}

.btn:hover::after {
    left: 100%;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px rgba(236, 72, 153, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid rgba(15, 23, 42, 0.1);
}

.btn-outline:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
    background-color: rgba(139, 92, 246, 0.05);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: #ffffff;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-nav {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid rgba(15, 23, 42, 0.1);
    padding: 10px 24px;
    font-size: 0.95rem;
}

.btn-whatsapp-nav:hover {
    background: var(--accent-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.text-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
    position: relative;
}

.text-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #8b5cf6;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}

.header.scrolled {
    padding: 16px 0;
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--primary-color);
}

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

.nav a:not(.btn) {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav a:not(.btn):hover {
    color: #8b5cf6;
}

.nav-instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: var(--transition);
}

.nav-instagram-link:hover {
    color: #e1306c !important;
    transform: scale(1.1);
}


/* Animations */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1) translate(-50%, -50%); opacity: 0.6; }
    50% { transform: scale(1.1) translate(-50%, -40%); opacity: 0.9; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    animation: slideUp 1s ease-out forwards;
}

.hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ec4899;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.badge-instagram {
    text-decoration: none;
    color: #e1306c !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.badge-instagram:hover {
    background: #e1306c;
    color: #ffffff !important;
    border-color: #e1306c;
    transform: translateY(-2px);
}

.instagram-badge-icon {
    width: 16px;
    height: 16px;
}


.hero-title {
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--secondary-color);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.glow-orb {
    position: absolute;
    top: 40%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(60px);
    transform-origin: center;
    animation: pulseGlow 8s ease-in-out infinite alternate;
}

.glow-orb.orb-2 {
    top: 60%;
    left: 70%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(0,0,0,0) 70%);
    animation: pulseGlow 10s ease-in-out infinite alternate-reverse;
}

/* Portfolio Slider */
.portfolio {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.portfolio .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.portfolio .section-header h2 {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-subtitle {
    font-size: 1.8rem;
    margin-bottom: 6px;
    color: var(--primary-color);
    font-weight: 600;
}

.portfolio-category {
    margin-bottom: 48px;
}

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

.category-header {
    margin-bottom: 16px;
    padding: 0 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.category-header h4 {
    font-size: 1.6rem;
    color: #ec4899;
    margin-bottom: 4px;
}

.slider-container {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 12px 0 20px;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.slider-relative-wrapper {
    position: relative;
    width: 100%;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.15); /* darker border for high visibility */
    background: rgba(255, 255, 255, 0.95); /* more solid background */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    /* Strong mixed shadow: pink branding glow + dark base shadow for high contrast on videos */
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.22), 0 4px 12px rgba(0, 0, 0, 0.16);
}

.slider-nav-btn.prev {
    left: 10px;
}

.slider-nav-btn.next {
    right: 10px;
}

.slider-nav-btn:hover {
    background: var(--accent-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4), 0 6px 15px rgba(0, 0, 0, 0.22);
}

.slider-nav-btn svg {
    width: 22px;
    height: 22px;
    stroke-width: 3px;
}

@media (max-width: 768px) {
    .slider-nav-btn {
        width: 38px;
        height: 38px;
    }
    .slider-nav-btn.prev {
        left: 4px;
    }
    .slider-nav-btn.next {
        right: 4px;
    }
}

.slider-wrapper {
    display: flex;
    gap: 32px;
    width: max-content;
    padding: 0 24px;
    margin: 0 auto;
}

.slide {
    scroll-snap-align: center;
    width: 200px;
    flex-shrink: 0;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--surface-light);
    border: 4px solid #fff;
    box-shadow: 0 16px 32px rgba(139, 92, 246, 0.15);
    cursor: pointer;
    transition: var(--transition);
}

.video-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 48px rgba(236, 72, 153, 0.25);
    border-color: #fce7f3;
}

.portfolio-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #050505;
    border: none;
}

/* Fix fullscreen: show full video without zoom/crop */
.portfolio-video:fullscreen,
.portfolio-video:-webkit-full-screen {
    object-fit: contain;
    background-color: #000;
}

video:fullscreen {
    object-fit: contain;
}

/* Google Drive iframe embed - removed since all videos are native now */

/* Quality notice */
.quality-notice {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: #8b5cf6;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.quality-notice strong {
    color: #ec4899;
    font-weight: 700;
}

.play-btn-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-lg);
    opacity: 1;
    pointer-events: auto;
}

.play-btn-overlay svg {
    width: 48px;
    height: 48px;
    fill: #fff;
    transition: var(--transition);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.video-container:hover .play-btn-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.video-container:hover .play-btn-overlay svg {
    transform: scale(1.15);
}

.video-container.playing .play-btn-overlay {
    opacity: 0;
    pointer-events: none;
}

video::-webkit-media-controls {
    z-index: 5;
}

@media (min-width: 768px) {
    .slide {
        width: 240px;
    }
}

/* Services */
.services {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    margin-bottom: 8px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.pricing-card {
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255,255,255,1);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.15);
}

.pricing-card.recommended {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #ec4899;
    transform: scale(1.04);
}

.pricing-card.recommended:hover {
    transform: scale(1.04) translateY(-12px);
}

.pricing-card.discovery {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.pricing-card.discovery:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.18);
}

.discovery-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.18);
    white-space: nowrap;
}

.recommended-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

.pricing-header {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-header h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #8b5cf6;
    line-height: 1;
}

.price span {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pricing-features li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 1rem;
}

.pricing-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ec4899' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Additional Service Banner Removed: Integrated directly in the pricing grid */

/* Stats Bar Section */
.stats-bar-section {
    padding: 24px 0;
    position: relative;
    z-index: 10;
    margin-top: -40px; /* Slight overlay for a unified modern aesthetic */
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 32px 48px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.06);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(236, 72, 153, 0.15);
    color: #ec4899;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.05);
    transition: var(--transition);
}

.stat-item:hover .stat-icon-wrapper {
    background: var(--accent-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(236, 72, 153, 0.25);
}

.stat-icon {
    width: 28px;
    height: 28px;
    stroke-width: 2.2px;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.testimonials .section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(236, 72, 153, 0.08);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ec4899;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(236, 72, 153, 0.03);
}

.testimonials-slider-container {
    position: relative;
    width: 100%;
    margin-top: 40px;
}

.testimonials-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE/Edge */
    padding: 12px 4px 24px;
}

.testimonials-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.testimonial-card {
    scroll-snap-align: center;
    flex: 0 0 100%; /* Mobile default */
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    background: var(--surface-light);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 24px 48px rgba(139, 92, 246, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    width: 100%;
}

.client-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e7ff, #fce7f3);
    border: 2.5px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.1);
    overflow: hidden;
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-svg {
    width: 24px;
    height: 24px;
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-info h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.verified-badge {
    display: inline-block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.client-role {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.instagram-badge {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.03);
}

.instagram-icon {
    width: 18px;
    height: 18px;
    color: #e1306c;
}


.rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.rating .star {
    color: #f59e0b; /* Amber 500 */
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--secondary-color);
    font-style: italic;
    font-weight: 400;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.testimonial-control-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.testimonial-control-btn:hover {
    background: var(--accent-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.25);
}

.control-arrow {
    width: 22px;
    height: 22px;
    stroke-width: 2.5px;
}

.testimonials-indicator {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
}

/* Testimonials Responsive Layouts */
@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 12px); /* 2 cards visible on tablets */
        scroll-snap-align: start;
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 16px); /* 3 cards visible on desktop */
        scroll-snap-align: start;
    }
    
    .testimonials-controls {
        display: none; /* Hide controls if all cards fit on desktop */
    }
}

/* Booking Section */
.booking {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.booking-info h2 {
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.booking-info > p {
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.contact-method {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.contact-method .icon {
    color: #ec4899;
    background-color: #fff;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.15);
}

.contact-method h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-method p {
    font-size: 1rem;
    margin-bottom: 0;
}

.booking-form-container {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.8);
}

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

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

input, textarea, select {
    width: 100%;
    padding: 12px 18px;
    background-color: #ffffff;
    border: 2px solid rgba(0,0,0,0.05);
    border-radius: 14px;
    color: var(--primary-color);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
}

input::placeholder, textarea::placeholder {
    color: #94a3b8;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b5cf6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

select {
    appearance: none;
    cursor: pointer;
}

select option {
    background-color: #fff;
    color: var(--primary-color);
}

/* Footer */
.footer {
    padding: 40px 0 24px;
    text-align: center;
}

.footer .logo {
    margin-bottom: 24px;
    color: var(--primary-color);
}

.footer p {
    font-size: 1rem;
    color: var(--secondary-color);
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
        gap: 24px;
    }
    .pricing-card.recommended { transform: scale(1); }
    .pricing-card.recommended:hover { transform: translateY(-12px); }
}

@media (max-width: 1024px) {
    .pricing-grid { 
        grid-template-columns: 1fr; 
        width: 100%;
        max-width: 440px; 
        margin-left: auto; 
        margin-right: auto; 
        gap: 24px;
    }
    .pricing-card.recommended { transform: scale(1); }
    .pricing-card.recommended:hover { transform: translateY(-12px); }
    .booking-wrapper { 
        grid-template-columns: 1fr; 
        width: 100%;
        max-width: 600px; 
        margin-left: auto; 
        margin-right: auto; 
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .hero-actions { 
        flex-direction: column; 
        width: 100%; 
        max-width: 300px; 
        margin: 0 auto; 
    }
    .pricing-card { 
        padding: 24px 20px; 
    }
    .pricing-header h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    .price {
        font-size: 2.6rem;
    }
    .price span {
        font-size: 0.95rem;
    }
    .pricing-features {
        margin-bottom: 16px;
    }
    .pricing-features li {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    .booking-form-container { padding: 40px 24px; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .section-header h2 { font-size: 2.5rem; }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 32px;
    }
    .stats-bar-section {
        margin-top: 0;
        padding: 40px 0 16px;
    }
    .stat-item {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .slide { width: 140px; }
    .slider-wrapper { gap: 16px; }
    .pricing-grid {
        max-width: 100%;
        padding: 0 8px;
    }
    .pricing-card {
        padding: 20px 16px;
    }
}

