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

:root {
    /* Colors - HSL format */
    --background: hsl(25, 35%, 97%);
    --foreground: hsl(0, 0%, 20%);
    --primary: hsl(340, 65%, 65%);
    --primary-foreground: hsl(0, 0%, 100%);
    --accent: hsl(340, 70%, 92%);
    --accent-foreground: hsl(340, 65%, 35%);
    --muted-foreground: hsl(0, 0%, 45%);
    --border: hsl(25, 20%, 88%);
    
    /* Gradients */
    --gradient-soft: linear-gradient(135deg, hsl(340, 70%, 92%), hsl(25, 50%, 95%));
    --gradient-elegant: linear-gradient(180deg, hsl(340, 65%, 65%), hsl(340, 55%, 55%));
    --shadow-elegant: 0 20px 60px -20px hsla(340, 65%, 65%, 0.2);
    --shadow-soft: 0 10px 30px -10px hsla(0, 0%, 0%, 0.08);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(to bottom right, var(--background), hsla(340, 70%, 92%, 0.2), var(--background));
    color: var(--foreground);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    letter-spacing: -0.025em;
}

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

/* Header */
.header {
    border-bottom: 1px solid hsla(25, 20%, 88%, 0.5);
    background: hsla(25, 35%, 97%, 0.8);
    backdrop-filter: blur(12px);
    animation: fadeIn 0.8s ease-out;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 0;
}

.camera-icon {
    color: var(--primary);
}

.header-title {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--foreground);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 4rem 0;
}

/* Maintenance Section */
.maintenance-section {
    max-width: 42rem;
    margin: 0 auto 5rem;
    text-align: center;
    animation: slideUp 0.8s ease-out;
}

.maintenance-badge {
    display: inline-block;
    background: hsla(340, 70%, 92%, 0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-foreground);
}

.main-heading {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.main-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-elegant);
    color: var(--primary-foreground);
    padding: 1.5rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.cta-button:hover {
    box-shadow: var(--shadow-elegant);
    transform: translateY(-2px);
}

.phone-icon {
    transition: transform 0.3s ease;
}

.cta-button:hover .phone-icon {
    transform: rotate(12deg);
}

/* Services Section */
.services-section {
    max-width: 75rem;
    margin: 0 auto;
}

.services-heading {
    font-size: 2.25rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--foreground);
    animation: slideUp 0.8s ease-out;
}

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

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

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: hsl(0, 0%, 100%);
    transition: all 0.5s ease;
    animation: slideUp 0.8s ease-out;
}

.service-card:hover {
    transform: scale(1.02);
}

.service-image-wrapper {
    position: relative;
    height: 20rem;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(340, 65%, 65%, 0.8), hsla(340, 65%, 65%, 0.2), transparent);
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.service-card:hover .service-overlay {
    opacity: 0.8;
}

.service-title-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
}

.service-title {
    font-size: 1.875rem;
    font-weight: 300;
    color: var(--primary-foreground);
    letter-spacing: 0.025em;
}

/* Footer */
.footer {
    margin-top: 5rem;
    border-top: 1px solid hsla(25, 20%, 88%, 0.5);
    background: hsla(25, 35%, 97%, 0.5);
    backdrop-filter: blur(12px);
    animation: fadeIn 0.8s ease-out;
}

.footer-text {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-heading {
        font-size: 2.5rem;
    }
    
    .header-title {
        font-size: 1.125rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
}