/* ============================================
   Minimalist Design - DJR CPA
   Color Palette: #efefef, #005dad, #0a2540, #8898aa
   ============================================ */

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

:root {
    /* Core Color Palette */
    --primary: #0a2540;
    --secondary: #005dad;
    --muted: #8898aa;
    --light-gray: #efefef;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-navbar: #efefef;
    --bg-dark: #0a2540;
    
    /* Text Colors */
    --text-primary: #0a2540;
    --text-secondary: #005dad;
    --text-muted: #8898aa;
    --text-light: #ffffff;
    
    /* Shadows - Subtle */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 20px;
    --card-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 12px;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Transitions - Minimal */
    --transition: 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Top Bar - Clean White
   ============================================ */

.top-bar {
    background: #005dad;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.top-bar-cta {
    background: var(--secondary);
    color: var(--text-light);
    padding: 10px 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    border-radius: var(--border-radius-sm);
    transition: background var(--transition);
}

.top-bar-cta:hover {
    background: var(--primary);
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-icon {
    font-size: 16px;
    color: var(--secondary);
}

.top-bar-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.top-bar-text strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.top-bar-text small {
    font-size: 12px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: 18px;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* ============================================
   Buttons - Minimal Style
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--secondary);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--primary);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--text-light);
}

.btn-light {
    background: var(--bg-primary);
    color: var(--secondary);
}

.btn-light:hover {
    background: var(--bg-secondary);
}

/* ============================================
   Header & Navigation - White with Blue Text
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #005dad;
    z-index: 1000;
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 24px;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
}

.nav-menu {
    margin-left: auto;
}

.nav-logo {
    position: absolute;
    left: 24px;
    top: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    background: #efefef;
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    width: 350px;
}

.logo-icon {
    height: 90px;
    width: 100%;
    max-width: 290px;
    object-fit: contain;
}

.logo-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

.logo-text small {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

.logo-badge {
    background-color: #8898aa;
    color: var(--text-light);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
    margin-left: auto;
}

.nav-link {
    color: #e0e6eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition);
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.active span {
    background-color: #005dad;
}

/* ============================================
   Hero Section - Blends with White Navbar
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(rgba(0, 93, 173, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 93, 173, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, var(--bg-navbar) 0%, var(--bg-primary) 100%);
    background-size: 50px 50px, 50px 50px, 100% 100%;
    background-position: 0 0, 0 0, 0 0;
    padding-top: 120px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 93, 173, 0.08) 0%, rgba(10, 37, 64, 0.06) 100%);
    pointer-events: none;
}

.hero-overlay {
    display: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 60px 24px;
    position: relative;
    z-index: 2;
}

.hero-sidebar {
    background: var(--primary);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-content {
    text-align: left;
}

.hero-title {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.hero-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--secondary);
    border-radius: 3px;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-muted);
}

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

.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary);
    color: var(--text-light);
    padding: 14px 24px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    z-index: 999;
    transition: background var(--transition);
}

.floating-contact:hover {
    background: var(--primary);
}

.contact-icon {
    font-size: 16px;
}

/* ============================================
   Features Section
   ============================================ */

.features {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

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

.feature-card {
    padding: 48px 40px;
    min-height: 200px;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(-50px) rotateX(-15deg);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.feature-card.animate:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-card.animate:nth-child(2) {
    transition-delay: 0.3s;
}

.feature-card.animate:nth-child(3) {
    transition-delay: 0.5s;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.feature-dark {
    background: var(--primary);
}

.feature-dark h3,
.feature-dark p {
    color: var(--text-light);
}

.feature-muted {
    background: var(--muted);
}

.feature-muted h3,
.feature-muted p {
    color: var(--text-light);
}

.feature-light {
    background: var(--light-gray);
}

.feature-light h3 {
    color: var(--text-primary);
}

.feature-light p {
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        min-height: auto;
    }
}

/* ============================================
   Section Styles
   ============================================ */

.section-label {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--secondary);
    width: fit-content;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 25px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Services Section
   ============================================ */

.services {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.services-layout {
    display: block;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.services-main {
    padding: 50px 0;
    background: var(--bg-primary);
    max-width: 100%;
}

.services-main .section-label {
    padding-left: 0;
}

.services-main .section-label::before {
    display: none;
}

.services-main .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.service-with-icon {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 2rem;
    justify-content: center;
}

.service-icon {
    width: 128px;
    height: 128px;
    color: var(--secondary);
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0;
}

.service-block {
    margin-bottom: 1rem;
    padding: 12px;
    background: var(--light-gray);
    border-radius: var(--card-radius);
    border-left: 3px solid transparent;
    transition: border-color var(--transition);
    flex: 1;
    max-width: 500px;
}

.service-block:hover {
    border-left-color: var(--secondary);
}

.service-block h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.service-block p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.discount-list {
    list-style-type: none;
    padding: 0;
    color: var(--text-muted);
}

.discount-list li {
    margin-bottom: 0.75rem;
    padding-left: 24px;
    position: relative;
    line-height: 1.7;
    font-size: 0.95rem;
}

.discount-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 600;
}

.services-sidebar {
    background: var(--primary);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 4px solid var(--secondary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.sidebar-label {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.sidebar-title {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

/* ============================================
   Additional Services
   ============================================ */

.additional-services {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.additional-services-title {
    font-size: 25px;
    font-weight: 600;
    color: var(--text-primary);
    max-width: 500px;
    line-height: 1.4;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

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

.additional-service-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.additional-service-card:hover {
    box-shadow: var(--shadow-md);
}

.additional-service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.additional-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.additional-service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 20px;
    margin: 0;
}

/* ============================================
   CTA Banner
   ============================================ */

.cta-banner {
    padding: 80px 24px;
    background: var(--primary);
}

.cta-label {
    display: inline-block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.cta-title {
    color: var(--text-light);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.4;
    max-width: 650px;
    margin: 0;
}

/* ============================================
   How It Works / Process Section
   ============================================ */

.process {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.process-label {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--secondary);
    width: fit-content;
}

.process-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

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

.process-card {
    background: var(--bg-primary);
    padding: 28px;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--secondary);
}

.process-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.process-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Booking Section
   ============================================ */

.booking {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.booking-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--primary);
    padding: 60px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.booking-content {
    color: var(--text-light);
}

.booking-content h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.booking-content p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.booking-description {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.booking-preview {
    display: flex;
    justify-content: center;
}

.preview-card {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: var(--card-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 300px;
}

.preview-icon {
    font-size: 32px;
    background: var(--secondary);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
}

.preview-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.preview-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   About Section
   ============================================ */

.about {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.about .section-title {
    margin-bottom: 2.5rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    text-align: center;
}

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

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 3rem;
}

.value {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-primary);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
}

.value:nth-child(1) {
    background: var(--primary);
}

.value:nth-child(1) h4,
.value:nth-child(1) p {
    color: var(--text-light);
}

.value:nth-child(2) {
    background: var(--muted);
}

.value:nth-child(2) h4,
.value:nth-child(2) p {
    color: var(--text-light);
}

.value:nth-child(3) {
    background: var(--bg-secondary);
}

.value h4 {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value:nth-child(3) h4 {
    color: var(--text-primary);
}

.value p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   Partners Section
   ============================================ */

.partners {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.partner-logo {
    background: var(--light-gray);
    padding: 32px;
    border-radius: var(--card-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-placeholder {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ============================================
   Contact Info Section
   ============================================ */

.contact-info {
    padding: var(--section-padding);
    background: var(--secondary);
    color: var(--text-light);
}

.contact-info-title {
    color: var(--text-light);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 650px;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item .contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .contact-info {
        padding: 80px 20px;
    }
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--primary);
    color: var(--text-light);
    padding: 60px 24px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition);
}

.footer-section ul li a:hover {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    font-size: 13px;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .services-layout {
        grid-template-columns: 1fr;
    }
    
    .services-sidebar {
        padding: 40px;
    }
    
    .booking-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 20px;
    }
    
    .header {
        position: static;
    }
    
    .nav {
        padding: 1.5rem 24px;
    }
    
    .nav-logo {
        position: absolute;
        left: 24px;
        top: 20px;
        width: 220px;
        padding: 25px 20px;
        background: #efefef;
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
    }
    
    .logo-icon {
        height: 80px;
        max-width: 220px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        background: var(--bg-navbar);
        padding: 150px 40px 40px;
        gap: 20px;
        transition: right var(--transition);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.125rem;
        color: #005dad !important;
        position: relative;
        padding-bottom: 8px;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: #0a2540 !important;
    }
    
    .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: #0a2540;
    }
    
    .nav-toggle {
        display: flex;
        position: relative;
        right: 0;
        top: 0;
        margin-left: auto;
    }
    
    .hero {
        min-height: 85vh;
        padding-top: 0;
        margin-top: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 24px;
        padding-top: 100px;
    }
    
    .hero-sidebar {
        padding: 40px 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn {
        width: 100%;
        max-width: 180px;
    }
    
    .service-with-icon {
        flex-direction: column;
        align-items: center;
    }
    
    .service-block {
        width: 100%;
        max-width: 100%;
    }
    
    .additional-services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .floating-contact {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }
    
    .floating-contact span:last-child {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-main {
        padding: 30px 20px;
    }
    
    .booking-card {
        padding: 30px 20px;
    }
    
    .preview-card {
        padding: 28px 20px;
    }
    
    .value {
        padding: 24px 20px;
    }
}

/* ============================================
   Accessibility
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
    .header,
    .floating-contact,
    .nav-toggle {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    * {
        background: white !important;
        color: black !important;
    }
}
