/* ============================================
   Farmàcia Lantigua — Styles
   Palette: Deep Navy (#1B2A4A) + Warm Gold (#C8A961)
   Fonts: Playfair Display + Inter
   ============================================ */

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

:root {
    --navy: #1B2A4A;
    --navy-light: #2A3F6A;
    --navy-dark: #131F36;
    --gold: #C8A961;
    --gold-light: #D4BA7A;
    --gold-pale: #F5EDD6;
    --cream: #FAFAF7;
    --cream-dark: #F2F0EB;
    --white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-mid: #4A4A5A;
    --text-light: #7A7A8A;
    --border: #E8E6E0;
    --sidebar-width: 260px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.06);
    --shadow-md: 0 8px 30px rgba(27, 42, 74, 0.10);
    --shadow-lg: 0 20px 60px rgba(27, 42, 74, 0.14);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- Mobile Header --- */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-logo-icon {
    font-size: 20px;
    color: var(--gold);
}

.mobile-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(27, 42, 74, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.mobile-nav {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 80%;
    max-width: 320px;
    box-shadow: var(--shadow-lg);
}

.mobile-nav-link {
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--gold-pale);
    color: var(--navy);
}

/* --- Side Navigation --- */
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    z-index: 900;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.side-nav::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(200, 169, 97, 0.2), transparent);
}

.side-nav-inner {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-between;
    padding: 48px 32px 36px;
    width: 100%;
}

.side-nav-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    background: rgba(200, 169, 97, 0.15);
    border: 1px solid rgba(200, 169, 97, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-cross {
    font-size: 22px;
    color: var(--gold);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.brand-sub {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
}

.side-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.side-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.side-nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
}

.side-nav-link.active {
    background: rgba(200, 169, 97, 0.15);
    color: var(--gold);
    font-weight: 500;
}

.side-nav-footer {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.side-nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

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

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

/* --- Section Base --- */
.section {
    padding: 100px 60px;
    position: relative;
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 24px;
}

.section-title-center {
    text-align: center;
}

.section-title .title-accent {
    color: var(--gold);
    font-style: italic;
}

.section-description {
    font-size: 17px;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.8;
}

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

.section-header-center .section-description {
    margin: 0 auto;
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--cream);
    padding: 0;
    overflow: hidden;
}

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

.hero-gradient-1 {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(200, 169, 97, 0.08) 0%, transparent 70%);
}

.hero-gradient-2 {
    position: absolute;
    bottom: -30%;
    left: 20%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(27, 42, 74, 0.04) 0%, transparent 70%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(200, 169, 97, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 520px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

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

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

.hero-title {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--navy);
}

.hero-title .title-accent {
    color: var(--gold);
    font-style: italic;
}

.hero-description {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(27, 42, 74, 0.3);
}

.btn-primary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 42, 74, 0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 560px;
}

.hero-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-1 {
    width: 280px;
    height: 360px;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.hero-card-2 {
    width: 240px;
    height: 200px;
    bottom: 40px;
    right: 0;
    z-index: 3;
}

.hero-floating-badge {
    position: absolute;
    bottom: 180px;
    left: -10px;
    z-index: 4;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.floating-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    flex-shrink: 0;
}

.floating-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    animation: float 2.5s ease-in-out infinite;
}

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

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

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

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

.about-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--gold-pale);
    border-radius: var(--radius-md);
    z-index: -1;
}

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

.about-content p {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.value-text strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.value-text span {
    font-size: 14px;
    color: var(--text-light);
}

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

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

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

.service-icon-wrap {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold-pale), rgba(200, 169, 97, 0.2));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--navy);
}

.service-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
}

/* --- Schedule Section --- */
.schedule-section {
    background: var(--white);
}

.schedule-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.schedule-description {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 40px;
}

.schedule-table {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
}

.schedule-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 14px 24px;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

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

.schedule-row:hover {
    background: var(--cream);
}

.schedule-row-header {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.schedule-row-closed span:last-child {
    color: var(--gold);
    font-weight: 600;
}

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

.schedule-visual {
    position: relative;
}

.schedule-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.schedule-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* --- Contact Section --- */
.contact-section {
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.contact-card-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.contact-card-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.5;
}

.contact-card > svg {
    color: var(--text-light);
    flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.form-title {
    font-size: 24px;
    margin-bottom: 28px;
    color: var(--navy);
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group .optional {
    font-weight: 400;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 169, 97, 0.15);
}

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

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
    border: 1px solid #A5D6A7;
    border-radius: var(--radius-sm);
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #2E7D32;
}

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

.form-success svg {
    color: #4CAF50;
    flex-shrink: 0;
}

/* --- Footer --- */
.site-footer {
    background: var(--navy);
    color: var(--white);
    padding: 64px 60px 32px;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-cross {
    width: 36px;
    height: 36px;
    background: rgba(200, 169, 97, 0.2);
    border: 1px solid rgba(200, 169, 97, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gold);
}

.footer-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-phone,
.footer-email {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* --- 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: 1100px) {
    .hero-container {
        gap: 40px;
    }
    
    .hero-visual {
        height: 460px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    :root {
        --sidebar-width: 0px;
    }
    
    .side-nav {
        display: none;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .section {
        padding: 80px 28px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        padding: 100px 28px 60px;
        gap: 48px;
    }
    
    .hero-visual {
        height: 360px;
        order: -1;
    }
    
    .hero-card-1 {
        width: 200px;
        height: 260px;
    }
    
    .hero-card-2 {
        width: 180px;
        height: 150px;
    }
    
    .hero-floating-badge {
        bottom: 120px;
        left: 10px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .about-grid,
    .schedule-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-content,
    .schedule-content {
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .site-footer {
        padding: 48px 28px 28px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 64px 20px;
    }
    
    .hero-container {
        padding: 88px 20px 40px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .contact-form-wrap {
        padding: 28px 20px;
    }
    
    .schedule-row {
        padding: 12px 16px;
        font-size: 14px;
    }
}
