/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e293b;
    --accent-color: #f59e0b;
    --text-color: #1f2937;
    --light-bg: #f9fafb;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

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

/* ==================== TOP WARNING BAR ==================== */
.warning-bar {
    background-color: #fbbf24;
    color: #000;
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.warning-bar p {
    margin: 0;
}

/* ==================== HEADER ==================== */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 36px;
    z-index: 999;
}

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

.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 30px;
    flex: 1;
    margin-left: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--accent-color);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #f97316;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #0f172a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-call {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    font-size: 14px;
}

.btn-call:hover {
    background-color: #f97316;
}

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

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #334155 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ==================== SECTIONS ==================== */
section {
    padding: 60px 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    background-color: var(--light-bg);
}

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

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ==================== TRUST SECTION ==================== */
.trust {
    background-color: var(--white);
}

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

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: inline-block;
    background-color: var(--light-bg);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.trust-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.trust-item p {
    color: #6b7280;
    font-size: 14px;
}

/* ==================== PRICING SECTION ==================== */
.pricing {
    background-color: var(--light-bg);
}

.pricing-intro {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.pricing-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.pricing-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.price {
    font-size: 28px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-card li {
    padding: 8px 0;
    color: #6b7280;
    border-bottom: 1px solid var(--border-color);
}

.pricing-card li:last-child {
    border-bottom: none;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background-color: var(--white);
}

.service-area {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-info {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
}

.contact-info h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.phone-number {
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 700;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ==================== CTA SECTION ==================== */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #334155 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 20px 20px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #d1d5db;
}

.footer-info {
    font-size: 13px;
    color: #d1d5db;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #d1d5db;
    font-size: 14px;
}

/* ==================== PAGE TITLE ==================== */
.page-title {
    background: linear-gradient(135deg, var(--primary-color) 0%, #334155 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.page-title h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-title p {
    font-size: 18px;
    opacity: 0.95;
}

/* ==================== SERVICES DETAIL ==================== */
.services-detail {
    background-color: var(--light-bg);
}

.service-detail-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.service-detail-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-detail-card h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-detail-card p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-detail-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.service-list,
.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-list li,
.service-features li {
    padding: 10px 0;
    color: #6b7280;
    padding-left: 25px;
    position: relative;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* ==================== WHY CHOOSE ==================== */
.why-choose {
    background-color: var(--white);
}

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

.why-item {
    text-align: center;
    padding: 25px;
}

.why-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.why-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.why-item p {
    color: #6b7280;
    font-size: 14px;
}

/* ==================== CONTACT PAGE ==================== */
.contact-page {
    background-color: var(--light-bg);
}

.contact-grid-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-main {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-info-main h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-item-large {
    margin-bottom: 30px;
}

.contact-item-large h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item-large p {
    color: #6b7280;
    margin-bottom: 5px;
}

.contact-note {
    font-size: 13px;
    color: #9ca3af;
}

.phone-large {
    font-size: 28px;
    color: var(--accent-color);
    font-weight: 700;
}

.contact-map-large {
    background-color: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-map-large h2 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* ==================== QUICK CONTACT ==================== */
.quick-contact {
    background-color: var(--white);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.quick-contact-item {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.quick-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.quick-contact-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.quick-contact-item p {
    color: #6b7280;
    margin-bottom: 20px;
}

/* ==================== FAQ ==================== */
.faq {
    background-color: var(--light-bg);
}

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

.faq-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

/* ==================== LEGAL CONTENT ==================== */
.legal-content {
    background-color: var(--light-bg);
}

.legal-text {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    color: #6b7280;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-text ul {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-text ul li {
    color: #6b7280;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.legal-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.last-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: #9ca3af;
    font-size: 14px;
}

/* ==================== MOBILE STICKY BAR ==================== */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    padding: 12px;
    z-index: 998;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.btn-call-mobile {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    display: block;
    text-align: center;
}

.btn-call-mobile:active {
    transform: scale(0.98);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo h1 {
        font-size: 20px;
        flex: 1;
    }

    .nav {
        flex: 1;
        margin-left: 0;
        gap: 15px;
        order: 3;
        width: 100%;
        margin-top: 10px;
    }

    .nav-link {
        font-size: 14px;
    }

    .btn-call {
        order: 2;
        padding: 10px 16px;
        font-size: 12px;
    }

    .hero h2 {
        font-size: 32px;
    }

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

    .section-title {
        font-size: 28px;
    }

    .services-grid,
    .trust-grid,
    .pricing-grid,
    .why-grid,
    .quick-contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    .page-title h1 {
        font-size: 32px;
    }

    .service-detail-card {
        padding: 25px;
    }

    .legal-text {
        padding: 25px;
    }

    .mobile-sticky-bar {
        display: block;
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
    }

    body {
        padding-bottom: 70px;
    }

    .footer {
        padding-bottom: 100px;
    }

    .cta {
        padding: 40px 20px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .cta p {
        font-size: 16px;
    }

    section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        align-items: stretch;
    }

    .logo h1 {
        font-size: 18px;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nav-link {
        padding: 8px;
        text-align: center;
    }

    .btn-call {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero h2 {
        font-size: 24px;
    }

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

    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .service-card,
    .pricing-card,
    .service-detail-card {
        padding: 20px;
    }

    .page-title h1 {
        font-size: 24px;
    }

    .contact-info,
    .contact-info-main {
        padding: 20px;
    }

    .phone-number,
    .phone-large {
        font-size: 20px;
    }

    .legal-text {
        padding: 15px;
    }

    .legal-text h2 {
        font-size: 18px;
    }

    .trust-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .service-icon,
    .quick-icon {
        font-size: 36px;
    }

    .cta h2 {
        font-size: 22px;
    }

    .cta p {
        font-size: 14px;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .warning-bar,
    .header,
    .mobile-sticky-bar,
    .footer {
        display: none;
    }

    body {
        padding-bottom: 0;
    }
}
