
.hero {
    height: 60vh;
    background: linear-gradient(rgba(26, 42, 58, 0.6), rgba(26, 42, 58, 0.6)), 
                url('https://images.unsplash.com/photo-1580519542036-c47de6196ba5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.hero-cta {
    display: inline-block;
    background: #b38e5d;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(179, 142, 93, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(179, 142, 93, 0.4);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1a2a3a;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b38e5d 0%, #a57e4d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a2a3a;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0;
    color: #666;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: #b38e5d;
    margin-right: 12px;
    width: 20px;
}

.service-cta {
    display: block;
    background: #b38e5d;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(179, 142, 93, 0.3);
}

.process-section {
    background: white;
    border-radius: 25px;
    padding: 60px;
    margin-bottom: 80px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #b38e5d 0%, #a57e4d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.process-step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a2a3a;
    margin-bottom: 10px;
    font-weight: 700;
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

.countries-section {
    margin-bottom: 80px;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

.country-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.country-flag {
    font-size: 3rem;
    margin-bottom: 10px;
}

.country-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #1a2a3a;
    font-weight: 600;
}

.pricing-banner {
    background: linear-gradient(135deg, #1a2a3a 0%, #2d3e50 100%);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 80px;
    color: white;
    text-align: center;
}

.pricing-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    backdrop-filter: blur(10px);
}

.pricing-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.pricing-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #b38e5d;
}

.application-form {
    background: white;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a2a3a;
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #b38e5d;
}

.submit-btn {
    background: linear-gradient(135deg, #b38e5d 0%, #a57e4d 100%);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(179, 142, 93, 0.4);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-section, .pricing-banner, .application-form {
        padding: 40px 25px;
    }
    
    .nav-links {
        display: none;
    }
}