﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0px !important;
    font-family: Poppins;
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


.site-header {
    position: fixed;
    /* background: linear-gradient(
    90deg,
    #0b1020 0%,
    #1b1f3b 50%,
    #7a1630 100%
  );*/
}
/* HERO SECTION */
/*.contact-hero {*/
/* background: url(../images/contact-banner.jpg);
    padding: 80px 0;
    background-size: 100% 100%;*/
/*}*/

.contact-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    /* Layered background */
    background:
    /* Left dark overlay (focus area) */
    linear-gradient( 90deg, rgba(3, 10, 30, 0.95) 0%, rgba(3, 10, 30, 0.85) 35%, rgba(3, 10, 30, 0.65) 55%, rgba(3, 10, 30, 0.25) 75%, rgba(3, 10, 30, 0.05) 100% ),
    /* Subtle color depth */
    linear-gradient( 135deg, rgba(88, 101, 242, 0.15), rgba(236, 72, 153, 0.12) ),
    /* Background image */
    url("../images/contact-banner.jpg");
    /*background-size: cover;*/
    background-position: right center;
    background-repeat: no-repeat;
    padding: 80px 0;
    margin-top: 100px;
    background-size: 100% 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.hero-text p {
    color: #fff;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
}

    .btn-primary:hover {
        background: #1d4ed8;
    }

.btn-outline {
    border: 2px solid #e2e8f0;
    color: #0f172a;
    background: #fff;
}

    .btn-outline:hover {
        background: #f1f5f9;
    }

/* HERO VISUAL */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gradient-blob {
    width: 320px;
    height: 260px;
    background: linear-gradient( 135deg, #c7d2fe, #a5b4fc, #fbcfe8, #bae6fd );
    border-radius: 50% 40% 60% 40%;
    filter: blur(2px);
}

/* CARDS */
.contact-cards {
    padding: 40px 0 80px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.card a {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
}

    .card a:hover {
        text-decoration: underline;
    }

.card p {
    color: #475569;
    font-size: 0.95rem;
}

.card .strong {
    font-weight: 600;
    color: #0f172a;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
}


.badge {
    display: inline-block;
    background: #e0e7ff;
    color: #3730a3;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.contact-header h1 {
    font-size: 35px;
    margin-bottom: 14px;
    font-weight: 600;
}

.contact-header p {
    color: #475569;
}

/* Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

/* Glass Form */
.contact-form {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.field {
    position: relative;
    margin-bottom: 10px;
}

.contact-header {
    display: block;
    margin-bottom: 30px;
    margin-top: 30px;
}

.field input,
.field textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #aeb6c1;
    font-size: 0.95rem;
    outline: none;
    background: transparent;
}

.field label {
    color: #000;
    font-size: 16px;
    pointer-events: none;
    transition: 0.2s;
    background: white;
    padding: 10px 0px;
    margin-bottom: 0px;
    display: block;
    font-weight: 500;
}

.field textarea + label {
    top: 18px;
}

.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label {
    top: 0px;
    font-size: 0.7rem;
    color: #2563eb;
}

/* Button */
.btn-primary {
    padding: 16px 30px;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
    background: linear-gradient(135deg, #6366f1, #2563eb);
    cursor: pointer;
}

    .btn-primary:hover {
        opacity: 0.95;
    }

/* Info Cards */
.contact-info {
    display: grid;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

    .info-card span {
        font-size: 1.4rem;
    }

    .info-card h4 {
        margin: 12px 0 6px;
        font-weight: 500;
    }

    .info-card p {
        color: #475569;
    }

.feature-item h4 {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0px 5px;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-header h1 {
        font-size: 2rem;
    }
}

/* chat gpt */

.contact-section {
    padding: 64px 0;
    /*padding: 48px 24px;*/
    background: #f8fafc;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: flex-start;
}

/* Form Card */
.contact-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

    .contact-form-card h2 {
        font-size: 1.45rem; /* was ~1.6 */
        margin-bottom: 4px;
        /*font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 6px;*/
    }

.form-subtext {
    font-size: 0.9rem;
    margin-bottom: 16px;
    /*font-size: 0.95rem;*/
    color: #64748b;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

    .form-group label {
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 6px;
        color: #0f172a;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        border-radius: 10px;
        border: 1px solid #e2e8f0;
        font-size: 0.9rem;
        transition: all 0.2s ease;
        outline: none;
    }

    .form-group textarea {
        min-height: 88px;
        resize: vertical;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #5865f2;
            box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.15);
        }

/* Submit Button */
.submit-btn {
    margin-top: 12px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(135deg, #5865f2, #4f46e5);
    box-shadow: 0 12px 30px rgba(88, 101, 242, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .submit-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 16px 36px rgba(88, 101, 242, 0.45);
    }

.form-trust {
    margin-top: 12px;
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
}

/* Right Info Cards */
.contact-info {
    flex: 1;
    max-width: 340px; /* control width here */
    display: flex;
    flex-direction: column;
    gap: 15px;
    /*display: flex;
    flex-direction: column;
    gap: 12px;*/
}

.info-card {
    display: flex;
    align-items: center; /* ⭐ vertical center */
    gap: 24px;
    padding: 24px;
    /*background: #f5f6f8;*/
    border-radius: 14px;
    max-height: 120px;
    background: #ffffff;
    /*border-radius: 14px;
    padding: 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
    text-align:center;
*/
}

.icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: #e9e7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #5b5bd6;
    /* width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    background: rgba(88, 60, 200, 0.12);*/
}

.info-card .icon {
    font-size: 1.2rem;
}

.info-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    /* margin-top: 6px;
    font-size: 0.95rem;
    font-weight: 600;*/
}

.info-card p {
    margin-top: 4px;
    font-size: 0.9rem;
    color: #475569;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-card small {
    font-size: 0.75rem;
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

.contact-map {
    position: relative;
    min-height: 80vh;
    /*height: 100vh;*/
    width: 100%;
    overflow: hidden;
}

    .contact-map video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        transform: translate(-50%, -50%);
        object-fit: cover;
        z-index: 1;
        opacity: 50%;
    }

.video-overlay {
    z-index: 2;
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(88, 60, 200, 0.18), rgba(246, 247, 251, 0.95) 55% );
}

.contact-map .vid-text {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.serving-worldwide {
    margin-top: 56px;
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    opacity: 0.65;
    text-align: center;
    letter-spacing: 0.3px;
}


/*.global-section {
  position: relative;
  padding: 100px 20px;
  background: #f6f7fb;
  overflow: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}*/

/* Globe background */
/*.bg-globe {
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  background: url("globe.png") no-repeat center / contain;
  opacity: 0.28;
  z-index: 1;
}*/

/* Gradient overlay for contrast */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(88, 60, 200, 0.18), rgba(246, 247, 251, 0.95) 55% );
    z-index: 2;
}

.container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 15px;
    color: #6b7280;
    max-width: 560px;
    margin: 0 auto 50px;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    }



    .card h3 {
        font-size: 17px;
        font-weight: 600;
        color: #111827;
        margin-bottom: 8px;
    }

    .card p {
        font-size: 14px;
        color: #6b7280;
        line-height: 1.6;
    }

.features {
    margin: 50px 0px;
}

.map {
    margin: 10px 0px 50px;
}

    .map img {
        width: 100%;
    }
