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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

.top-bar {
    background: #1a1a1a;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 24px;
}

.contact-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

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

.phone {
    font-weight: 600;
}

.address {
    color: #d1d5db;
}

header {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #06b6d4;
    text-decoration: none;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.desktop-nav a {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #06b6d4;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px;
}

.btn-services {
    background: #06b6d4;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-services:hover {
    background: #0891b2;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    margin-top: 4px;
    min-width: 200px;
    z-index: 100;
    padding-top: 4px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background: #ecfeff;
}

.btn-call {
    background: linear-gradient(to right, #06b6d4, #0891b2);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-call,
.btn-call span {
    color: white !important;
}



.btn-call:hover {
    background: linear-gradient(to right, #0891b2, #0e7490);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav.active {
    display: flex;
}

.mobile-contact {
    background: #ecfeff;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-contact a {
    color: #0891b2;
    text-decoration: none;
    font-weight: 600;
}

.mobile-nav a {
    color: #374151;
    text-decoration: none;
    padding: 8px 0;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('https://images.pexels.com/photos/339620/pexels-photo-339620.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 60px 20px;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero p {
    font-size: 24px;
    margin-bottom: 32px;
    line-height: 1.5;
}

.btn-primary {
    background: #06b6d4;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #0891b2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #111827;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.services-overview {
    padding: 80px 20px;
    background: white;
}

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

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 16px;
}

.service-content p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.service-highlights li {
    padding: 8px 0;
    color: #374151;
    display: flex;
    align-items: center;
}

.service-highlights li:before {
    content: "✓";
    color: #06b6d4;
    font-weight: bold;
    margin-right: 12px;
    font-size: 18px;
}

.btn-learn-more {
    display: inline-block;
    background: #06b6d4;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-learn-more:hover {
    background: #0891b2;
}

.why-choose-us {
    padding: 80px 20px;
    background: #f9fafb;
}

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

.reason-item {
    text-align: center;
}

.reason-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.reason-item h3 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 12px;
}

.reason-item p {
    color: #6b7280;
    line-height: 1.7;
}

.how-it-works {
    padding: 80px 20px;
    background: white;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #06b6d4;
    color: white;
    font-size: 36px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 12px;
}

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

.step-arrow {
    font-size: 40px;
    color: #06b6d4;
    font-weight: 700;
}

.testimonials {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.stars {
    font-size: 20px;
    margin-bottom: 16px;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.author-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 16px;
    color: #111827;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: #6b7280;
}

.testimonials-cta {
    text-align: center;
    margin-top: 48px;
}

.testimonials-cta p {
    font-size: 20px;
    color: #374151;
    margin-bottom: 24px;
    font-weight: 500;
}

.benefits {
    padding: 80px 20px;
    background: #f9fafb;
}

.benefits h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 16px;
    color: #111827;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #6b7280;
    font-size: 18px;
}

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

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: box-shadow 0.3s;
}

.benefit-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #111827;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.7;
}

.quote-section {
    padding: 80px 20px;
    background: white;
}

.quote-header {
    text-align: center;
    margin-bottom: 48px;
}

.quote-subtitle {
    color: #6b7280;
    margin-bottom: 8px;
}

.quote-header h2 {
    font-size: 40px;
    color: #06b6d4;
}

.quote-form {
    max-width: 800px;
    margin: 0 auto;
    background: #f9fafb;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-group label {
    color: #374151;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: #6b7280;
    align-items: flex-start;
}

.checkbox-label input {
    margin-top: 4px;
}

.checkbox-label a {
    color: #06b6d4;
}

footer {
    background: #06b6d4;
    color: white;
    padding: 60px 20px;
}

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

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 24px;
}

.footer-column p {
    color: #ecfeff;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-phone {
    font-size: 18px;
    font-weight: 600;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #ecfeff;
}

.footer-links {
    margin-top: 24px;
}

.footer-links a {
    display: block;
    color: #ecfeff;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.btn-quote {
    display: inline-block;
    background: white;
    color: #06b6d4;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    margin-bottom: 24px;
}

.btn-quote:hover {
    background: #ecfeff;
}

.call-box {
    background: #0891b2;
    padding: 16px;
    border-radius: 8px;
}

.call-box p {
    font-weight: 600;
    margin-bottom: 8px;
}

.call-box a {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #ecfeff;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #ecfeff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: white;
}

/* Toast Notifications */
.custom-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
}

.custom-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.custom-toast.success {
    background: #10b981;
    color: white;
}

.custom-toast.error {
    background: #ef4444;
    color: white;
}

.custom-toast.info {
    background: #3b82f6;
    color: white;
}

.toast-icon {
    font-size: 18px;
    font-weight: bold;
    margin-top: 2px;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.toast-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0;
    margin-left: 8px;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.toast-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-header h2,
    .benefits h2,
    .quote-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 18px;
    }

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

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 16px 0;
    }

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

    .testimonials-cta p {
        font-size: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-form {
        padding: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .custom-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }

    .custom-toast.show {
        transform: translateY(0);
    }
}
