/* RESET */
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Inter, Arial, sans-serif;
    }
    
    body {
        line-height: 1.5;
    }
    
        :root {
        --indigo-dye: #133c55ff;
        --bice-blue: #386fa4ff;
        --picton-blue: #59a5d8ff;
        --carrot-orange: #f18f01ff;
        --white: #ffffffff;
        --bg: #f9fcff;
        --bg-light: #f9fbfd;
        --text-light: #fff;
        --text-dark: #133c55;
        --heading: #1565c0;
        --highlight: #59a5d8;
        --primary: #1565c0
    }
    /* Animation */
    
    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes bounce {
        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(10px);
        }
        60% {
            transform: translateY(5px);
        }
    }
    
    @media (max-width: 768px) {
        .btn {
            font-size: 0.95rem;
            padding: 0.8rem 1.6rem;
        }
        .scroll-down {
            font-size: 1.4rem;
        }
    }
    /* Mobile Responsive */
    
    @media (max-width: 768px) {
        .hero {
            height: 70vh;
            padding: 40px 20px;
        }
        .hero h1 {
            font-size: 2rem;
        }
        .hero p {
            font-size: 1rem;
        }
    }
    /* ===== Section Title ===== */
    
    .contact-header {
        text-align: center;
        margin: 80px 20px 40px;
    }
    
    .contact-header h2 {
        font-size: 2rem;
        color: var(--primary);
        margin-bottom: 10px;
    }
    
    .contact-header p {
        color: var(--muted);
        font-size: 1.1rem;
    }
    /* ===== Contact Section Layout ===== */
    
    .contact-section {
        max-width: 1250px;
        margin: 0 auto;
        padding: 40px 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
    }
    /* ===== Left Column ===== */
    
    .contact-left {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    /* ===== Form ===== */
    
    .contact-form {
        background: var(--card-bg);
        padding: 30px;
        border-radius: 14px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    }
    
    .contact-form h3 {
        color: var(--heading);
        margin-bottom: 20px;
        font-size: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 6px;
        color: var(--primary);
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 14px;
        border: 1px solid var(--border-light);
        border-radius: 10px;
        font-size: 1rem;
        background: #fff;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--highlight);
        box-shadow: 0 0 0 3px rgba(102, 178, 255, 0.2);
    }
    
    .form-group textarea {
        resize: vertical;
        min-height: 140px;
    }
    
    .btn-submit {
        background: var(--primary);
        color: #fff;
        border: none;
        padding: 14px 28px;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease, transform 0.2s ease;
    }
    
    .btn-submit:hover {
        background: var(--secondary);
        transform: scale(1.05);
    }
    /* ===== Map ===== */
    
    .map-container {
        border-radius: 14px;
        overflow: hidden;
        border: 2px solid var(--border-light);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
        height: 100%;
    }
    
    .map-container iframe {
        width: 100%;
        height: 100%;
        min-height: 500px;
        border: none;
    }
    /* ===== Contact Cards ===== */
    
    .contact-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin: 3rem auto;
        max-width: 1100px;
    }
    
    .action-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        border-radius: 1rem;
        text-decoration: none;
        background: #fff;
        color: #222;
        text-align: center;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    
    .action-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .action-card .icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .action-card h3 {
        margin-bottom: 0.25rem;
        font-size: 1.2rem;
        font-weight: 600;
    }
    
    .action-card p {
        font-size: 0.95rem;
        color: #333;
        margin-bottom: 0.4rem;
    }
    
    .action-card small {
        font-size: 0.8rem;
        color: #777;
    }
    /* ===== Responsive ===== */
    
    @media (max-width: 900px) {
        .contact-section {
            grid-template-columns: 1fr;
        }
        .map-container {
            min-height: 350px;
        }
        .contact-cards {
            grid-template-columns: 1fr;
        }
    }
