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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
    overflow-x: hidden;
}

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


.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    color: #059669;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #059669;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #059669, #10b981);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #059669;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}


.hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
    color: #1f2937;
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(34,197,94,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #065f46;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #374151;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #059669;
    border: 2px solid #059669;
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #059669, #10b981);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    animation: rotate 8s linear infinite;
}

.hero-placeholder i {
    font-size: 6rem;
    color: #059669;
    position: relative;
    z-index: 2;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.services-preview {
    padding: 100px 0;
    background: #ffffff;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #065f46;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(34, 197, 94, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #059669, #10b981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.05); opacity: 0.1; }
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #065f46;
    font-weight: 600;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}


.why-choose-us {
    padding: 100px 0;
    background: #f9fafb;
}

.why-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #065f46;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: #ffffff;
    border: 1px solid rgba(34, 197, 94, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.benefit i {
    font-size: 2rem;
    color: #059669;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.benefit h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #065f46;
    font-weight: 600;
}

.benefit p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}


.cta-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #1f2937;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(34,197,94,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #065f46;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #374151;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


.footer {
    background: #1f2937;
    color: white;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(34, 197, 94, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #10b981;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #10b981;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.footer-section i {
    margin-right: 0.8rem;
    color: #10b981;
}

.footer-bottom {
    border-top: 1px solid rgba(34, 197, 94, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}


.page-header {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,1 19,6 19,14 10,19 1,14 1,6" fill="none" stroke="rgba(34,197,94,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #065f46;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.25rem;
    color: #374151;
    max-width: 600px;
    margin: 0 auto;
}


.services-detail {
    padding: 80px 0;
    background: #ffffff;
}

.service-item {
    margin-bottom: 4rem;
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(34, 197, 94, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.service-icon-large::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.2;
    animation: pulse 2s infinite;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #065f46;
    font-weight: 600;
}

.service-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #6b7280;
    line-height: 1.7;
}

.service-content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: #059669;
    font-weight: 600;
}

.service-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-content ul li {
    margin-bottom: 0.8rem;
    color: #6b7280;
    line-height: 1.6;
}

.service-content ul li strong {
    color: #059669;
}

.service-cta {
    margin-top: 2rem;
}


.process-section {
    padding: 80px 0;
    background: #f9fafb;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #065f46;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(34, 197, 94, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #065f46;
    font-weight: 600;
}

.step p {
    color: #6b7280;
    line-height: 1.6;
}


.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.contact-form-container {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #065f46;
    font-weight: 600;
}

.contact-form-container p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #059669;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 8px;
    background: #ffffff;
    color: #1f2937;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}


.contact-info {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #065f46;
    font-weight: 600;
}

.contact-info > p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.2rem;
    color: white;
}

.method-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #065f46;
    font-weight: 600;
}

.method-content p {
    color: #6b7280;
    margin-bottom: 0.3rem;
    line-height: 1.5;
}

.emergency-contact {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
}

.emergency-contact h3 {
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.emergency-contact p {
    color: #6b7280;
    line-height: 1.5;
}


.faq-section {
    padding: 80px 0;
    background: #f9fafb;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #065f46;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(34, 197, 94, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #065f46;
    font-weight: 600;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}


.map-section {
    padding: 80px 0;
    background: #ffffff;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #065f46;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.map-placeholder {
    background: #f9fafb;
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.map-placeholder i {
    font-size: 4rem;
    color: #059669;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
}


.company-story {
    padding: 80px 0;
    background: #ffffff;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #065f46;
    font-weight: 600;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #6b7280;
    line-height: 1.7;
}

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

.stat {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 16px;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.stat h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #059669;
    font-weight: 700;
}

.stat p {
    color: #6b7280;
    font-size: 1rem;
}


.mission-values {
    padding: 80px 0;
    background: #f9fafb;
}

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

.mission h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #065f46;
    font-weight: 600;
}

.mission p {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #065f46;
    font-weight: 600;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(34, 197, 94, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #065f46;
    font-weight: 600;
}

.value-item p {
    color: #6b7280;
    line-height: 1.6;
}


.team-section {
    padding: 80px 0;
    background: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #065f46;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-photo i {
    font-size: 3rem;
    color: white;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #065f46;
    font-weight: 600;
}

.member-title {
    color: #10b981;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #6b7280;
    line-height: 1.6;
}


.certifications {
    padding: 80px 0;
    background: #f9fafb;
}

.certifications h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #065f46;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.cert-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(34, 197, 94, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cert-item i {
    font-size: 3rem;
    color: #059669;
    margin-bottom: 1rem;
}

.cert-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #065f46;
    font-weight: 600;
}

.cert-item p {
    color: #6b7280;
    line-height: 1.6;
}


.testimonials {
    padding: 80px 0;
    background: #ffffff;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #065f46;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.testimonial {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.1);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: #059669;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #6b7280;
    line-height: 1.7;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    color: #065f46;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    color: #9ca3af;
    font-size: 0.9rem;
}


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


@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        border-top: 1px solid rgba(34, 197, 94, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-stats {
        grid-template-columns: 1fr 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hero-placeholder {
        width: 90vw;
        max-width: 350px;
        height: auto;
        min-height: 200px;
    }
    .hero-placeholder img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 24px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .services-preview h2,
    .why-content h2,
    .cta-section h2,
    .page-header h1 {
        font-size: 2rem;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }

    .hero-placeholder {
        max-width: 95vw;
    }
}


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

.service-card,
.benefit,
.step,
.faq-item,
.testimonial,
.team-member,
.value-item,
.cert-item {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.benefit:nth-child(1) { animation-delay: 0.1s; }
.benefit:nth-child(2) { animation-delay: 0.2s; }
.benefit:nth-child(3) { animation-delay: 0.3s; }
.benefit:nth-child(4) { animation-delay: 0.4s; }

/* Contact Hero Section */
.contact-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.contact-hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #065f46;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #6b7280;
    line-height: 1.7;
}

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

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-subtitle {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.contact-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-hero-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.3);
    transition: transform 0.3s ease;
}

.contact-hero-img:hover {
    transform: scale(1.05);
}

/* Contact Methods Section */
.contact-methods-section {
    padding: 80px 0;
    background: #f9fafb;
}

.contact-methods-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #065f46;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.contact-method-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(34, 197, 94, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.method-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.method-icon-large i {
    font-size: 2rem;
    color: white;
}

.contact-method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #065f46;
    font-weight: 600;
}

.method-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 1rem;
}

.method-email {
    font-size: 1.2rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 1rem;
}

.method-hours {
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.method-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hours-list p {
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.method-note {
    color: #059669;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

/* Emergency Section */
.emergency-section {
    padding: 80px 0;
    background: #ffffff;
}

.emergency-card {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #fecaca;
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.1);
}

.emergency-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergency-icon i {
    font-size: 2rem;
    color: white;
}

.emergency-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #dc2626;
    font-weight: 700;
}

.emergency-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #6b7280;
    line-height: 1.7;
}

.emergency-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .contact-hero-content h2 {
        font-size: 2rem;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
    }

    .emergency-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .emergency-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h2 {
        font-size: 1.75rem;
    }

    .contact-hero-content p {
        font-size: 1rem;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .contact-methods-section h2 {
        font-size: 2rem;
    }
}

.hero-logo {
    display: block;
    margin: 0 auto 1.5rem auto;
    max-width: 120px;
    width: 100%;
    height: auto;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.10);
    border-radius: 12px;
    background: #fff;
    padding: 8px;
}

.stats-bar {
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border-radius: 20px;
    margin-top: -60px;
    position: relative;
    z-index: 3;
    padding: 40px 0;
}
.stats-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.stat-block {
    flex: 1 1 0;
    text-align: center;
    border-right: 1px solid #f3f4f6;
}
.stat-block:last-child {
    border-right: none;
}
.trustpilot-block {
    min-width: 160px;
    border-right: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trustpilot-block img {
    max-width: 120px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 0.5rem auto;
}
@media (max-width: 768px) {
    .stats-bar-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    .stat-block {
        border-right: none;
        border-bottom: 1px solid #f3f4f6;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .stat-block:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    .trustpilot-block {
        border-bottom: 1px solid #f3f4f6;
        border-right: none;
    }
}

.trustpilot-label {
    font-weight: 600;
    color: #059669;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.trustpilot-stars {
    color: #10b981;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.trustpilot-score {
    color: #374151;
    font-size: 0.98rem;
} 