@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --primary: #1a365d; /* Dark Navy */
    --primary-light: #4a8dc4; /* Med Blue */
    --accent: #64c3cf; /* Teal/Cyan */
    --accent-rgb: 100, 195, 207;
    --bg-light: #f0f4f8;
    --text-main: #1a202c;
    --text-muted: #4a5568;
    --white: #ffffff;
    --card-shadow: 0 20px 40px rgba(26, 54, 93, 0.08);
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* ================= SECTION 1: ELEGANT HERO ================= */
.contact-hero {
    position: relative;
    min-height: clamp(400px, 60vh, 600px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--white);
    padding-top: 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--accent) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.1;
    z-index: 0;
}

.hero-auras .aura {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    z-index: 1;
}

.aura-1 { width: clamp(300px, 40vw, 500px); height: clamp(300px, 40vw, 500px); background: var(--primary-light); top: -100px; right: -100px; }
.aura-2 { width: clamp(250px, 30vw, 400px); height: clamp(250px, 30vw, 400px); background: var(--accent); bottom: -100px; left: -100px; }

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-tag {
    color: var(--primary-light);
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInDown 1s var(--transition);
}

.hero-tag::after {
    content: '';
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-family: var(--font-head);
    font-weight: 900;
    color: var(--primary);
}

.title-reveal {
    display: block;
    overflow: hidden;
}

.title-reveal span {
    display: block;
    animation: titleSlideUp 1.2s var(--transition) both;
}

.highlight-text {
    color: var(--accent);
    position: relative;
}

.hero-desc {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
    margin-top: 2rem;
    animation: fadeInUp 1s var(--transition) 0.4s both;
}

/* ================= SECTION 2: CONTACT WRAPPER ================= */
.contact-wrapper {
    padding: clamp(60px, 10vh, 100px) 0;
    background: var(--bg-light);
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}

/* Info Grid */
.info-grid {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 4vw, 2.5rem);
    border-radius: clamp(20px, 4vw, 30px);
    border: 1px solid var(--white);
    box-shadow: var(--card-shadow);
    display: flex;
    gap: clamp(1rem, 2vw, 2rem);
    align-items: flex-start;
    transition: all 0.6s var(--transition);
}

.info-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 30px 60px rgba(26, 54, 93, 0.1);
}

.highlight-card {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.highlight-card:hover {
    background: #1e3e6b;
}

.icon-circle {
    width: clamp(45px, 5vw, 55px);
    height: clamp(45px, 5vw, 55px);
    background: var(--white);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}

.highlight-card .icon-circle {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.info-text .label {
    display: block;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.7rem;
    color: var(--primary-light);
    margin-bottom: 0.6rem;
}

.highlight-card .label { color: var(--accent); opacity: 0.8; }

.info-text h3 {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    margin-bottom: 0.3rem;
}

.highlight-card h3 { color: var(--white); }

.info-text p {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.6;
    color: var(--text-muted);
}

.highlight-card p { color: rgba(255, 255, 255, 0.8); }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.3s;
    font-size: 0.95rem;
}

.link-arrow:hover { gap: 1rem; }

.link-gray {
    display: inline-block;
    margin-top: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    position: relative;
    font-size: 0.9rem;
}

.link-gray::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.link-gray:hover::after { width: 100%; }

/* Social Strip */
.social-strip {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--white);
    margin-top: 0.5rem;
}

.social-strip span {
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    font-size: 1.2rem;
    color: var(--primary);
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--accent);
    transform: translateY(-3px) scale(1.1);
}

/* Form Container */
.form-container {
    background: var(--white);
    padding: clamp(2.5rem, 5vw, 4rem);
    border-radius: clamp(30px, 5vw, 40px);
    box-shadow: 0 30px 80px rgba(26, 54, 93, 0.06);
    position: relative;
    overflow: hidden;
}

.form-header { margin-bottom: 2.5rem; }

.form-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.form-header p {
    font-size: 1rem;
    color: var(--text-muted);
}

.modern-form { display: grid; gap: clamp(1.2rem, 2vw, 1.8rem); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.2rem, 2vw, 1.8rem);
}

.input-group { display: flex; flex-direction: column; gap: 0.7rem; }

.input-group label {
    font-weight: 800;
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input, select, textarea {
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(26, 54, 93, 0.1);
    background: var(--bg-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    transition: all 0.4s var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(100, 195, 207, 0.1);
}

.select-wrapper { position: relative; }
.select-arrow { position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--primary-light); }

.submit-btn {
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.4s var(--transition);
    box-shadow: 0 12px 28px rgba(26, 54, 93, 0.15);
    width: fit-content;
}

.submit-btn:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(100, 195, 207, 0.25);
}

/* ================= SECTION 3: MAP ================= */
.map-section {
    position: relative;
    background: var(--white);
}

.map-section iframe {
    filter: grayscale(1) invert(0.1);
    opacity: 0.8;
    transition: all 0.8s;
}

.map-section:hover iframe { filter: grayscale(0) invert(0); opacity: 1; }

.map-overlay-card {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(26, 54, 93, 0.12);
    display: flex;
    gap: 1.2rem;
    align-items: center;
    border: 1px solid var(--white);
}

.map-overlay-card i { font-size: clamp(2rem, 4vw, 3rem); color: var(--accent); }
.map-overlay-card h4 { font-size: clamp(1.1rem, 1.5vw, 1.5rem); margin-bottom: 0.3rem; }
.map-overlay-card p { font-weight: 700; color: var(--primary); font-size: 0.95rem; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
    .container { padding: 0 2.5rem; }
    .contact-layout { grid-template-columns: 1fr; gap: 4rem; }
    .map-overlay-card { position: relative; top: 0; right: 0; transform: none; margin: -4rem auto 4rem; max-width: 500px; justify-content: center; text-align: left; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .contact-hero { height: auto; min-height: auto; padding: 140px 0 80px; }
    .hero-title { margin-bottom: 1.5rem; }
    
    .form-container { padding: 2.5rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; gap: 1.5rem; }
    .submit-btn { width: 100%; }
}

@media (max-width: 480px) {
    .hero-tag { letter-spacing: 3px; }
    .social-strip { flex-direction: column; gap: 1rem; text-align: center; }
}

/* Animations */
@keyframes titleSlideUp {
    from { transform: translateY(110%); }
    to { transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
