﻿/* ================= GENEL ================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #EFE6D8;
    color: #0A3D62;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ================= TOP BAR ================= */
.top-bar {
    background: #0A3D62;
    color: #fff;
    padding: 10px 15px;
    font-size: 13px;
}

.top-bar-center {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .top-bar-item svg {
        flex-shrink: 0;
    }

    .top-bar-item a {
        color: #fff;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

        .top-bar-item a:hover {
            opacity: 0.8;
        }

.top-bar-divider {
    color: rgba(255, 255, 255, 0.5);
}

/* ================= HEADER ================= */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 40px;
}

/* Logo - Sol Taraf */
.logo {
    display: flex;
    align-items: center;
}

    .logo a {
        display: block;
        line-height: 0;
    }

    .logo img {
        height: 70px;
        width: auto;
        max-width: 180px;
        transition: transform 0.3s ease;
    }

        .logo img:hover {
            transform: scale(1.05);
        }

/* Menu - Ortada */
.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

    .menu > a,
    .menu-item > a {
        color: #333;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        padding: 8px 0;
        position: relative;
        transition: color 0.3s ease;
        white-space: nowrap;
    }

        .menu > a:hover,
        .menu-item > a:hover {
            color: #0A3D62;
            background: transparent;
        }

        /* Alt çizgi animasyonu */
        .menu > a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #0A3D62;
            transition: width 0.3s ease;
        }

        .menu > a:hover::after {
            width: 100%;
        }

/* Dropdown Menu */
.menu-item {
    position: relative;
}

    .menu-item > a {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

        /* Ok işaretini kaldır */
        .menu-item > a::before {
            content: none !important;
            display: none !important;
        }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 1000;
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

    /* Dropdown köprüsü */
    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        height: 20px;
        background: transparent;
    }

.menu-item:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: left;
}

    .dropdown-menu a:hover {
        background: #f8f9fa;
        color: #0A3D62;
        padding-left: 25px;
    }

    .dropdown-menu a.view-all {
        font-weight: 600;
        color: #0A3D62;
    }

.dropdown-divider {
    height: 1px;
    background: #e5e5e5;
    margin: 8px 12px;
}

/* Teklif Al Butonu - Sağ Taraf */
.header-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-quote {
    background: #0A3D62;
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(10, 61, 98, 0.2);
}

    .btn-quote:hover {
        background: #083150;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(10, 61, 98, 0.3);
    }

/* Hamburger Menü */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
}

    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #333;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

/* ================= HERO VIDEO ================= */
.hero-video {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.video-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
}

    .video-slide.active {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

    .video-slide video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

    .video-overlay h1 {
        font-size: 48px;
        margin-bottom: 10px;
    }

    .video-overlay p {
        font-size: 20px;
    }

/* ================= INFO SECTION ================= */
.info-section {
    padding: 50px 20px;
}

.info-box {
    max-width: 1100px;
    margin: 0 auto 50px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.info-section.reverse .info-box {
    flex-direction: row-reverse;
}

.info-image {
    width: 50%;
}

    .info-image img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        border-radius: 14px;
    }

.info-text {
    width: 50%;
}

    .info-text h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .info-text p {
        font-size: 16px;
        line-height: 1.7;
        color: #444;
    }

    /* Tik işaretli liste */
    .info-text .check-list {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }

        .info-text .check-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            font-size: 16px;
            color: #333;
        }

            .info-text .check-list li::before {
                content: '✓';
                width: 28px;
                height: 28px;
                background: linear-gradient(135deg, #0A3D62, #145585);
                color: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: bold;
                font-size: 16px;
                flex-shrink: 0;
                box-shadow: 0 2px 8px rgba(10, 61, 98, 0.3);
            }

/* ================= HİZMET KARTLARI ================= */
.service-section {
    padding: 60px 20px;
}

.services-container {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-box {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    text-align: center;
}

    .service-box:hover {
        transform: translateY(-8px);
    }

    .service-box img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .service-box h3 {
        font-size: 22px;
        margin: 18px 0 10px;
    }

    .service-box p {
        font-size: 15px;
        padding: 0 18px;
        color: #555;
        line-height: 1.6;
    }

.service-btn {
    display: inline-block;
    margin: 18px 0 25px;
    padding: 10px 22px;
    background: #0A3D62;
    color: #fff;
    border-radius: 25px;
    font-size: 14px;
    transition: 0.3s;
}

    .service-btn:hover {
        background: #083150;
    }

/* ================= HİZMET DETAY SAYFALARI ================= */
.service-page {
    background: #f8f9fa;
    padding: 60px 20px;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.service-main {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

    .service-image img {
        width: 100%;
        height: auto;
        display: block;
        max-height: 500px;
        object-fit: cover;
    }

.service-title {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 3px solid #0A3D62;
    padding-bottom: 15px;
    display: inline-block;
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-title {
    font-size: 24px;
    color: #1a1a1a;
    font-weight: 600;
    border-bottom: 2px solid #0A3D62;
    padding-bottom: 10px;
}

.sidebar-menu {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sidebar-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    font-size: 15px;
}

    .sidebar-item:last-child {
        border-bottom: none;
    }

    .sidebar-item:hover {
        background: #f8f9fa;
        padding-left: 25px;
    }

    .sidebar-item.active {
        background: #0A3D62;
        color: white;
        font-weight: 500;
    }

        .sidebar-item.active:hover {
            background: #093453;
        }

    .sidebar-item .arrow {
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .sidebar-item:hover .arrow {
        transform: translateX(5px);
    }

/* ================= HAKKIMIZDA ================= */
.about-container {
    padding: 80px 20px;
}

.about-box {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    padding: 60px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.about-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 35px;
    color: #0A3D62;
    position: relative;
}

    .about-title::after {
        content: "";
        width: 80px;
        height: 4px;
        background: #C49A6C;
        display: block;
        margin: 12px auto 0;
        border-radius: 2px;
    }

.about-text p {
    font-size: 16px;
    color: #444;
    margin-bottom: 18px;
}

.about-text h2 {
    font-size: 24px;
    margin: 35px 0 12px;
    color: #0A3D62;
    position: relative;
}

    .about-text h2::before {
        content: "";
        width: 6px;
        height: 24px;
        background: #C49A6C;
        display: inline-block;
        margin-right: 10px;
        vertical-align: middle;
        border-radius: 3px;
    }

/* ================= İLETİŞİM ================= */
.contact-header {
    text-align: center;
    padding: 70px 20px 40px;
}

    .contact-header h1 {
        font-size: 34px;
        color: #0A3D62;
        margin-bottom: 10px;
    }

    .contact-header p {
        font-size: 16px;
        color: #555;
        max-width: 700px;
        margin: auto;
    }

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 40px;
    padding: 0 20px;
}

.contact-map {
    flex: 1;
    min-height: 520px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.contact-form {
    flex: 1;
    background: #fff;
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

    .contact-form h2 {
        font-size: 26px;
        margin-bottom: 25px;
        color: #0A3D62;
        text-align: center;
    }

    .contact-form label {
        font-weight: 600;
        margin-bottom: 6px;
        display: block;
        font-size: 14px;
        color: #333;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px 14px;
        margin-bottom: 16px;
        border-radius: 8px;
        border: 1px solid #ccc;
        font-size: 14px;
        transition: 0.3s;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #0A3D62;
            outline: none;
        }

.fake-captcha {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

    .fake-captcha input {
        width: 18px;
        height: 18px;
        cursor: pointer;
    }

    .fake-captcha label {
        font-size: 14px;
        cursor: pointer;
    }

    .fake-captcha img {
        margin-left: auto;
        width: 40px;
    }

.send-btn {
    width: 100%;
    background: #0A3D62;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

    .send-btn:hover {
        background: #083150;
    }

.contact-info-box {
    margin-top: 35px;
    background: #EFE6D8;
    padding: 25px;
    border-radius: 14px;
}

    .contact-info-box h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: #0A3D62;
    }

    .contact-info-box p {
        font-size: 15px;
        color: #333;
        margin-bottom: 8px;
    }

/* ================= TEKLİF AL ================= */
.quote-hero {
    background: linear-gradient(135deg, #0A3D62, #083150);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.95;
}

.quote-container {
    background: #f8f9fa;
    padding: 60px 20px;
}

.quote-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.quote-form-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

    .quote-form-box h2 {
        font-size: 28px;
        color: #1a1a1a;
        margin-bottom: 10px;
    }

.form-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
}

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        font-weight: 500;
        color: #333;
        margin-bottom: 8px;
        font-size: 14px;
    }

        .form-group label small {
            font-weight: 400;
            color: #999;
            font-size: 12px;
        }

.required {
    color: #e30613;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        outline: none;
        border-color: #0A3D62;
        box-shadow: 0 0 0 3px rgba(10, 61, 98, 0.1);
    }

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-file {
    display: block;
    width: 100%;
    padding: 12px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .form-file:hover {
        border-color: #0A3D62;
    }

.file-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    color: #666;
    font-size: 14px;
}

    .file-info svg {
        color: #0A3D62;
    }

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

    .checkbox-group label {
        margin: 0;
        font-weight: 400;
        color: #555;
    }

    .checkbox-group a {
        color: #0A3D62;
        text-decoration: none;
    }

        .checkbox-group a:hover {
            text-decoration: underline;
        }

.form-checkbox {
    margin-top: 3px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #0A3D62;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-submit:hover {
        background: #083150;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(10, 61, 98, 0.3);
    }

.validator {
    display: block;
    color: #e30613;
    font-size: 13px;
    margin-top: 5px;
}

.form-message {
    display: block;
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

    .form-message.success {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }

    .form-message.error {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }

.quote-info-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

    .info-card h3 {
        font-size: 20px;
        color: #1a1a1a;
        margin-bottom: 15px;
    }

    .info-card p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 12px;
        font-size: 14px;
    }

    .info-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .info-card ul li {
            padding: 8px 0 8px 25px;
            position: relative;
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

            .info-card ul li:before {
                content: "✓";
                position: absolute;
                left: 0;
                color: #0A3D62;
                font-weight: bold;
            }

.info-icon {
    width: 60px;
    height: 60px;
    background: #e8f4f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .info-icon svg {
        color: #0A3D62;
    }

.info-card.highlight {
    background: #0A3D62;
    color: white;
}

    .info-card.highlight h3 {
        color: white;
    }

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: white;
    color: #25D366;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

    .whatsapp-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

/* ================= CTA OFFER ================= */
.cta-offer {
    background: linear-gradient(135deg, #0A3D62, #083150);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

    .cta-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 18px;
        margin-bottom: 30px;
        opacity: 0.95;
    }

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.cta-primary {
    background: white;
    color: #0A3D62;
}

    .cta-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    }

.cta-secondary {
    background: #25D366;
    color: white;
}

    .cta-secondary:hover {
        background: #20BA5A;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }

/* ================= FOOTER ================= */
.footer {
    background: #0A3D62;
    color: #eaeaea;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 35px;
    padding: 55px 20px;
}

.footer-logo img {
    max-width: 140px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 14px;
    color: #ddd;
    margin-top: 10px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

        .footer-social a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

.footer h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer ul {
    list-style: none;
}

    .footer ul li {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
    }

        .footer ul li svg {
            flex-shrink: 0;
            color: #C49A6C;
        }

.footer a {
    color: #ddd;
    transition: 0.3s;
}

    .footer a:hover {
        color: #fff;
    }

.footer-bottom {
    background: #083150;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

    .footer-bottom p {
        margin: 0;
        font-size: 14px;
        color: #ccc;
    }

.footer-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

    .footer-links a {
        color: #ccc;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #fff;
        }

    .footer-links span {
        color: rgba(255, 255, 255, 0.3);
    }

/* ================= FLOAT BUTONLAR ================= */
.contact-float-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.phone-float {
    width: 60px;
    height: 60px;
    background: #0088cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

    .phone-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 136, 204, 0.6);
        background: #006699;
    }

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    }

    .whatsapp-float::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 50%;
        background: #25D366;
        animation: pulse 2s infinite;
        z-index: -1;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .header-container {
        grid-template-columns: 1fr auto auto;
        padding: 15px 20px;
        gap: 20px;
    }

    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

        .menu.active {
            display: flex;
        }

        .menu > a,
        .menu-item {
            width: 100%;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }

            .menu > a::after {
                display: none;
            }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
    }

    .menu-item:hover .dropdown-menu {
        top: auto;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .btn-quote {
        padding: 10px 20px;
        font-size: 14px;
    }

    .logo img {
        height: 50px;
    }

    .top-bar-center {
        font-size: 12px;
        gap: 10px;
    }

    .top-bar-item svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 992px) {
    .service-container,
    .quote-wrapper {
        grid-template-columns: 1fr;
    }

    .service-sidebar,
    .quote-info-box {
        order: -1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .info-box {
        flex-direction: column !important;
        text-align: center;
    }

    .info-image,
    .info-text {
        width: 100%;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .video-overlay h1 {
        font-size: 32px;
    }

    .video-overlay p {
        font-size: 16px;
    }

    .about-box {
        padding: 35px 25px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-text h2 {
        font-size: 20px;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-map {
        min-height: 350px;
    }

    .contact-form {
        padding: 30px;
    }

    .contact-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 12px 15px;
    }

    .logo img {
        height: 35px;
    }

    .btn-quote {
        padding: 8px 16px;
        font-size: 13px;
    }

    .top-bar-center {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .top-bar-divider {
        display: none;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-float-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .phone-float,
    .whatsapp-float {
        width: 55px;
        height: 55px;
    }

    .service-main {
        padding: 25px;
    }

    .service-title {
        font-size: 26px;
    }

    .service-description,
    .service-item p {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .quote-form-box {
        padding: 25px;
    }

    .info-card {
        padding: 20px;
    }
}
