/* ===== CSS Variables ===== */
:root {
    --plum-deep: #0d0514;
    --plum-dark: #1a0a2e;
    --plum-mid: #2d1b4e;
    --plum-light: #3d2a5c;
    --plum-accent: #5a3d7a;
    --amber: #d4a017;
    --amber-light: #e8b94a;
    --amber-glow: rgba(212, 160, 23, 0.15);
    --amber-glow-strong: rgba(212, 160, 23, 0.3);
    --gold-gradient: linear-gradient(135deg, #d4a017 0%, #f0c94d 50%, #d4a017 100%);
    --text-primary: #f5f0ff;
    --text-secondary: #c4b5d4;
    --text-muted: #8a7aaa;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
}

body {
    font-family: var(--font-body);
    background: var(--plum-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/* ===== Side Navigation ===== */
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, var(--plum-dark) 0%, var(--plum-deep) 100%);
    border-right: 1px solid rgba(212, 160, 23, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 1.5rem;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 160, 23, 0.15);
    margin-bottom: 2rem;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amber-glow);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 10px;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--amber);
    background: var(--amber-glow);
}

.nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--amber);
    border-radius: 0 4px 4px 0;
}

.nav-num {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--amber);
    opacity: 0.6;
    letter-spacing: 0.05em;
    min-width: 18px;
}

.nav-contact {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 160, 23, 0.15);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-phone:hover {
    color: var(--amber);
}

/* Nav Toggle (mobile) */
.nav-toggle {
    display: none;
    position: fixed;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 1001;
    width: 48px;
    height: 48px;
    background: var(--plum-mid);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-toggle:hover {
    background: var(--plum-light);
}

/* Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 5, 20, 0.85);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
}

/* ===== Main Content ===== */
.main-content {
    margin-left: 280px;
    min-height: 100vh;
}

/* ===== Section Base ===== */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    background: var(--amber-glow);
    border: 1px solid rgba(212, 160, 23, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.text-gold {
    color: var(--amber);
}

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

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(90, 61, 122, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(212, 160, 23, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(90, 61, 122, 0.4);
    top: -100px;
    right: 200px;
}

.hero-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(212, 160, 23, 0.1);
    bottom: -50px;
    left: 100px;
}

.hero-content {
    flex: 1;
    max-width: 560px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--amber);
    background: var(--amber-glow);
    border: 1px solid rgba(212, 160, 23, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--plum-deep);
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(212, 160, 23, 0.3);
}

.btn-outline:hover {
    border-color: var(--amber);
    background: var(--amber-glow);
    color: var(--amber);
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--amber);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 160, 23, 0.2);
    flex-shrink: 0;
}

.hero-image {
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 420px;
    height: 560px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(212, 160, 23, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.hero-image-accent {
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* ===== Services Section ===== */
.services-section {
    background: linear-gradient(180deg, var(--plum-deep) 0%, var(--plum-dark) 50%, var(--plum-deep) 100%);
}

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

.service-card {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.5) 0%, rgba(26, 10, 46, 0.8) 100%);
    border: 1px solid rgba(212, 160, 23, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    border-color: rgba(212, 160, 23, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amber-glow);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 14px;
    margin-bottom: 1.25rem;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

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

/* ===== About Section ===== */
.about-section {
    background: var(--plum-deep);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-group {
    position: relative;
}

.about-image-main {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(212, 160, 23, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

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

.about-image-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--plum-deep);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

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

.about-experience {
    position: absolute;
    top: -1.5rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    color: var(--plum-deep);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.3);
    z-index: 2;
}

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

.about-experience .exp-text {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0.25rem;
}

.about-content {
    max-width: 480px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(45, 27, 78, 0.4);
    border: 1px solid rgba(212, 160, 23, 0.08);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.value-item:hover {
    border-color: rgba(212, 160, 23, 0.2);
    color: var(--text-primary);
}

.value-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amber-glow);
    border-radius: 8px;
}

/* ===== Schedule Section ===== */
.schedule-section {
    background: linear-gradient(180deg, var(--plum-deep) 0%, var(--plum-dark) 100%);
}

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

.schedule-table {
    margin-top: 2rem;
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(212, 160, 23, 0.06);
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.schedule-row.header-row {
    background: rgba(45, 27, 78, 0.5);
    font-weight: 600;
    color: var(--amber);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.schedule-row:not(.header-row):hover {
    background: var(--amber-glow);
}

.schedule-row.closed {
    color: var(--text-muted);
}

.schedule-row.closed span:last-child {
    color: var(--text-muted);
}

.schedule-note {
    margin-top: 1.25rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.schedule-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-card {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.5) 0%, rgba(26, 10, 46, 0.8) 100%);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
}

.visual-card:hover {
    border-color: rgba(212, 160, 23, 0.2);
    transform: translateY(-2px);
}

.visual-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amber-glow);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 16px;
    margin-bottom: 1.25rem;
}

.visual-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.visual-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--plum-deep);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(45, 27, 78, 0.4);
    border: 1px solid rgba(212, 160, 23, 0.08);
    border-radius: 16px;
    transition: var(--transition);
}

.contact-item:hover {
    border-color: rgba(212, 160, 23, 0.2);
    background: rgba(45, 27, 78, 0.6);
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amber-glow);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 12px;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.5) 0%, rgba(26, 10, 46, 0.8) 100%);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(13, 5, 20, 0.6);
    border: 1px solid rgba(212, 160, 23, 0.12);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--amber);
    background: rgba(13, 5, 20, 0.8);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

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

.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amber-glow);
    border: 2px solid rgba(212, 160, 23, 0.3);
    border-radius: 50%;
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

/* ===== Map Section ===== */
.map-section {
    border-top: 1px solid rgba(212, 160, 23, 0.1);
    border-bottom: 1px solid rgba(212, 160, 23, 0.1);
}

.map-section iframe {
    width: 100%;
    height: 350px;
}

/* ===== Footer ===== */
.footer {
    background: var(--plum-dark);
    border-top: 1px solid rgba(212, 160, 23, 0.1);
    padding: 4rem 0 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amber-glow);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 8px;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.footer-contact a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--amber);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 160, 23, 0.08);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .hero-image img {
        width: 340px;
        height: 460px;
    }
}

@media (max-width: 1024px) {
    .side-nav {
        transform: translateX(-100%);
    }

    .side-nav.open {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-overlay.active {
        display: block;
    }

    .main-content {
        margin-left: 0;
    }

    .hero-section {
        padding: 6rem 2rem 4rem;
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

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

    .hero-description {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .hero-image img {
        width: 280px;
        height: 370px;
    }

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

    .about-grid,
    .schedule-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-group {
        max-width: 480px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }

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

    .about-image-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 1rem;
    }

    .about-image-main img,
    .about-image-secondary img {
        height: 280px;
    }

    .about-experience {
        top: -1rem;
        right: 1rem;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .schedule-wrapper {
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 5rem 1.25rem 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .hero-image img {
        width: 100%;
        height: 320px;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* ===== Scroll Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }
