/* ===================================
   Global Styles & Reset
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --surface: #141414;
    --primary-yellow: #ffd700;
    --light-yellow: #ffe44d;
    --dark-yellow: #ccaa00;
    --white: #ffffff;
    --gray: #888888;
    --light-gray: #cccccc;
    --font-family: 'Poppins', sans-serif;
    --nav-height: 72px;
    --section-padding: 5rem;
    --container-width: 1140px;
    --radius: 12px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-family);
    background: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-family);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--light-yellow) 100%);
    color: var(--primary-black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--primary-yellow);
}

.btn-outline:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.btn-full {
    width: 100%;
}

/* ===================================
   Section Shared
   =================================== */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    color: var(--primary-yellow);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Navbar
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-yellow);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-yellow);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--light-yellow) 100%);
    color: var(--primary-black);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-yellow);
    transition: all var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================
   Hero
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: calc(var(--nav-height) + 2rem) 2rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 50%, #0f0f0f 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.logo-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--light-yellow) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    border: 4px solid var(--secondary-black);
    animation: logoFloat 3s ease-in-out infinite;
    overflow: hidden;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.logo.loaded {
    opacity: 1;
}

.logo-fallback {
    position: absolute;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-black);
    letter-spacing: 2px;
    user-select: none;
}

.logo-placeholder:has(.logo.loaded) .logo-fallback {
    display: none;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-yellow) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-yellow) 50%, var(--white) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--primary-yellow);
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-meta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
    align-items: center;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--light-gray);
    font-size: 0.95rem;
}

.hero-meta i {
    color: var(--primary-yellow);
    font-size: 0.9rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Video Promo
   =================================== */
.video-promo {
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--secondary-black) 50%, var(--primary-black) 100%);
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
}

.video-promo::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.video-promo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.video-promo-media {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.video-promo-text .section-label {
    display: inline-block;
    color: var(--primary-yellow);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
}

.video-promo-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-promo-text p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.video-promo-list {
    list-style: none;
    margin-bottom: 2rem;
}

.video-promo-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--light-gray);
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}

.video-promo-list i {
    color: var(--primary-yellow);
    font-size: 0.8rem;
}

.video-frame {
    position: relative;
    width: 100%;
    max-width: clamp(280px, 36vw, 520px);
    max-height: min(72vh, 720px);
    margin: 0 auto;
    border-radius: clamp(14px, 2vw, 20px);
    overflow: hidden;
    border: 3px solid var(--primary-yellow);
    box-shadow:
        0 0 0 1px rgba(255, 215, 0, 0.15),
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(255, 215, 0, 0.12);
    background: var(--primary-black);
    aspect-ratio: var(--video-aspect, 9 / 16);
}

.promo-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    vertical-align: top;
    background: var(--primary-black);
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.4) 40%,
        rgba(10, 10, 10, 0.6) 100%
    );
    cursor: pointer;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.video-frame.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--light-yellow) 100%);
    color: var(--primary-black);
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.45);
    transition: all var(--transition);
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
}

.video-play-label {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-frame.playing .video-controls {
    opacity: 1;
}

.video-frame.playing:hover .video-controls {
    opacity: 1;
}

.video-ctrl-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-yellow);
    background: rgba(10, 10, 10, 0.7);
    color: var(--primary-yellow);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}

.video-ctrl-btn:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

/* ===================================
   About
   =================================== */
.about {
    background: var(--secondary-black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    color: var(--light-gray);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.about-text strong {
    color: var(--primary-yellow);
}

.about-list {
    list-style: none;
    margin-top: 1.5rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--light-gray);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.about-list i {
    color: var(--primary-yellow);
    font-size: 0.85rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: var(--surface);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
}

.stat-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   Services
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--surface);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.12);
}

.service-card.featured {
    border-color: rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, var(--surface) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-yellow);
    color: var(--primary-black);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-black);
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary-yellow);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-price {
    display: block;
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.2;
    margin-top: 0.25rem;
}

.service-detail {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.35rem;
}

.aftercare-note {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--surface) 0%, rgba(255, 215, 0, 0.06) 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: var(--radius);
}

.aftercare-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-black);
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    color: var(--primary-yellow);
    font-size: 1.25rem;
}

.aftercare-text h3 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.aftercare-text p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===================================
   Highlights
   =================================== */
.highlights {
    background: var(--secondary-black);
    padding: 4rem 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlight-item {
    text-align: center;
}

.highlight-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary-yellow);
    transition: all var(--transition);
}

.highlight-item:hover .highlight-icon {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-4px);
}

.highlight-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===================================
   Branches
   =================================== */
.branches {
    background: var(--secondary-black);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.branch-card {
    background: var(--surface);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius);
    padding: 1.75rem;
    position: relative;
    transition: all var(--transition);
}

.branch-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.branch-card.featured {
    border-color: rgba(255, 215, 0, 0.35);
    background: linear-gradient(135deg, var(--surface) 0%, rgba(255, 215, 0, 0.04) 100%);
}

.branch-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-yellow);
    color: var(--primary-black);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.branch-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.branch-header i {
    color: var(--primary-yellow);
    font-size: 1.1rem;
}

.branch-header h3 {
    font-size: 1.05rem;
    color: var(--white);
}

.branch-address {
    color: var(--light-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.branch-landmarks {
    list-style: none;
    margin-bottom: 1.25rem;
}

.branch-landmarks li {
    position: relative;
    padding-left: 1rem;
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    line-height: 1.5;
}

.branch-landmarks li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
}

.branch-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-yellow);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
}

.branch-link:hover {
    color: var(--light-yellow);
}

.branch-link i {
    font-size: 0.75rem;
}

/* ===================================
   Gallery
   =================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--surface) 0%, var(--secondary-black) 100%);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--gray);
    transition: all var(--transition);
}

.gallery-placeholder i {
    font-size: 2rem;
    color: var(--primary-yellow);
    opacity: 0.5;
}

.gallery-placeholder span {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-item:hover .gallery-placeholder {
    border-color: var(--primary-yellow);
    color: var(--white);
}

.gallery-item:hover .gallery-placeholder i {
    opacity: 1;
}

/* ===================================
   Testimonials
   =================================== */
.testimonials {
    background: var(--secondary-black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
}

.stars {
    color: var(--primary-yellow);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--light-gray);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.testimonial-card footer {
    color: var(--primary-yellow);
    font-size: 0.85rem;
    font-weight: 600;
    font-style: normal;
}

/* ===================================
   Contact
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all var(--transition);
}

.info-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.info-card > i {
    font-size: 1.3rem;
    color: var(--primary-yellow);
    margin-top: 0.2rem;
    width: 24px;
    text-align: center;
}

.info-card h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 0.35rem;
}

.info-card a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition);
}

.info-card a:hover {
    color: var(--primary-yellow);
}

.info-card p {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary-yellow);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
}

.info-link:hover {
    color: var(--light-yellow);
}

.contact-form {
    background: var(--surface);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: var(--radius);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: var(--secondary-black);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-family);
    font-size: 0.95rem;
    outline: none;
    transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffd700' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--secondary-black);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.8rem;
    margin-top: 0.75rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--secondary-black);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 2rem;
    align-items: center;
    padding-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-weight: 600;
    font-size: 1rem;
}

.footer-brand span {
    color: var(--gray);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    color: var(--primary-yellow);
    text-decoration: none;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.social-link--pending {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ===================================
   WhatsApp Float
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ===================================
   Decorations
   =================================== */
.decoration {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.08;
    pointer-events: none;
}

.decoration-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-yellow), transparent);
    top: -150px;
    left: -150px;
    animation: float1 8s ease-in-out infinite;
}

.decoration-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--light-yellow), transparent);
    bottom: -100px;
    right: -100px;
    animation: float2 10s ease-in-out infinite;
}

/* ===================================
   Scroll Reveal
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, 30px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, -40px); }
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 992px) {
    .video-promo-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .video-promo-text h2 {
        font-size: 2rem;
    }

    .video-promo-text .btn {
        margin: 0 auto;
    }

    .video-promo-list {
        display: inline-block;
        text-align: left;
    }

    .video-frame {
        max-width: min(100%, 420px);
        max-height: min(60vh, 640px);
    }

    .services-grid,
    .testimonials-grid,
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: row;
    }

    .stat-card {
        flex: 1;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link.active::after {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .logo-placeholder {
        width: 150px;
        height: 150px;
    }

    .services-grid,
    .highlights-grid,
    .gallery-grid,
    .testimonials-grid,
    .branches-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links,
    .footer-social {
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .video-promo {
        padding: 3rem 0;
    }

    .video-promo-text h2 br {
        display: none;
    }

    .video-frame {
        max-width: 100%;
        width: 100%;
        max-height: min(55vh, 560px);
    }

    .video-play-btn {
        width: 68px;
        height: 68px;
        font-size: 1.4rem;
    }

    .video-play-label {
        font-size: 0.8rem;
    }
}

@media (min-width: 1200px) {
    .video-promo-media {
        justify-content: flex-end;
    }

    .video-frame {
        max-width: min(100%, 500px);
        max-height: min(78vh, 780px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .logo-placeholder {
        width: 120px;
        height: 120px;
    }

    .whatsapp-float {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .video-frame {
        max-height: min(50vh, 480px);
        border-width: 2px;
        border-radius: 14px;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .video-ctrl-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .aftercare-note {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
