﻿/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    line-height: 1.6;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
}

/* CONTAINER SYSTEM */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* GRID SYSTEM */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

.col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    padding: 0 15px;
}

.col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    padding: 0 15px;
}

.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 15px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

.col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

.col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

/* UTILITY CLASSES */
.mt-5 {
    margin-top: 3rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.my-5 {
    margin: 3rem 0;
}

.py-4 {
    padding: 1.5rem 0;
}

.pt-5 {
    padding-top: 3rem;
}

.ps-5 {
    padding-left: 3rem;
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: right;
}

.align-items-center {
    align-items: center;
}

.primary-color {
    color: #004085;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* CONTACT BLOCKS */
.contact-block {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    transition: background-color .3s ease, transform .2s ease;
}

    .contact-block:hover {
        background: #eef2ff;
        transform: translateY(-3px);
    }

.contact-img {
    width: 60px;
    height: 60px;
    background: #002147;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .contact-img img {
        width: 28px;
        height: 28px;
        filter: brightness(0) invert(1);
    }

.contact-text h6 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #002147;
}

.contact-text p {
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

/* CONTACT FORM */
#contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #0033A1;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
    max-width: 900px;
    margin: auto;
}

    #contact-form h6 {
        font-size: 24px;
        font-weight: bold;
        color: #0033A1;
        margin-bottom: 25px;
    }

.inputBox {
    margin-bottom: 20px;
}

    .inputBox label {
        font-weight: 500;
        margin-bottom: 6px;
        display: block;
        color: #333;
    }

.input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 15px;
    font-size: 15px;
    background: #fff;
    transition: all .3s;
}

    .input:focus {
        border-color: #0033A1;
        box-shadow: 0 0 8px rgba(75,112,226,.4);
        outline: none;
    }

/* BUTTONS */
.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 50px;
    transition: all .3s;
}

.btn-primary {
    background: #0033A1;
    border-color: #0033A1;
    color: #fff;
    font-weight: 700;
}

    .btn-primary:hover {
        background: #3656b3;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(75,112,226,.3);
    }

/* FORM VALIDATION */
.text-danger {
    color: #dc3545;
    font-size: 14px;
}

/* FORM CHECK */
.form-check-input {
    margin-right: 8px;
}

.form-check-label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}

/* MAP RESPONSIVE */
.map-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 1px solid #ccc;
}

    .map-responsive iframe {
        border: 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/* CALL TO ACTION */
.calltoaction {
    background: #f8f9fa;
    padding: 2rem 0;
}

    .calltoaction h4 {
        margin: 0;
        color: #004085;
        font-weight: 600;
    }

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .col-md-5, .col-md-7, .col-md-8, .col-md-4, .col-sm-6, .col-sm-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ps-5 {
        padding-left: 15px;
    }

    .text-end {
        text-align: center;
        margin-top: 20px;
    }

    .contact-block {
        flex-direction: row;
        text-align: left;
    }

    #contact-form {
        padding: 20px;
        margin: 20px 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .contact-text h6 {
        font-size: 14px;
    }

    .contact-text p {
        font-size: 13px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 5px;
    }
}

/* Fancybox content styling */
.fancybox__content {
    padding: 30px;
    max-height: 80vh;
    overflow-y: auto;
}

    .fancybox__content h4 {
        color: #0033A1;
        margin-bottom: 20px;
    }

    .fancybox__content p {
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .fancybox__content ul {
        margin-left: 20px;
        margin-bottom: 15px;
    }

    .fancybox__content li {
        margin-bottom: 8px;
    }
