:root {
    --primary: #84bcdd;
    --primary-dark: #2c7bac;
    --primary-light: #A3D4EE;
    --secondary: #00E5D4;
    --accent: #FFC107;
    --dark: #000000;
    --light: #FFFFFF;
    --bg-light: #f1f2f4;
    --bg-white: #ffffff;
    --text-dark: #212121;
    --text-main: #424242;
    --text-medium: #555555;
    --text-light: #757575;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-white: #ffffff;
    --heading-color: var(--text-white);
    --gradient-primary: linear-gradient(135deg, #84bcdd 0%, #6BA4C5 100%);
    --gradient-secondary: linear-gradient(90deg, #212121 0%, #424242 100%);
    --gradient-hero: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    --gradient-cta: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    --gradient-blue: linear-gradient(135deg, #3949ab, #5c6bc0);
    --container-max-width: 1400px;
    --section-padding-large: 100px 0;
    --section-padding-medium: 80px 0;
    --section-padding-small: 50px 0;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-full: 50px;
    --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-text: 0 2px 4px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
    --primary-blue: #1a2980;
    --secondary-blue: #23395d;
    --accent-blue: #84bcdd;
    --light-blue: #5dade2;
    --dark-blue: #010D2E;
    --text-gray: #555555;
    --border-color: var(--text-white);
}

/* ==========================================================================
   CONTACT PAGE STYLES
   Simple & Clean Design
   ========================================================================== */



/* Hero Section */
.contact-hero {
    position: relative;
    background: url('/static/assets/hero.jpeg') center 40% / cover no-repeat;
    color: var(--text-white);
    overflow: hidden;
    padding: 5rem 0 0 0;
    min-height: 95vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.contact-hero .container {
    position: relative;
    z-index: 10;
}

.contact-hero h2 {
    font-size: 56px;
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
    animation: fadeInDown 0.8s ease-out;
}

.contact-hero p {
    color: var(--text-white);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;

    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: var(--primary-blue);
    font-size: 44px;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    color: var(--text-gray);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

/* Contact Card */
.contact-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
    color: var(--primary-blue);
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-card p i {
    color: var(--accent-blue);
    width: 20px;
    text-align: center;
}

/* Form Styles */
.form-field {
    margin-bottom: 25px;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--accent-blue);
    outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

/* Buttons */
.btn-primary {
    padding: 16px 40px;
    background: linear-gradient(135deg, #2284C3 0%, #1a6da3 100%);
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 132, 195, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a6da3 0%, #14527d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 132, 195, 0.4);
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, #2284C3 0%, #1a6da3 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(34, 132, 195, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #1a6da3 0%, #14527d 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 132, 195, 0.5);
}

.btn-submit i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.btn-outline {
    padding: 14px 30px;
    background: transparent;
    color: var(--accent-blue);
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--accent-blue);
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        background: url('/static/assets/Snapchat-1933929992.jpeg') no-repeat center 40%;
        background-size: cover;
        min-height: 95vh;
        padding: 180px 0 100px;
        text-align: center;
        position: relative;
    }

    .contact-hero h2 {
        font-size: 36px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .contact-card {
        padding: 30px 25px;
    }

    .contact-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 100px 0 40px;
    }

    .contact-hero h2 {
        font-size: 28px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 16px;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .btn-primary,
    .btn-outline {
        padding: 14px 25px;
        font-size: 14px;
    }
}