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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.page-wrapper {
    position: relative;
    min-height: 100vh;
}

.background-pattern {
    position: fixed;
    inset: 0;
    opacity: 0.08;
    background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.15), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
    transition: all 0.3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-icon {
    width: 1.75rem;
    height: 1.75rem;
    color: #0ea5e9;
}

.nav-brand {
    font-size: 1.875rem;
    font-weight: 700;
    color: #06b6d4;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-link:hover {
    color: #06b6d4;
}

/* Buttons */
.btn-primary {
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(14, 165, 233, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(14, 165, 233, 0.4);
}

.btn-primary.large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-secondary {
    padding: 0.75rem 1.75rem;
    border: 2px solid #0ea5e9;
    background: transparent;
    color: #06b6d4;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(14, 165, 233, 0.1);
    transform: translateY(-2px);
}

.btn-secondary.large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 1;
    padding: 6rem 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-line {
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
}

.hero-subtitle span {
    color: #0ea5e9;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
}

.title-accent {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-main {
    color: #f1f5f9;
}

.hero-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.75;
}

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

.hero-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-badge {
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: #06b6d4;
    font-weight: 600;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-badge {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 1.5rem 2rem;
    border: 2px solid #0ea5e9;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-radius: 0.5rem;
    animation: scaleIn 0.6s ease-out 0.6s both;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.badge-text {
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Services Section */
.services-section {
    position: relative;
    z-index: 1;
    padding: 6rem 4rem;
    background: rgba(30, 41, 59, 0.5);
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-description {
    color: #cbd5e1;
    font-size: 1.125rem;
}

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

.service-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(51, 65, 85, 0.6));
    padding: 2rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 1rem;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #0ea5e9;
    box-shadow: 0 12px 24px rgba(14, 165, 233, 0.2);
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: #06b6d4;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: #cbd5e1;
    line-height: 1.75;
}

/* Gallery Section */
.gallery-section {
    position: relative;
    z-index: 1;
    padding: 6rem 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    border-radius: 1rem;
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    transform: translateY(1rem);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h3 {
    font-size: 1.5rem;
    color: #06b6d4;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.gallery-content p {
    color: #cbd5e1;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-content p {
    opacity: 1;
}

/* About Section */
.about-section {
    position: relative;
    z-index: 1;
    padding: 6rem 4rem;
    background: rgba(30, 41, 59, 0.3);
}

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

.about-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.stat-item:hover {
    background: rgba(14, 165, 233, 0.15);
    transform: translateY(-4px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-images-left,
.about-images-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-images-right {
    padding-top: 3rem;
}

.about-image-box {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.5rem;
}

.about-image-box.tall {
    aspect-ratio: 3/4;
}

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-image-box:hover img {
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    position: relative;
    z-index: 1;
    padding: 6rem 4rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(6, 182, 212, 0.15));
    border-top: 2px solid rgba(14, 165, 233, 0.3);
    border-bottom: 2px solid rgba(14, 165, 233, 0.3);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #06b6d4;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(14, 165, 233, 0.2);
    padding: 3rem 4rem;
    background: rgba(15, 23, 42, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #0ea5e9;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #06b6d4;
}

.footer-tagline {
    color: #94a3b8;
}

.footer-heading {
    color: #06b6d4;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #94a3b8;
}

.footer-hours {
    color: #94a3b8;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.emergency {
    color: #0ea5e9;
    font-weight: 700;
    padding-top: 0.5rem;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #06b6d4;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(14, 165, 233, 0.2);
    text-align: center;
    color: #64748b;
}

/* Services Page */
.services-hero {
    padding: 5rem 4rem 3rem;
    text-align: center;
    border-bottom: 2px solid rgba(14, 165, 233, 0.2);
}

.services-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
}

.services-detail-section {
    position: relative;
    z-index: 1;
    padding: 4rem 4rem 6rem;
}

.service-detail {
    margin-bottom: 5rem;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(14, 165, 233, 0.3);
}

.service-detail-icon {
    font-size: 3.5rem;
}

.service-detail-header h2 {
    font-size: 2.5rem;
    color: #06b6d4;
    font-weight: 800;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-detail-item {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(51, 65, 85, 0.4));
    padding: 1.5rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 1rem;
    position: relative;
    transition: all 0.3s;
}

.service-detail-item:hover {
    transform: translateY(-4px);
    border-color: #0ea5e9;
}

.service-detail-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-item h3 {
    font-size: 1.5rem;
    color: #06b6d4;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail-item ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-item li {
    color: #cbd5e1;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: bold;
}

.price-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.125rem;
}

.emergency-badge {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    animation: pulse 2s ease-in-out infinite;
}

/* Guarantee Section */
.guarantee-section {
    position: relative;
    z-index: 1;
    padding: 4rem 4rem 6rem;
    background: rgba(14, 165, 233, 0.05);
}

.guarantee-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #06b6d4;
    margin-bottom: 3rem;
    font-weight: 800;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.guarantee-item {
    text-align: center;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 1rem;
    transition: all 0.3s;
}

.guarantee-item:hover {
    transform: translateY(-4px);
    border-color: #0ea5e9;
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guarantee-item h3 {
    color: #06b6d4;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.guarantee-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.fade-in-down {
    animation: fadeInDown 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid,
    .about-grid,
    .gallery-grid,
    .services-grid,
    .service-detail-grid,
    .guarantee-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .navbar,
    .hero-section,
    .services-section,
    .gallery-section,
    .about-section,
    .cta-section,
    .footer,
    .services-detail-section {
        padding: 2rem;
    }
    
    .nav-links .nav-link {
        display: none;
    }
    
    .about-images-right {
        padding-top: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}
