/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Design System Variables */
:root {
    --background: hsl(210, 40%, 98%);
    --foreground: hsl(222.2, 84%, 4.9%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(222.2, 84%, 4.9%);
    --primary: hsl(200, 95%, 55%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-soft: hsl(200, 60%, 85%);
    --secondary: hsl(210, 40%, 96.1%);
    --secondary-foreground: hsl(222.2, 47.4%, 11.2%);
    --muted: hsl(210, 40%, 96.1%);
    --muted-foreground: hsl(215.4, 16.3%, 46.9%);
    --accent: hsl(190, 80%, 70%);
    --accent-foreground: hsl(0, 0%, 100%);
    --border: hsl(214.3, 31.8%, 91.4%);
    --radius: 0.5rem;
    
    /* Custom gradients and shadows */
    --gradient-primary: linear-gradient(135deg, hsl(200, 95%, 55%), hsl(190, 80%, 70%));
    --gradient-soft: linear-gradient(180deg, hsl(210, 40%, 98%), hsl(200, 60%, 95%));
    --shadow-soft: 0 4px 20px -4px hsl(200, 95%, 55%, 0.15);
    --shadow-elevated: 0 10px 40px -10px hsl(200, 95%, 55%, 0.25);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-soft);
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-soft);
    opacity: 0.8;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background-color: hsl(200, 95%, 55%, 0.1);
}

.floating-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 6rem;
    height: 6rem;
    background-color: hsl(190, 80%, 70%, 0.1);
    animation-delay: 1s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    animation: fade-in 0.6s ease-out;
}

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

.hero-description {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    animation: fade-in 0.6s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    animation: fade-in 0.6s ease-out 0.4s both;
}

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

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

.trust-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0.6;
}

.stars {
    font-size: 2rem;
    font-weight: bold;
}

.rating-text {
    font-size: 0.875rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    padding: 0.75rem 2rem;
    min-height: 2.75rem;
}

.btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.btn-hero {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-elevated);
    border: 0;
}

.btn-hero:hover {
    box-shadow: var(--shadow-elevated);
    transform: scale(1.05);
}

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

.btn-soft:hover {
    background-color: hsl(200, 60%, 80%);
}

.btn-lg {
    font-size: 1.125rem;
    padding: 1.5rem 2rem;
}

.btn-full {
    width: 100%;
}

/* Services Section */
.services {
    padding: 5rem 1.5rem;
    background-color: var(--background);
}

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

.section-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background-color: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: var(--shadow-elevated);
    transform: scale(1.05);
}

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

.service-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--card-foreground);
}

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

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

.service-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
}

/* Features Section */
.features {
    padding: 5rem 1.5rem;
    background: var(--gradient-soft);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: var(--shadow-elevated);
}

.feature-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

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

/* Contact Section */
.contact {
    padding: 5rem 1.5rem;
    background-color: var(--background);
}

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

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

.contact-info {
    background-color: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
}

.contact-info-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--card-foreground);
    margin-bottom: 0.5rem;
}

.contact-info-subtitle {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-icon {
    font-size: 1.25rem;
}

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

.contact-value {
    color: var(--muted-foreground);
}

.contact-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.cta-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--foreground);
    text-align: center;
}

.cta-description {
    color: var(--muted-foreground);
    text-align: center;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.promo-banner {
    background-color: hsl(200, 60%, 85%, 0.3);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.promo-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.promo-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.promo-icon {
    font-size: 2rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}