
:root {
    --bg: #121212;
    --bg-light: #1a1a1a;
    --text: #EDEDED;
    --muted: #a0a0a0;
    --brand-yellow: #F5C453;
    --brand-red: #D5402B;
    --accent: #f7a600;
    --card: #1e1e1e;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 10px 40px rgba(0, 0, 0, .5);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}
.contact-page {
    position: relative;
    min-height: 100vh;
}

.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}


.container {
    position: relative;
    z-index: 1;
    width: min(1200px, 92%);
    margin: 0 auto;
    padding: 0 20px;
}




.contact-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    padding: 40px 0 80px;
    min-height: calc(100vh - 200px);
    align-items: center;
}

.contact-info {
    padding-right: 40px;
}

.page-title {
    font-family: "Lobster Two", cursive;
    font-size: 56px;
    color: var(--brand-yellow);
    margin-bottom: 16px;
    line-height: 1.1;
}

.page-subtitle {
    font-size: 18px;
    color: var(--muted);
    max-width: 400px;
    margin-bottom: 40px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    transition: var(--transition);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(245, 196, 83, 0.3);
    transform: translateX(8px);
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--accent) 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--bg);
}

.info-text h4 {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 4px;
}

.info-text p {
    font-size: 16px;
    color: var(--text);
    font-weight: 600;
}
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--muted);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--brand-yellow);
    border-color: var(--brand-yellow);
    transform: translateY(-4px);
}

.social-link:hover svg {
    fill: var(--bg);
}

.contact-form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-card {
    width: 100%;
    max-width: 520px;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow);
    position: relative;
    
}
.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    fill: var(--muted);
    transition: var(--transition);
    pointer-events: none;
}

.textarea-wrapper .input-icon {
    top: 16px;
    align-self: flex-start;
}

.form-input {
    width: 100%;
    padding: 16px 16px 16px 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    transition: var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--brand-yellow);
}

.form-input:focus + .input-icon,
.input-wrapper:focus-within .input-icon {
    fill: var(--brand-yellow);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 16px;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--brand-red) 0%, #e74c3c 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(213, 64, 43, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(4px);
}


.contact-footer {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-footer p {
    font-size: 14px;
    color: var(--muted);
}

/* ========================================
   MOBILE RESPONSIVE ENHANCEMENTS
   ======================================== */

@media (max-width: 900px) {
    .contact-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 20px 0 60px;
    }

    .contact-info {
        padding-right: 0;
        text-align: center;
    }

    .page-title {
        font-size: 42px;
    }

    .page-subtitle {
        margin: 0 auto 32px;
    }

    .info-cards {
        max-width: 400px;
        margin: 0 auto 32px;
    }

    .info-card:hover {
        transform: translateY(-4px);
    }

    .social-links {
        justify-content: center;
    }

    .form-card {
        padding: 32px 24px;
    }
}

/* Tablet Styles */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .contact-header {
        padding: 16px 20px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .home-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .page-title {
        font-size: 38px;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .info-card {
        padding: 20px 18px;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .form-card {
        padding: 28px 22px;
        border-radius: 22px;
    }
    
    .form-title {
        font-size: 26px;
    }
    
    .form-input, .form-textarea {
        padding: 14px 14px 14px 44px;
        font-size: 16px; /* Prevents iOS zoom */
    }
    
    .submit-btn {
        padding: 15px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contact-header {
        flex-direction: column;
        gap: 14px;
        padding: 14px 16px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .home-btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    .page-title {
        font-size: 30px;
        line-height: 1.2;
    }
    
    .page-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .info-cards {
        gap: 12px;
    }
    
    .info-card {
        padding: 18px 16px;
        border-radius: 14px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .info-text h3 {
        font-size: 0.9rem;
    }
    
    .info-text p {
        font-size: 0.85rem;
    }

    .form-title {
        font-size: 22px;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
    }

    .form-card {
        padding: 24px 18px;
        border-radius: 18px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-label {
        font-size: 0.85rem;
    }

    .form-input, .form-textarea {
        padding: 14px 14px 14px 42px;
        border-radius: 12px;
        font-size: 16px;
    }
    
    .input-icon {
        left: 14px;
        font-size: 16px;
    }

    .submit-btn {
        padding: 14px 24px;
        font-size: 14px;
        border-radius: 12px;
        width: 100%;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .contact-footer {
        padding: 24px 16px;
    }
    
    .contact-footer p {
        font-size: 13px;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .page-title {
        font-size: 26px;
    }
    
    .form-card {
        padding: 20px 14px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .form-input, .form-textarea {
        padding: 12px 12px 12px 38px;
    }
    
    .submit-btn {
        padding: 13px 20px;
    }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    .info-card:active {
        transform: scale(0.98);
    }
    
    .submit-btn:active {
        transform: scale(0.97);
    }
    
    .social-link:active {
        transform: scale(0.9);
    }
    
    .home-btn:active {
        transform: scale(0.97);
    }
    
    .form-input:focus, .form-textarea:focus {
        transform: none;
    }
}

/* Safe area for notched devices */
@supports (padding: max(0px)) {
    .contact-header {
        padding-top: max(14px, env(safe-area-inset-top));
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .contact-footer {
        padding-bottom: max(30px, env(safe-area-inset-bottom));
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info {
    animation: fadeInUp 0.6s ease forwards;
}

.form-card {
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

