/* CSS Variables for Design System */
:root {
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(224, 71.4%, 4.1%);

    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(224, 71.4%, 4.1%);

    --popover: hsl(0, 0%, 100%);
    --popover-foreground: hsl(224, 71.4%, 4.1%);

    --primary: hsl(221.2, 83.2%, 53.3%);
    --primary-foreground: hsl(210, 40%, 98%);
    --primary-light: hsl(213.1, 93.9%, 67.8%);
    --primary-dark: hsl(224, 76.3%, 48%);

    --secondary: hsl(210, 40%, 96.1%);
    --secondary-foreground: hsl(224, 71.4%, 4.1%);

    --muted: hsl(220, 14.3%, 95.9%);
    --muted-foreground: hsl(220, 8.9%, 46.1%);

    --accent: hsl(220, 14.3%, 95.9%);
    --accent-foreground: hsl(220, 8.9%, 46.1%);

    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(210, 40%, 98%);

    --border: hsl(220, 13%, 91%);
    --input: hsl(220, 13%, 91%);
    --ring: hsl(221.2, 83.2%, 53.3%);

    /* Custom design tokens */
    --hero-gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --section-gradient: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
    --text-gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    
    --shadow-soft: 0 4px 6px -1px hsla(221.2, 83.2%, 53.3%, 0.1);
    --shadow-medium: 0 10px 15px -3px hsla(221.2, 83.2%, 53.3%, 0.1);
    --shadow-strong: 0 25px 50px -12px hsla(221.2, 83.2%, 53.3%, 0.25);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    --radius: 0.5rem;
}

/* Dark mode variables */
@media (prefers-color-scheme: dark) {
    :root {
        --background: hsl(224, 71.4%, 4.1%);
        --foreground: hsl(210, 40%, 98%);

        --card: hsl(224, 71.4%, 4.1%);
        --card-foreground: hsl(210, 40%, 98%);

        --popover: hsl(224, 71.4%, 4.1%);
        --popover-foreground: hsl(210, 40%, 98%);

        --primary: hsl(213.1, 93.9%, 67.8%);
        --primary-foreground: hsl(224, 71.4%, 4.1%);
        --primary-light: hsl(221.2, 83.2%, 53.3%);
        --primary-dark: hsl(224, 76.3%, 48%);

        --secondary: hsl(215, 27.9%, 16.9%);
        --secondary-foreground: hsl(210, 40%, 98%);

        --muted: hsl(215, 27.9%, 16.9%);
        --muted-foreground: hsl(217.9, 10.6%, 64.9%);

        --accent: hsl(215, 27.9%, 16.9%);
        --accent-foreground: hsl(210, 40%, 98%);

        --destructive: hsl(0, 62.8%, 30.6%);
        --destructive-foreground: hsl(210, 40%, 98%);

        --border: hsl(215, 27.9%, 16.9%);
        --input: hsl(215, 27.9%, 16.9%);
        --ring: hsl(213.1, 93.9%, 67.8%);

        --hero-gradient: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
        --section-gradient: linear-gradient(180deg, var(--background) 0%, var(--secondary) 100%);
        --text-gradient: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    overflow-x: hidden;
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utility classes */
.hidden {
    display: none !important;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.fade-in {
    animation: fade-in 0.6s ease-out;
}

.slide-in {
    animation: slide-in 0.5s ease-out;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
    border-bottom-color: var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-svg {
    height: 3rem;
    width: 3rem;
}

.logo-path {
    fill: var(--primary);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary);
}

.phone-desktop {
    display: none;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
}

@media (min-width: 768px) {
    .phone-desktop {
        display: flex;
    }
}

.phone-icon {
    width: 1rem;
    height: 1rem;
}

.phone-link {
    font-weight: 600;
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.phone-link:hover {
    color: var(--primary-dark);
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
    transition: var(--transition-smooth);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-icon,
.close-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.nav-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    border-top: 1px solid var(--border);
    animation: fade-in 0.3s ease-out;
}

.nav-mobile-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.phone-mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
}

.nav-mobile-link {
    background: none;
    border: none;
    text-align: left;
    padding: 0.5rem 0;
    color: var(--foreground);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.nav-mobile-link:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--hero-gradient);
    color: var(--primary-foreground);
    border-color: transparent;
}

.btn-primary:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

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

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

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        transparent 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 4rem;
}

.hero-text {
    max-width: 64rem;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title-line1 {
    color: var(--foreground);
}

.hero-title-line2 {
    background: var(--text-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 32rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-buttons .btn {
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .feature-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--muted-foreground);
}

/* Floating Elements */
.floating-element-1 {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: hsla(221.2, 83.2%, 53.3%, 0.2);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.floating-element-2 {
    position: absolute;
    top: 33%;
    right: 25%;
    width: 3rem;
    height: 3rem;
    background: hsla(213.1, 93.9%, 67.8%, 0.3);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1s;
}

@media (max-width: 1024px) {
    .floating-element-1 {
        display: none;
    }
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--text-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--section-gradient);
}

.services-intro {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .services-intro {
        grid-template-columns: 1fr 1fr;
    }
}

.services-image {
    animation-delay: 0s;
}

.services-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
    width: 100%;
    height: auto;
}

.services-benefits {
    animation-delay: 0.3s;
}

.benefits-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.benefit-dot {
    width: 1.5rem;
    height: 1.5rem;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.benefit-description {
    color: var(--muted-foreground);
}

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

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.service-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.service-header {
    text-align: center;
    padding: 1.5rem 1.5rem 1rem;
}

.service-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background: var(--hero-gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary-foreground);
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.service-content {
    padding: 0 1.5rem 1.5rem;
}

.service-description {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
}

/* Office Section */
.office {
    padding: 5rem 0;
}

.office-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .office-content {
        grid-template-columns: 1fr 1fr;
    }
}

.office-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
    width: 100%;
    height: auto;
}

.office-subtitle {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.office-description {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.office-features {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .office-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .office-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

.office-feature {
    text-align: center;
}

.office-feature-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary);
    margin: 0 auto 1rem;
}

.office-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.office-feature-description {
    color: var(--muted-foreground);
    line-height: 1.5;
}

.office-hours {
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.office-hours-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.office-hours-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.office-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.office-hours-item:last-child {
    border-bottom: none;
}

.office-hours-day {
    font-weight: 600;
}

.office-hours-time {
    color: var(--muted-foreground);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--section-gradient);
}

.about-story {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .about-story {
        grid-template-columns: 2fr 1fr;
    }
}

.about-story-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.about-story-text {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

@media (min-width: 640px) {
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-item {
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1rem;
    box-shadow: var(--shadow-soft);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
}

.stat-label {
    color: var(--muted-foreground);
    font-weight: 600;
}

.about-values {
    margin-bottom: 4rem;
}

.values-title {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

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

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.value-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.value-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary);
    margin: 0 auto 1rem;
}

.value-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.value-description {
    color: var(--muted-foreground);
    line-height: 1.5;
}

.about-timeline {
    text-align: center;
}

.timeline-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.timeline {
    max-width: 48rem;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    text-align: left;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    min-width: 5rem;
}

.timeline-content {
    flex: 1;
}

.timeline-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-item-description {
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

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

@media (min-width: 768px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-info {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary);
    margin: 0 auto 1rem;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-content {
    margin-bottom: 0.75rem;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.4;
}

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

@media (min-width: 1024px) {
    .contact-additional {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-map {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.map-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--muted);
}

.map-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary);
    margin: 0 auto 1rem;
}

.map-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.map-description {
    color: var(--muted-foreground);
    line-height: 1.5;
}

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

.contact-detail {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.contact-detail-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-detail-description {
    color: var(--muted-foreground);
    line-height: 1.5;
}

.contact-emergency {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.emergency-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--destructive);
}

.emergency-description {
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.emergency-phone {
    font-size: 1.125rem;
    font-weight: 600;
}

.emergency-link {
    color: var(--destructive);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.emergency-link:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1rem;
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.footer-description {
    color: var(--muted-foreground);
    line-height: 1.5;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.footer-link {
    color: var(--foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--primary);
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.footer-nav-link {
    background: none;
    border: none;
    text-align: left;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0.25rem 0;
}

.footer-nav-link:hover {
    color: var(--primary);
}

.footer-services {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-service {
    color: var(--muted-foreground);
    padding: 0.25rem 0;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copyright {
    color: var(--muted-foreground);
}

.footer-legal {
    display: flex;
    gap: 1rem;
}

.footer-legal-link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.footer-legal-link:hover {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 640px) {
    .hero-buttons {
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .services,
    .office,
    .about,
    .contact {
        padding: 3rem 0;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .timeline-year {
        min-width: auto;
    }
}

/* Print styles */
@media print {
    .header,
    .floating-element-1,
    .floating-element-2 {
        display: none;
    }

    body {
        color: black;
        background: white;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-bg {
        display: none;
    }
}