/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #fafafa;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

/* Brand */
.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand h2 {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.link-text {
    position: relative;
    z-index: 2;
}

.link-underline {
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1a1a1a, #333);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover {
    color: #1a1a1a;
    background: rgba(26, 26, 26, 0.04);
    transform: translateY(-1px);
}

.nav-link:hover .link-underline {
    width: 60%;
}

/* CTA Phone */
.nav-cta {
    display: flex;
    align-items: center;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #333, #1a1a1a);
}

.phone-icon {
    font-size: 1rem;
}

.phone-text {
    font-weight: 600;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(26, 26, 26, 0.05);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section with Slideshow */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.4);
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.6),
        0 8px 40px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.1);
    animation: heroTitleAnimation 1.2s ease-out;
    letter-spacing: -2px;
    line-height: 1.05;
    color: #ffffff;
    position: relative;
    text-transform: uppercase;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -25px;
    right: -25px;
    bottom: -15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 25px;
    backdrop-filter: blur(30px);
    z-index: -1;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.6),
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: heroSubtitleAnimation 1.2s ease-out 0.4s both;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: 0.5px;
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: translateY(-50%);
    animation: subtitleLine 2s ease-out 0.8s both;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: translateY(-50%);
    animation: subtitleLine 2s ease-out 0.8s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.5s ease;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 0 0 rgba(255, 255, 255, 0.1);
    animation: ctaButtonAnimation 1.2s ease-out 0.8s both;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 0 0 20px rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #333, #1a1a1a);
    border-color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 3;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    font-size: 1.2rem;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.slide-indicators {
    display: flex;
    gap: 12px;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: white;
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTitleAnimation {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        filter: blur(10px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(25px) scale(0.95);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes heroSubtitleAnimation {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        letter-spacing: 2px;
    }
    50% {
        opacity: 0.7;
        transform: translateY(15px) scale(0.98);
        letter-spacing: 1px;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        letter-spacing: 0.5px;
    }
}

@keyframes titleGlow {
    0% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
        transform: scale(1.01);
    }
}

@keyframes subtitleLine {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        width: 20px;
        opacity: 0.5;
    }
    100% {
        width: 40px;
        opacity: 1;
    }
}

@keyframes ctaButtonAnimation {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.8);
        filter: blur(5px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(20px) scale(0.9);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    margin: 0 10px;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a1a1a, #333);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-header {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.service-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.3) contrast(1.2);
    transition: all 0.4s ease;
}

.service-item:hover .service-bg-image {
    filter: brightness(0.4) contrast(1.1);
    transform: scale(1.05);
}

.service-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.service-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-item:hover .service-header::before {
    transform: translateX(100%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), transparent, rgba(255, 255, 255, 0.3));
    border-radius: 17px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-item:hover .service-icon::after {
    opacity: 1;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.service-content {
    padding: 40px;
    position: relative;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.service-description {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.service-details {
    display: grid;
    gap: 25px;
    margin-bottom: 30px;
}

.detail-group h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-group h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border-radius: 2px;
}

.detail-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-group ul li {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.detail-group ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 1.1rem;
}

.cert-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cert-badge {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #495057;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.response-time {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid #90caf9;
}

.service-cta {
    text-align: center;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-link:hover::before {
    left: 100%;
}

.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-link.emergency {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(211, 47, 47, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(26, 26, 26, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 26, 26, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(26, 26, 26, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.about-text {
    position: relative;
}

.about-intro {
    margin-bottom: 50px;
    position: relative;
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.intro-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.about-intro:hover .intro-icon::before {
    transform: translateX(100%);
}

.intro-icon i {
    font-size: 2rem;
    color: white;
    z-index: 2;
}

.about-intro h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    font-weight: 400;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    display: block;
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #1a1a1a, #333);
    border-radius: 2px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}



.about-cta {
    text-align: center;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    padding: 18px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.about-cta-btn:hover::before {
    left: 100%;
}

.about-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #333, #1a1a1a);
}

.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-container:hover .about-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.6s ease;
}

.about-image-container:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content {
    text-align: center;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.overlay-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.certification-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.cert-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
}

.cert-badge i {
    font-size: 1.2rem;
    color: #1a1a1a;
    transition: color 0.4s ease;
}

.cert-badge:hover i {
    color: white;
}

.cert-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.4s ease;
}

.cert-badge:hover span {
    color: white;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    display: grid;
    gap: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-item i {
    color: #1a1a1a;
    font-size: 1.6rem;
    margin-top: 5px;
}

.contact-item h4 {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-item p {
    color: #666;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-item a:hover {
    color: #333;
    text-decoration: underline;
}

.contact-actions {
    display: grid;
    gap: 30px;
}

.contact-action-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #25D366, #128C7E);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-action-card.whatsapp::before {
    background: linear-gradient(90deg, #25D366, #128C7E);
}

.contact-action-card.email::before {
    background: linear-gradient(90deg, #EA4335, #D93025);
}

.contact-action-card.phone::before {
    background: linear-gradient(90deg, #1a1a1a, #333);
}

.contact-action-card:hover::before {
    transform: scaleX(1);
}

.contact-action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.action-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.contact-action-card.whatsapp .action-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-action-card.email .action-icon {
    background: linear-gradient(135deg, #EA4335, #D93025);
}

.contact-action-card.phone .action-icon {
    background: linear-gradient(135deg, #1a1a1a, #333);
}

.contact-action-card:hover .action-icon {
    transform: scale(1.1) rotate(5deg);
}

.action-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.action-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.action-btn:hover::before {
    left: 100%;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

.email-btn {
    background: linear-gradient(135deg, #EA4335, #D93025);
    color: white;
}

.email-btn:hover {
    background: linear-gradient(135deg, #D93025, #EA4335);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(234, 67, 53, 0.3);
}

.phone-btn {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
}

.phone-btn:hover {
    background: linear-gradient(135deg, #333, #1a1a1a);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        height: 80px;
    }
    
    .nav-brand h2 {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .nav-link {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        padding: 0 15px;
    }
    
    .hero-subtitle::before,
    .hero-subtitle::after {
        width: 25px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-header h2 {
        font-size: 2.8rem;
    }
    
    .about-header p {
        font-size: 1.1rem;
    }
    
    .about-intro h3 {
        font-size: 1.8rem;
    }
    
    .about-intro p {
        font-size: 1.1rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 30px 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    

    
    .about-image img {
        height: 400px;
    }
    
    .certification-badges {
        gap: 12px;
    }
    
    .cert-badge {
        padding: 10px 16px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-actions {
        gap: 20px;
    }
    
    .contact-action-card {
        padding: 30px;
    }
    
    .action-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .action-content h4 {
        font-size: 1.2rem;
    }
    
    .action-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .service-item {
        margin: 0;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .service-header {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
        border-radius: 15px 15px 0 0;
        min-height: 150px;
    }
    
    .service-header-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .service-header h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-content {
        padding: 25px 20px;
    }
    
    .service-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .service-details {
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .detail-group h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .detail-group ul li {
        font-size: 0.9rem;
        padding: 6px 0;
        padding-left: 20px;
        line-height: 1.5;
    }
    
    .cert-badges {
        gap: 8px;
    }
    
    .cert-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
        border-radius: 15px;
    }
    
    .cta-link {
        padding: 12px 25px;
        font-size: 0.9rem;
        border-radius: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .response-time {
        padding: 10px 15px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .slideshow-controls {
        bottom: 30px;
        gap: 1rem;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 70px;
        padding: 0 20px;
    }
    
    .nav-brand h2 {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
        margin-bottom: 2rem;
    }
    
    .hero-subtitle::before,
    .hero-subtitle::after {
        width: 20px;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-header h2 {
        font-size: 2.2rem;
    }
    
    .about-header p {
        font-size: 1rem;
    }
    
    .about-intro h3 {
        font-size: 1.5rem;
    }
    
    .about-intro p {
        font-size: 1rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    

    
    .about-image img {
        height: 300px;
    }
    
    .certification-badges {
        gap: 8px;
    }
    
    .cert-badge {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .services {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
        padding: 0 20px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .services-grid {
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-item {
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }
    
    .service-header {
        padding: 20px 15px;
        gap: 10px;
        border-radius: 12px 12px 0 0;
        min-height: 120px;
    }
    
    .service-header-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-header h3 {
        font-size: 1.3rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        border-radius: 10px;
    }
    
    .service-icon i {
        font-size: 1.3rem;
    }
    
    .service-content {
        padding: 20px 15px;
    }
    
    .service-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .service-details {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .detail-group h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .detail-group ul li {
        font-size: 0.85rem;
        padding: 5px 0;
        padding-left: 18px;
    }
    
    .cert-badges {
        gap: 6px;
    }
    
    .cert-badge {
        padding: 5px 10px;
        font-size: 0.75rem;
        border-radius: 12px;
    }
    
    .cta-link {
        padding: 10px 20px;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .response-time {
        padding: 8px 12px;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}
