/* ============================================
   GLAMORBYBEE - MODERN BOOKING APP
   2025 - Fresh, Fast, Flawless
   ============================================ */

:root {
    --primary: #d63384;
    --secondary: #6f42c1;
    --accent: #ffc107;
    --dark: #0f0f0f;
    --light: #f5f5f5;
    --text: #1a1a1a;
    --text-muted: #666;
    --border: #e5e5e5;
    --success: #10b981;
    --error: #ef4444;
    --radius: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fff;
    color: var(--text);
    line-height: 1.6;
    font-weight: 400;
    font-size: 16px;
}

/* ============================================
   SECTION DIVIDERS
   ============================================ */

section:not(:last-child)::after {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(214, 51, 132, 0.15) 50%, transparent 100%);
    margin: 0 auto;
    max-width: 80%;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

h1 {
    font-weight: 700;
    letter-spacing: -2px;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

h3 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    font-weight: 600;
}

p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

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

.navbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
}

.navbar-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.navbar-brand .logo {
    height: 40px;
    width: auto;
}

/* Center Navigation Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-book {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white !important;
    border: none;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 51, 132, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    text-align: left;
}
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -2px;
}

.hero-brand {
    margin-bottom: 2rem;
}

.hero-brand-name {
    font-size: clamp(3.5rem, 12vw, 6rem);
    font-weight: 800;
    letter-spacing: -3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 0;
    position: relative;
    display: inline-block;
    animation: slideInDown 0.8s ease-out;
}

.hero-brand-name::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 3px;
    animation: slideInRight 0.8s ease-out 0.2s backwards;
}

.hero-tagline {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 600;
    color: var(--text);
    margin: 1.5rem 0 0.8rem 0;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(214, 51, 132, 0.4);
    color: white;
    text-decoration: none;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--primary);
    cursor: pointer;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.cta-button-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(214, 51, 132, 0.3);
    text-decoration: none;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(214, 51, 132, 0.15));
}

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

/* ============================================
   SERVICES SHOWCASE
   ============================================ */

.services-showcase {
    padding: 5rem 2rem;
    background: #fff;
}

.container-lg {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.section-header p {
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.08) 0%, rgba(111, 66, 193, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}

.service-card:hover {
    box-shadow: 0 12px 35px rgba(214, 51, 132, 0.25);
    transform: translateY(-8px);
}

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

.service-image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--light);
    aspect-ratio: 1 / 1;
}

.service-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1);
}

.service-card:hover .service-image {
    filter: brightness(1.1) contrast(1.05);
}

.service-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
    color: var(--text);
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-name {
    color: var(--primary);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.2px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-grow: 1;
    margin-bottom: 1rem;
}

.service-card:hover .service-desc {
    color: var(--text);
}

.service-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.service-book-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(214, 51, 132, 0.3);
    color: white;
    text-decoration: none;
}

.service-book-btn i {
    font-size: 1rem;
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.booking-section {
    padding: clamp(2rem, 5vw, 3rem) 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #f5f5f5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.booking-header {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    padding: 0 1rem;
}

.booking-step {
    background: white;
    border-radius: var(--radius);
    padding: clamp(1.25rem, 3vw, 1.5rem);
    border: 1px solid var(--border);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content h3 {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

/* Step 1: Service Pills */

.service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-pill {
    padding: 0.7rem 1.2rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.service-pill:hover {
    border-color: var(--primary);
}

.service-pill.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-color: transparent;
}

.service-pill-price {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.3rem;
}

/* Step 2: Date & Time */

.date-time-picker {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Make date input fill width */
#date {
    width: 100%;
    padding: 0.75rem 1rem !important;
    font-size: 1.1rem !important;
    cursor: pointer;
    min-height: 48px;
}

#date::-webkit-calendar-picker-indicator {
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
}

/* Override Bootstrap form controls with brand colors */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(214, 51, 132, 0.25);
}

.form-select {
    cursor: pointer;
}

/* Step 3: Form */

.booking-form {
    display: grid;
    gap: 0.9rem;
}

.form-group {
    display: flex;
    width: 100%;
}

.studio-visit-question {
    margin: 1.2rem 0;
}

.question-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.question-label i {
    color: var(--primary);
    font-size: 1.1rem;
}

.location-toggle {
    display: flex;
    gap: 0.8rem;
}

.toggle-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    font-weight: 500;
    background: white;
}

.toggle-option input {
    cursor: pointer;
}

.toggle-option:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 51, 132, 0.15);
}

.toggle-option:has(input:checked) {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.1) 0%, rgba(111, 66, 193, 0.05) 100%);
    box-shadow: 0 4px 12px rgba(214, 51, 132, 0.2);
}

.toggle-option span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.toggle-option span i {
    font-size: 1.1rem;
}

.service-address-container {
    margin: 1rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.03) 0%, rgba(111, 66, 193, 0.02) 100%);
    border-radius: 12px;
    border: 1px solid rgba(214, 51, 132, 0.2);
    animation: slideDown 0.3s ease-out;
}

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

.address-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text);
    border-left: 3px solid var(--primary);
}

.address-notice i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.address-notice span {
    font-weight: 500;
}

/* Hide Google Maps error overlay (we only use autocomplete, not maps) */
.gm-err-container,
.gm-err-content,
.dismissButton {
    display: none !important;
}

/* Google Places Autocomplete Styling */
.pac-container {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
    z-index: 9999;
    padding: 4px 0;
}

.pac-container:after {
    display: none;
}

.pac-item {
    padding: 12px 16px 12px 48px;
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
    cursor: pointer;
    transition: background-color 0.2s ease;
    line-height: 1.5;
    position: relative;
}

.pac-item:first-child {
    border-top: none;
}

.pac-item:hover {
    background-color: rgba(214, 51, 132, 0.05);
}

.pac-item-selected,
.pac-item-selected:hover {
    background-color: rgba(214, 51, 132, 0.1);
}

.pac-icon {
    background-image: none !important;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pac-icon:before {
    content: "📍";
    font-size: 18px;
    display: block;
    line-height: 1;
}

.pac-item-query {
    color: var(--text);
    font-weight: 500;
    display: inline;
}

.pac-matched {
    font-weight: 700;
    color: var(--primary);
}

.submit-btn {
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 51, 132, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============================================
   FEATURED BANNER
   ============================================ */

.featured-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.05) 0%, rgba(111, 66, 193, 0.05) 100%);
}

.banner-content {
    padding: 2rem;
}

.banner-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(214, 51, 132, 0.2);
}

/* Alerts */

.alert {
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    margin-top: 1rem;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 3px solid #16a34a;
    border-radius: 12px;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.3);
    animation: slideDown 0.3s ease-out;
    margin: 1.5rem auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    line-height: 1.6;
    max-width: fit-content;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.alert-success i {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 3px solid #dc2626;
    border-radius: 12px;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
    animation: slideDown 0.3s ease-out;
    margin: 1.5rem auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    line-height: 1.6;
    max-width: fit-content;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.alert-error i {
    font-size: 1.8rem;
    flex-shrink: 0;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes celebrate {
    0% {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

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

@keyframes dissolve {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.celebrate-animation {
    animation: celebrate 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
}

.celebrate-animation::before {
    content: '🎉 Yay! 🎉';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    animation: bounce 0.6s ease-out;
    pointer-events: none;
}

.dissolve-out {
    animation: dissolve 0.6s ease-out forwards !important;
}

.d-none {
    display: none !important;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
    padding: 5rem 2rem;
    background: white;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.gallery-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    gap: 0;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.instagram-embed-info {
    text-align: center;
}

.instagram-note {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
    padding: 0.75rem 1rem;
    background: rgba(214, 51, 132, 0.08);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    min-height: 1.5rem;
    display: flex;
    align-items: center;
    border-right: 3px solid var(--primary);
    animation: typewriter 4s steps(60, end) infinite;
    overflow: hidden;
    white-space: nowrap;
}

@keyframes typewriter {
    0% {
        width: 0;
    }
    50% {
        width: 100%;
    }
    100% {
        width: 100%;
    }
}

@keyframes blink {
    0%, 49% {
        border-right-color: var(--primary);
    }
    50%, 100% {
        border-right-color: transparent;
    }
}

.instagram-embed-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 100%;
    max-width: 500px;
}

.instagram-profile-link {
    text-decoration: none;
    width: 100%;
    max-width: 100%;
    display: block;
}

.instagram-placeholder {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border: 2px solid #e4e9f0;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-word;
}

.instagram-placeholder p {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}

.instagram-placeholder:hover {
    border-color: #E4405F;
    box-shadow: 0 12px 35px rgba(228, 64, 95, 0.25);
    transform: translateY(-4px);
}

.instagram-embed-container iframe {
    width: 100%;
    max-width: 500px;
    height: 490px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.instagram-embed-container iframe:hover {
    box-shadow: 0 12px 35px rgba(214, 51, 132, 0.25);
}

/* Instagram Blockquote Embed Styling */
.instagram-embed-container blockquote.instagram-media {
    background: white;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 500px;
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.instagram-embed-container blockquote.instagram-media:hover {
    box-shadow: 0 12px 35px rgba(214, 51, 132, 0.25);
}

.instagram-embed-container blockquote.instagram-media img {
    cursor: pointer;
    transition: filter 0.3s ease;
}

.instagram-embed-container blockquote.instagram-media img:hover {
    filter: brightness(0.95);
}

@media (max-width: 768px) {
    .gallery-wrapper {
        padding: 0 1rem;
        margin: 1.5rem 0;
    }
    
    .instagram-embed-container {
        padding: 0;
        margin: 0;
    }
    
    .instagram-embed-container blockquote.instagram-media {
        width: 100%;
        max-width: 100%;
    }
    
    .instagram-note {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
        margin: 0;
        width: 100%;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 0;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.2);
}

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

.gallery-item:hover img {
    filter: brightness(0.9);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark);
    color: #999;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-brand-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: white;
}

.footer-brand-text p {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.footer-column p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.footer-column a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    text-align: center;
}

.footer-bottom > div {
    flex: 1;
}

.admin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(214, 51, 132, 0.1);
    color: var(--primary);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(214, 51, 132, 0.3);
}

.admin-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 51, 132, 0.3);
}

.admin-link i {
    font-size: 1rem;
}

.appdev-credit {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(214, 51, 132, 0.3);
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 0.5px;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
}

.appdev-credit a {
    color: #888;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.appdev-credit a:hover {
    color: var(--primary);
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
    padding: 6rem 2rem;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(214, 51, 132, 0.2);
}

.team-image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.1) 0%, rgba(111, 66, 193, 0.1) 100%);
    aspect-ratio: 1 / 1;
}

.team-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: 6rem 2rem;
    background: var(--surface);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(214, 51, 132, 0.15);
}

.testimonial-stars {
    font-size: 1.1rem;
    color: #ffc107;
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.testimonial-avatar i {
    font-size: 2rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 6rem 2rem;
    background: white;
}

.contact-content {
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    align-items: center;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(214, 51, 132, 0.1);
    color: var(--primary);
    font-size: 1.8rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-icon:hover {
    background: rgba(214, 51, 132, 0.2);
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(214, 51, 132, 0.2);
}

.contact-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Native Icon Colors */
#contactInstagramIcon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: transparent;
}

#contactInstagramIcon:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: white;
    box-shadow: 0 8px 25px rgba(224, 148, 51, 0.3);
}

#contactPhoneIcon {
    background: rgba(34, 177, 76, 0.1);
    color: #22b14c;
    border-color: #22b14c;
    box-shadow: 0 4px 12px rgba(34, 177, 76, 0.15);
}

#contactPhoneIcon:hover {
    background: #22b14c;
    color: white;
    border-color: #22b14c;
    box-shadow: 0 8px 24px rgba(34, 177, 76, 0.35);
    transform: translateY(-4px);
}

#contactEmailIcon {
    background: rgba(234, 67, 53, 0.1);
    color: #ea4335;
    border-color: #ea4335;
    box-shadow: 0 4px 12px rgba(234, 67, 53, 0.15);
}

#contactEmailIcon:hover {
    background: #ea4335;
    color: white;
    border-color: #ea4335;
    box-shadow: 0 8px 24px rgba(234, 67, 53, 0.35);
    transform: translateY(-4px);
}

#contactLocationIcon {
    background: rgba(214, 51, 132, 0.1);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(214, 51, 132, 0.15);
}

#contactLocationIcon:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(214, 51, 132, 0.35);
    transform: translateY(-4px);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    flex: 0 1 auto;
    min-width: auto;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.contact-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (min-width: 769px) {
    .booking-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .booking-step:nth-child(1) {
        grid-column: 1;
    }

    .booking-step:nth-child(2) {
        grid-column: 2;
    }

    .booking-step:nth-child(3) {
        grid-column: 1 / -1;
    }

    .date-time-picker {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1rem;
    }

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

    .hero-brand-name {
        font-size: clamp(2rem, 10vw, 3.5rem) !important;
        letter-spacing: -2px;
    }

    .hero-tagline {
        font-size: clamp(1rem, 3.5vw, 1.4rem) !important;
        margin-top: 1rem !important;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-brand-name::before {
        height: 4px !important;
        bottom: -8px !important;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu.mobile-open {
        display: flex !important;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border);
        z-index: 999;
        transform: none !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
    }

    .nav-menu.mobile-open .nav-link {
        padding: 1rem;
        padding-right: 1.5rem;
        border-bottom: 1px solid var(--border);
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        color: var(--text);
        text-align: right;
    }

    .nav-menu.mobile-open .nav-link:hover {
        background: rgba(214, 51, 132, 0.08);
        padding-left: 1.3rem;
        color: var(--primary);
        border-left: 3px solid var(--primary);
    }

    .navbar .container-fluid {
        padding: 0 1rem;
    }

    .btn-book {
        padding: 0.5rem 1.4rem;
        font-size: 0.9rem;
    }

    .featured-banner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .banner-content {
        padding: 1rem 0;
    }

    .banner-content h2 {
        font-size: 1.5rem;
    }

    .date-time-picker {
        grid-template-columns: 1fr;
    }

    .location-toggle {
        flex-direction: column;
    }

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

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

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

    .admin-link {
        width: fit-content;
        margin: 0 auto;
    }

    .booking-container {
        gap: 2rem;
    }

    /* Mobile tablet responsiveness (600-768px) */
    .alert-success,
    .alert-error {
        margin: 1.25rem 1rem;
        padding: 1.25rem;
        font-size: 1rem;
    }

    .booking-form {
        gap: 1.25rem;
    }

    .form-control,
    .form-select {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

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

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

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .service-pills {
        gap: 0.5rem;
    }

    .service-pill {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .step-number {
        left: 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-image-wrapper {
        aspect-ratio: 1 / 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .booking-section {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .booking-step {
        padding: 1.5rem;
    }

    /* Mobile alert responsiveness */
    .alert-success,
    .alert-error {
        margin: 1rem 0.75rem;
        padding: 1.25rem 1rem;
        font-size: 0.95rem;
        flex-wrap: wrap;
    }

    .alert-success i,
    .alert-error i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

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

    .contact-section {
        padding: 4rem 1rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        gap: 1rem;
    }

    .contact-item i {
        font-size: 1.5rem;
    }

    .contact-item h4 {
        font-size: 1rem;
    }
}

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

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

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-item i {
        font-size: 1.3rem;
    }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.7) 0%, rgba(111, 66, 193, 0.7) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(214, 51, 132, 0.2);
    z-index: 99;
}

.back-to-top.show {
    display: flex;
    animation: slideUp 0.3s ease-out;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   IMAGE LIGHTBOX MODAL
   ============================================ */

.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.image-lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg) scale(1.1);
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}