/* ============================================
   Farmacia Maravillas — Premium Dark Luxury
   Color Palette: Deep Slate + Teal + Gold
   ============================================ */

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

:root {
    --bg-primary: #0B1318;
    --bg-secondary: #111D24;
    --bg-card: #152028;
    --bg-card-hover: #1A2A34;
    --slate-800: #1E2D36;
    --slate-700: #2A3F4A;
    --slate-600: #3D5460;
    --slate-500: #5A7A8A;
    --slate-400: #8BA4B0;
    --slate-300: #B0C4CC;
    --slate-200: #D0DEE4;
    --slate-100: #E8EFF3;
    --teal-900: #043940;
    --teal-800: #064E57;
    --teal-700: #0D6B76;
    --teal-600: #148A99;
    --teal-500: #1BA8BB;
    --teal-400: #3DC4D4;
    --teal-300: #6DD8E4;
    --gold-600: #A8872E;
    --gold-500: #C9A84C;
    --gold-400: #D4B96A;
    --gold-300: #E0CC8A;
    --gold-200: #EEDDAA;
    --gold-100: #F5E8C0;
    --text-primary: #F0F4F6;
    --text-secondary: #A8BEC8;
    --text-muted: #6B8A98;
    --border-color: rgba(201, 168, 76, 0.15);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.12);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Raleway', 'Segoe UI', sans-serif;
    --sidebar-width: 280px;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.2s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
    font-weight: 600;
}

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

a:hover {
    color: var(--gold-400);
}

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

/* --- Utility --- */
.text-gold { color: var(--gold-500); }
.text-teal { color: var(--teal-400); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
    text-decoration: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--bg-primary);
    box-shadow: 0 6px 30px rgba(201, 168, 76, 0.45);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--gold-500);
    color: var(--gold-400);
    background: rgba(201, 168, 76, 0.06);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Section Common --- */
.section {
    padding: 100px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 16px;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold-600);
    vertical-align: middle;
    margin: 0 10px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================
   SIDEBAR NAVIGATION
   ============================================ */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-subtle);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    transition: transform var(--transition-smooth);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

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

.logo-cross {
    position: relative;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.cross-v {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 26px;
    background: linear-gradient(180deg, var(--gold-500), var(--gold-600));
    border-radius: 2px;
}

.cross-h {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-600));
    border-radius: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-400);
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition-fast);
}

.sidebar-close:hover {
    color: var(--gold-400);
}

.sidebar-contact-mini {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.sidebar-contact-item:hover {
    color: var(--gold-400);
}

.sidebar-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
}

.sidebar-nav li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 0;
    background: var(--gold-500);
    border-radius: 2px;
    transition: height var(--transition-fast);
}

.sidebar-nav li a:hover,
.sidebar-nav li a.active {
    color: var(--text-primary);
    background: rgba(201, 168, 76, 0.06);
}

.sidebar-nav li a:hover::before,
.sidebar-nav li a.active::before {
    height: 24px;
}

.sidebar-nav li a.active {
    color: var(--gold-400);
}

.nav-number {
    font-size: 0.68rem;
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--slate-600);
    min-width: 20px;
    transition: color var(--transition-fast);
}

.sidebar-nav li a:hover .nav-number,
.sidebar-nav li a.active .nav-number {
    color: var(--gold-600);
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.sidebar-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.sidebar-address svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--gold-600);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 107, 118, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(201, 168, 76, 0.05);
    top: 10%;
    left: 5%;
}

.hero-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(13, 107, 118, 0.06);
    bottom: 10%;
    right: 30%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 32px;
}

.badge-line {
    width: 32px;
    height: 1px;
    background: var(--gold-500);
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero-title .text-gold {
    font-style: italic;
}

.hero-title .text-teal {
    color: var(--teal-400);
    font-style: italic;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 24px 0;
    border-top: 1px solid var(--border-subtle);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-subtle);
    margin: 0 20px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--gold-600);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--bg-secondary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 36px 28px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-600), var(--gold-500));
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    margin-bottom: 24px;
    color: var(--gold-500);
    transition: all var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: rgba(201, 168, 76, 0.14);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-muted);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--bg-primary);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-img-main img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 240px;
    border-radius: 10px;
    overflow: hidden;
    border: 4px solid var(--bg-primary);
    box-shadow: var(--shadow-card);
}

.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--bg-primary);
    padding: 20px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

.about-content {
    padding-left: 20px;
}

.about-content .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.about-content .section-tag::before,
.about-content .section-tag::after {
    display: none;
}

.about-content .section-title {
    margin-bottom: 28px;
}

.about-text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
}

.feature-icon-small {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--gold-500);
    flex-shrink: 0;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
    background: var(--bg-secondary);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.product-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-smooth);
}

.product-card:hover {
    border-color: var(--border-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.product-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.product-card:hover .product-img img {
    transform: scale(1.06);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 19, 24, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--gold-600);
    padding: 8px 16px;
    border-radius: 6px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px 20px 6px;
    color: var(--text-primary);
}

.product-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 0 20px 20px;
    line-height: 1.6;
}

.products-cta {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.products-cta p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.products-cta a {
    color: var(--gold-500);
    font-weight: 600;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    padding-bottom: 2px;
    transition: border-color var(--transition-fast);
}

.products-cta a:hover {
    border-color: var(--gold-500);
}

/* ============================================
   SCHEDULE SECTION
   ============================================ */
.schedule {
    background: var(--bg-primary);
}

.schedule-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-content {
    padding-right: 20px;
}

.schedule-content .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.schedule-content .section-tag::before,
.schedule-content .section-tag::after {
    display: none;
}

.schedule-content .section-title {
    margin-bottom: 16px;
}

.schedule-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
}

.schedule-table {
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    overflow: hidden;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border-subtle);
    transition: background var(--transition-fast);
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row:hover {
    background: rgba(201, 168, 76, 0.04);
}

.schedule-day {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.schedule-hours {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.schedule-closed .schedule-hours {
    color: var(--slate-500);
    font-style: italic;
}

.schedule-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.schedule-note svg {
    color: var(--gold-600);
    flex-shrink: 0;
}

.schedule-map {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.map-placeholder img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    filter: saturate(0.6) brightness(0.7);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(11, 19, 24, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px 18px;
    backdrop-filter: blur(8px);
}

.map-overlay p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.map-overlay strong {
    color: var(--text-primary);
    font-size: 0.88rem;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, -100%); }
    50% { transform: translate(-50%, -115%); }
}

.map-btn {
    text-align: center;
    justify-content: center;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--bg-secondary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

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

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 28px 24px;
    transition: all var(--transition-smooth);
}

.contact-card:hover {
    border-color: var(--border-color);
    background: var(--bg-card-hover);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    color: var(--gold-500);
    flex-shrink: 0;
}

.contact-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.contact-card-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-card-content a {
    color: var(--teal-400);
    transition: color var(--transition-fast);
}

.contact-card-content a:hover {
    color: var(--gold-400);
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 40px;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--text-primary);
}

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-600);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.success-icon {
    margin-bottom: 20px;
}

.form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 64px 60px 0;
    margin-left: var(--sidebar-width);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-cross {
    position: relative;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.f-cross-v {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 24px;
    background: linear-gradient(180deg, var(--gold-500), var(--gold-600));
    border-radius: 2px;
}

.f-cross-h {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-600));
    border-radius: 2px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.f-name {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-400);
}

.f-sub {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links ul li a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--gold-400);
}

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-contact ul li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--gold-600);
}

.footer-contact ul li a {
    color: var(--text-muted);
}

.footer-contact ul li a:hover {
    color: var(--gold-400);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--slate-500);
}

/* ============================================
   MOBILE TOGGLE
   ============================================ */
.mobile-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1100;
    width: 44px;
    height: 44px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--gold-500);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.mobile-toggle.open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    backdrop-filter: blur(4px);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    :root {
        --sidebar-width: 240px;
    }
    
    .hero {
        gap: 40px;
    }
    
    .about-layout {
        gap: 50px;
    }
}

@media (max-width: 900px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .sidebar-close {
        display: flex;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-overlay.open {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .footer {
        margin-left: 0;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 80px;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-image img {
        height: 400px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-img-secondary {
        right: 0;
        bottom: -30px;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .schedule-layout {
        grid-template-columns: 1fr;
    }
    
    .schedule-content {
        padding-right: 0;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .section {
        padding: 72px 28px;
    }
    
    .footer {
        padding: 48px 28px 0;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
        margin: 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
