@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

/* Ümumi tənzimləmələr */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #f8f9fa; /* Daha təmiz fon rəngi */
    color: #2d3436;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); /* Daha dərin kölgə */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-area { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}
.logo-area img { height: 50px; }
.logo-text { 
    font-weight: 700; 
    font-size: 12px; 
    line-height: 1.3; 
    color: #662d91; 
}

/* Menyu Linkləri */
.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2d3436;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px 10px;
}

.nav-links a:hover { 
    color: #e31e24; 
}

.btn-reg {
    background: #e31e24 !important;
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.2);
}

.btn-reg:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.3);
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #662d91 0%, #e31e24 100%) !important;
    padding: 100px 8%;
    color: white;
    text-align: left;
    position: relative;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff !important;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
}

/* Formalar və Kartlar (Dizaynı göstərən əsas hissə) */
.main-forms {
    display: flex;
    gap: 30px;
    padding: 60px 8%;
    flex-wrap: wrap;
}

.card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.07); /* Yumşaq və geniş kölgə */
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
}

/* İnputlar */
input, select, textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #edf2f7; /* Daha nəzərəçarpan çərçivə */
    border-radius: 12px;
    margin-bottom: 20px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fcfcfc;
}

input:focus {
    border-color: #662d91;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(102, 45, 145, 0.1);
}

/* Mobil Menyu İkonu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #662d91;
    border-radius: 3px;
    transition: 0.3s;
}

/* Footer */
footer {
    background: #2d3436;
    color: #dfe6e9;
    padding: 60px 8% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section a {
    display: block;
    color: #b2bec3;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-section a:hover { color: white; }

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        padding-top: 100px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s ease;
    }
    .nav-links.active { right: 0; }
    .btn-reg { margin-top: 20px; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 34px; }
    .main-forms { padding: 40px 5%; }
}