/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.contact-info > p {
    color: #6b7280;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1F3C88 0%, #2a4fa3 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.method-icon.whatsapp-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.method-details h4 {
    font-weight: 600;
    margin-bottom: 4px;
    color: #1f2937;
}

.method-details a,
.method-details p {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
}

.method-details a:hover {
    color: #1F3C88;
}

.office-locations h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.offices-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.office-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f7f9fb;
    border-radius: 10px;
}

.office-item .flag-emoji {
    font-size: 2rem;
}

.office-flag {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.office-details strong {
    display: block;
    color: #1f2937;
    margin-bottom: 2px;
}

.office-details p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-header p {
    color: #6b7280;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1f2937;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9375rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1F3C88;
    box-shadow: 0 0 0 3px rgba(31, 60, 136, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.875rem;
    color: #6b7280;
}

.checkbox-label input {
    width: auto;
    margin-top: 2px;
}

.checkbox-label a {
    color: #1F3C88;
}

.btn-full {
    width: 100%;
}

/* Contact FAQ */
.contact-faq {
    padding: 60px 0;
    background: #f7f9fb;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.faq-item h4 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.faq-item p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   LOCATIONS PAGE STYLES
   ========================================================================== */

.locations-section {
    padding: 60px 0;
}

.location-region {
    margin-bottom: 48px;
}

.region-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
}

.region-title svg {
    color: #1F3C88;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.location-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    text-decoration: none;
    color: #1f2937;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: #1F3C88;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.location-flag {
    margin-bottom: 20px;
}

.location-flag .flag-emoji {
    font-size: 3rem;
}

.location-flag img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.location-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.location-info > p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.location-services {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.location-services li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #1f2937;
    margin-bottom: 8px;
}

.location-services li svg {
    color: #00B04F;
    flex-shrink: 0;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1F3C88;
    font-weight: 500;
    font-size: 0.9rem;
}

.location-link svg {
    transition: transform 0.3s ease;
}

.location-card:hover .location-link svg {
    transform: translateX(4px);
}

/* Why Global Section */
.why-global-section {
    padding: 60px 0;
    background: #f7f9fb;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1F3C88 0%, #2a4fa3 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}

.benefit-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-card p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb svg {
    opacity: 0.6;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Badges */
.hero-badges {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
}

.hero-badges .badge svg {
    color: #00B04F;
}

/* ==========================================================================
   RESPONSIVE - CONTACT & LOCATIONS
   ========================================================================== */

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================================
   INDUSTRY PAGE STYLES
   ========================================================================== */

.industry-hero {
    text-align: center;
}

.industry-hero .hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
}

.industry-hero .hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.industry-services {
    padding: 60px 0;
}

.industry-services .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.industry-services .service-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.industry-services .service-card:hover {
    border-color: #1F3C88;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.industry-services .service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.industry-services .service-card p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1F3C88;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
}

.btn-link svg {
    transition: transform 0.3s ease;
}

.btn-link:hover svg {
    transform: translateX(4px);
}

/* Why Industry Section */
.why-industry {
    padding: 60px 0;
    background: #f7f9fb;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F3C88;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1F3C88 0%, #0f1f3d 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Industry */
@media (max-width: 1024px) {
    .industry-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .industry-services .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-stats {
        grid-template-columns: 1fr;
    }
    
    .industry-hero .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================================
   PRICING PAGE STYLES
   ========================================================================== */

.pricing-hero {
    text-align: center;
}

.packages-section {
    padding: 60px 0;
    background: #f7f9fb;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.package-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 2px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.package-card.popular {
    border-color: #1F3C88;
    transform: scale(1.05);
}

.package-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1F3C88;
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 24px;
}

.package-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.package-price {
    margin-bottom: 8px;
}

.package-price .price {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F3C88;
}

.package-price .period {
    color: #6b7280;
    font-size: 1rem;
}

.best-for {
    color: #6b7280;
    font-size: 0.875rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: #374151;
}

.package-features li.included .check {
    color: #00B04F;
}

.package-features li.not-included {
    color: #9ca3af;
}

.package-features li.not-included .cross {
    color: #ef4444;
}

.package-cta {
    text-align: center;
}

.package-cta .btn {
    width: 100%;
}

/* Detailed Pricing */
.detailed-pricing {
    padding: 60px 0;
}

.service-pricing-block {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 24px;
    overflow: hidden;
}

.service-pricing-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #f7f9fb;
    border-bottom: 1px solid #e5e7eb;
}

.service-pricing-header img {
    width: 48px;
    height: 48px;
}

.service-pricing-header h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.service-pricing-header p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.service-pricing-table {
    overflow-x: auto;
}

.service-pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.service-pricing-table th,
.service-pricing-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.service-pricing-table th {
    background: #f7f9fb;
    font-weight: 600;
    font-size: 0.875rem;
    color: #6b7280;
}

.service-pricing-table td.price-cell {
    color: #1F3C88;
    font-weight: 600;
}

/* Services Page */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-full-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.service-card-header {
    padding: 24px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-card-header .service-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-header .service-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.service-card-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.service-card-body {
    padding: 24px;
}

.service-card-body p {
    color: #6b7280;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.875rem;
    color: #374151;
}

.service-features-list li svg {
    color: #00B04F;
    flex-shrink: 0;
}

/* Responsive Pricing */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .package-card.popular {
        transform: none;
    }
    
    .services-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-full-grid {
        grid-template-columns: 1fr;
    }
}
