/* EIN Packages Page Styles */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Progress Section / Hero */
.progress-section {
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    text-align: center;
}

.ein-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.ein-title-line {
    display: block;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: #f8f9fa;
}

.ein-info-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.ein-info-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 20px;
}

.highlight-ein {
    color: #0ea5e9;
}

.ein-intro, .ein-footer {
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 20px;
}

.challenges-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a3a52;
    margin: 25px 0 15px;
}

.challenges-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.challenges-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #6c757d;
}

.challenges-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: 700;
}

.btn-get-started-ein {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-get-started-ein:hover {
    background: #0284c7;
    transform: translateY(-2px);
}

.ein-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.ein-image-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Packages Section */
.packages-section {
    padding: 80px 0;
    background: white;
}

.international-main-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #1a3a52;
    margin-bottom: 50px;
}

/* Hamburger Menu - White bars for dark navbar */
.hamburger span {
    background: #ffffff !important;
}

/* Responsive Fixes */
@media (max-width: 968px) {
    .hamburger {
        display: flex !important;
    }
    
    .ein-info-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .ein-image-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    .progress-section {
        min-height: 350px;
        padding: 60px 0;
    }
    
    .ein-hero-title {
        font-size: 32px !important;
    }
    
    .ein-info-text h2 {
        font-size: 28px !important;
    }
    
    .international-main-title {
        font-size: 32px !important;
    }
    
    section {
        padding: 50px 0 !important;
    }
}

@media (max-width: 480px) {
    .ein-hero-title {
        font-size: 28px !important;
    }
    
    .ein-info-text h2 {
        font-size: 24px !important;
    }
    
    .international-main-title {
        font-size: 28px !important;
    }
}

/* Prevent horizontal overflow */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

section {
    max-width: 100%;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}


/* International Content Section */
.international-content-wrapper {
    margin-bottom: 80px;
}

.international-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: #f8f9fa;
    padding: 60px;
    border-radius: 12px;
}

.international-intro, .international-footer {
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 20px;
}

.service-benefits-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a3a52;
    margin: 25px 0 15px;
}

.service-benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-benefits-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #6c757d;
    font-size: 15px;
}

.service-benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: 700;
}

.btn-get-started-international {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-get-started-international:hover {
    background: #0284c7;
    transform: translateY(-2px);
}

.international-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.international-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Section */
.services-main-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #1a3a52;
    margin: 60px 0 50px;
}

.highlight-brand {
    color: #0ea5e9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #0ea5e9;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a3a52;
    margin: 0;
}

.services-footer-text {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
    max-width: 900px;
    margin: 0 auto 30px;
}

.btn-get-started-services {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 auto;
    display: flex;
    width: fit-content;
}

.btn-get-started-services:hover {
    background: #0284c7;
    transform: translateY(-2px);
}

/* Responsive for Package Selection */
@media (max-width: 968px) {
    .international-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 40px 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .services-main-title {
        font-size: 32px !important;
    }
}

@media (max-width: 640px) {
    .international-content {
        padding: 30px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    
    .services-main-title {
        font-size: 28px !important;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .services-main-title {
        font-size: 24px !important;
    }
    
    .service-card h3 {
        font-size: 16px;
    }
}
