@import "variables.css";
@import "fonts.css";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #F97316;
    --primary-dark: #EA580C;
    --secondary: #FB923C;
    --background: #FFF8F3;
    --surface: #FFFFFF;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --success: #10B981;
    --error: #EF4444;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--background);
}

/* ==================== NAVIGATION ==================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

h2, h3, h4, h5, h6 {
    font-weight: 800;
    font-family: 'Poppins-Bold', sans-serif;
}

nav.scrolled {
    padding: 0.7rem 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Poppins-ExtraBold', sans-serif;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon{
    width: 60px;
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

a.cta-button{
    color: white;
}

a.cta-button:hover{
    color: white;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.4);
}

/* ==================== CONTACT SECTION ==================== */

.contact-section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-header h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.contact-container {
    gap: 4rem;
    align-items: start;
}

/* ==================== CONTACT INFO ==================== */

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--background);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 0.5rem;
}

.info-content p,
.info-content a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

/* ==================== FOOTER ==================== */

footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    max-width: 1400px;
    display: flex;
    justify-content: space-around;
    gap: 4rem;
    margin: 0 auto 3rem;
}

.help-section a{
    color: var(--primary);
    text-decoration: none;
}

.footer-brand {
    max-width: 50%;
}

.footer-brand h3 {
    font-size: 28px;
    color: var(--primary);
}

.footer-brand p {
    color: #9CA3AF;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.logo-brand{
    margin-bottom: 1rem;

    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-brand img{
    width: 50px;
    height: 50px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
    text-wrap: nowrap;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #9CA3AF;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .section-header h1 {
        font-size: 42px;
    }
}

@media (max-width: 790px) {
    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {

    .section-header h1 {
        font-size: 32px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-brand {
        max-width: 100%;
    }
}