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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #040609; /* Deep dark background */
    color: #ffffff;
    overflow-x: hidden;
}

/* --- Header Styles --- */
header {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 180px;
    align-items: center;
    gap: 24px;
    min-height: 120px;
    padding: 18px clamp(24px, 5vw, 72px);
    background-color: #05070a;
    border-bottom: 1px solid rgba(185, 224, 32, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.logo-container {
    display: flex;
    align-items: center;
    min-width: 0;
}

.header-logo {
    width: clamp(170px, 15vw, 230px);
    height: auto;
    object-fit: contain;
    display: block;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: clamp(18px, 2vw, 34px);
}

nav ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    text-decoration: none;
    color: #b8bec8;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 2px;
    background: #b9e020;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

nav ul li.active a,
nav ul li a:hover {
    color: #b9e020;
}

nav ul li.active a::after,
nav ul li a:hover::after {
    transform: scaleX(1);
}

nav ul li a:focus-visible,
.btn-outline-black:focus-visible,
.menu-circle:focus-visible {
    outline: 2px solid #b9e020;
    outline-offset: 4px;
}

nav ul li a:active {
    color: #ffffff;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.btn-outline-black {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #b9e020;
    color: #b9e020;
    min-height: 42px;
    padding: 0 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
}

.btn-outline-black:hover {
    background-color: #b9e020;
    color: #05070a;
    border-color: #b9e020;
}

.menu-circle {
    background: #0066ff;
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    display: none;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}


/* ==========================================
   CONTACT HERO SECTION STYLES
   ========================================== */
.contact-hero-section {
    width: 100%;
    min-height: 85vh;
    background-color: #040609;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
}

.contact-hero-container {
    max-width: 1300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Column: Text */
.contact-text-col {
    flex: 1;
    max-width: 580px;
}

.contact-text-col .sub-title {
    color: #b9e020;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: block;
}

.contact-text-col .main-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 25px;
}

.main-headline .text-green { color: #b9e020; }

.contact-text-col .desc-text {
    font-family: 'Open Sans', sans-serif;
    color: #b8b8b8;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Right Column: Illustration */
.contact-image-col {
    flex: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* The glowing brush strokes behind the mascot */
.brush-bg-effects-contact {
    position: absolute;
    top: 0;
    right: -10%;
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(ellipse at 70% 60%, rgba(0, 102, 255, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 100%, rgba(185, 224, 32, 0.2) 0%, transparent 40%);
    filter: blur(25px);
    z-index: 0;
    pointer-events: none;
}

/* The Main Mascot Image */
.contact-hero-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}


/* ==========================================
   FLOATING ICONS (Phone, Mail, Location)
   ========================================== */
.floating-icon {
    position: absolute;
    z-index: 2;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: floatAnim 4s ease-in-out infinite;
}
.floating-icon svg {
    width: 30px;
    height: 30px;
}

/* Specific Colors for Floating Icons */
.green-bg-float { background: radial-gradient(circle at 35% 35%, #a9e126, #6fa515); }
.blue-bg-float { background: radial-gradient(circle at 35% 35%, #3a8aff, #0055e5); }

/* Positioning */
.icon-phone { top: 10%; right: 35%; animation-delay: 0s; }
.icon-mail { bottom: 25%; left: 0%; animation-delay: 1.5s; }
.icon-location { top: 25%; right: 5%; animation-delay: 0.8s; }

/* Floating Animation */
@keyframes floatAnim {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}


/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */
@media (max-width: 1024px) {
    header {
        grid-template-columns: 1fr auto;
        min-height: 88px;
        padding: 12px 20px;
    }

    .header-logo {
        width: 160px;
    }

    nav {
        display: block;
        grid-column: 1 / -1;
        order: 3;
    }

    nav ul {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        background: rgba(5, 7, 10, 0.98);
        border: 1px solid rgba(185, 224, 32, 0.18);
        border-radius: 8px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li a {
        width: 100%;
        min-height: 46px;
        padding: 0 10px;
    }

    nav ul li a::after {
        left: 10px;
        right: auto;
        width: 42px;
    }

    .btn-outline-black {
        min-height: 40px;
        padding: 0 18px;
    }

    .menu-circle {
        display: flex;
    }

    /* Hero to Vertical Stack */
    .contact-hero-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .contact-text-col {
        max-width: 100%;
    }
    
    .contact-text-col .main-headline {
        font-size: 38px;
    }
    .contact-image-col {
        width: 100%;
        max-width: 500px;
    }
    .brush-bg-effects-contact {
        right: 0;
        width: 100%;
    }
    
    /* Reposition floating icons for vertical stack */
    .icon-phone { top: -5%; right: 10%; }
    .icon-mail { bottom: -5%; left: 10%; }
    .icon-location { top: -5%; left: 10%; }
}

@media (max-width: 600px) {
    header {
        min-height: 76px;
        padding: 10px 16px;
    }

    .header-logo {
        width: 132px;
    }

    .contact-hero-section {
        padding: 40px 20px;
        min-height: auto;
    }
    .contact-text-col .main-headline {
        font-size: 30px;
    }
    .btn-outline-black {
        display: none;
    }

    nav ul {
        left: 16px;
        right: 16px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
    }
    .floating-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* == form section == */

/* ==========================================
   CONTACT FORM SECTION (Add to bottom of CSS)
   ========================================== */
.contact-form-section {
    width: 100%;
    background:
        linear-gradient(180deg, #040609 0%, #070b11 45%, #040609 100%);
    padding: 70px 24px 110px;
    display: flex;
    justify-content: center;
}

.contact-form-container {
    max-width: 1180px;
    width: 100%;
    background:
        linear-gradient(145deg, rgba(0, 102, 255, 0.08), transparent 34%),
        rgba(12, 16, 22, 0.82);
    border: 1px solid rgba(185, 224, 32, 0.14);
    border-radius: 8px;
    padding: 42px;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 42px;
    align-items: flex-start;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.3);
}

/* --- Left Column: GET IN TOUCH --- */
.info-column {
    min-width: 0;
    padding: 28px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    color: #b9e020;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.info-icon svg {
    width: 24px;
    height: 24px;
}

/* Icon Background Colors */
.blue-icon-bg { background: radial-gradient(circle at 35% 35%, #3a8aff, #0055e5); }
.green-icon-bg { background: radial-gradient(circle at 35% 35%, #a9e126, #6fa515); }
.lightblue-icon-bg { background: radial-gradient(circle at 35% 35%, #4da6ff, #0077e6); }

.info-text h4 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-text p {
    font-family: 'Open Sans', sans-serif;
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* --- Right Column: FORM --- */
.form-column {
    min-width: 0;
    padding: 28px;
    background: rgba(5, 7, 10, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-row {
    display: flex;
    width: 100%;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.form-group.full-width {
    flex: 100%;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    min-height: 48px;
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0 16px;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #7b8491;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #b9e020;
    box-shadow: 0 0 0 2px rgba(185, 224, 32, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    padding: 14px 16px;
}

/* Custom Styling for Select Dropdowns */
.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    border-right: 2px solid #b9e020;
    border-bottom: 2px solid #b9e020;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    color: #8d96a3;
    padding-right: 46px;
    line-height: 48px;
}

.form-group select.has-value,
.form-group select:focus {
    color: #ffffff;
}

.form-group select option {
    background: #0d1117;
    color: #ffffff;
}

.form-group select option:disabled {
    color: #8d96a3;
}

/* Submit Button */
.submit-btn {
    width: auto;
    min-width: 180px;
    min-height: 44px;
    background: #b9e020;
    border: none;
    border-radius: 8px;
    padding: 0 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #040609;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
    margin-left: auto;
}
.submit-btn svg {
    width: 17px;
    height: 17px;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(185, 224, 32, 0.25);
}
.submit-btn:active {
    transform: scale(0.98);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .form-row { flex-direction: column; gap: 15px; }
    .form-group { min-width: 100%; }
    .submit-btn { margin-left: 0; }
}

@media (max-width: 600px) {
    .contact-form-section {
        padding: 46px 16px 80px;
    }

    .contact-form-container {
        padding: 18px;
    }

    .info-column,
    .form-column {
        padding: 22px 18px;
    }

    .submit-btn {
        width: 100%;
        margin-left: 0;
    }
}

/* ==========================================
   FOOTER SECTION */
/* ==========================================
   MAP & FOLLOW US SECTION STYLES
   ========================================== */
.map-follow-section {
    width: 100%;
    background-color: #040609;
    padding: 20px 20px 100px 20px;
    display: flex;
    justify-content: center;
}

.map-follow-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}


/* --- 1. MAP CARD --- */
.map-card {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #0b0f15;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-image {
    width: 100%;
    height: auto;
    min-height: 280px;
    object-fit: cover;
    display: block;
}


/* --- 2. FOLLOW US CARD --- */
.follow-card {
    position: relative;
    width: 100%;
    min-height: 126px;
    background:
        linear-gradient(100deg, rgba(185, 224, 32, 0.18) 0%, rgba(12, 16, 22, 0.92) 18%, rgba(12, 16, 22, 0.9) 78%, rgba(0, 102, 255, 0.2) 100%),
        #0b0f15;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 30px 58px;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(185, 224, 32, 0.04);
}

/* Brush Effects (Left Green, Right Blue) */
.follow-brush-green {
    position: absolute;
    top: -28px;
    left: -48px;
    width: 22%;
    height: 160%;
    background:
        linear-gradient(150deg, #b9e020 0 10%, transparent 10% 17%, #81ac11 17% 28%, transparent 28% 37%, #b9e020 37% 48%, transparent 48% 100%),
        radial-gradient(circle at left center, rgba(185, 224, 32, 0.6) 0%, transparent 66%);
    filter: none;
    transform: skewX(-18deg);
    z-index: 0;
    pointer-events: none;
}

.follow-brush-blue {
    position: absolute;
    top: -28px;
    right: -46px;
    width: 21%;
    height: 160%;
    background:
        linear-gradient(30deg, transparent 0 20%, #0066ff 20% 32%, transparent 32% 42%, #003ea8 42% 56%, transparent 56% 100%),
        radial-gradient(circle at right center, rgba(0, 102, 255, 0.64) 0%, transparent 68%);
    filter: none;
    transform: skewX(16deg);
    z-index: 0;
    pointer-events: none;
}

.follow-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.follow-text {
    position: relative;
    flex: 1;
    max-width: 400px;
    padding: 10px 16px;
    border-radius: 8px;
    background: rgba(5, 7, 10, 0.72);
    border-left: 3px solid #b9e020;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.follow-title {
    font-family: 'Montserrat', sans-serif;
    color: #b9e020;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.follow-desc {
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

.follow-icons {
    display: flex;
    gap: 28px;
    flex-shrink: 0;
}

.social-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #3a8aff, #0055e5);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.social-circle svg {
    width: 20px;
    height: 20px;
}
.social-circle:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
    background: radial-gradient(circle at 35% 35%, #b9e020, #6fa515);
}


/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .follow-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .follow-text {
        max-width: 100%;
    }
    .follow-card {
        padding: 30px 22px;
    }
    .follow-brush-green {
        width: 40%;
        left: -50px;
    }
    .follow-brush-blue {
        width: 40%;
        right: -50px;
    }

    .follow-icons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
}
