/* AppWT World - Main Stylesheet */
/* Brand Colors: Forest #1B4332, Gold #F4A261, Platinum #F8F9FA, Obsidian #0D2818 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #1B4332;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    max-width: 200px;
    height: auto;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

header nav a {
    color: #F8F9FA;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

header nav a:hover,
header nav a.active {
    color: #F4A261;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0D2818 0%, #1B4332 100%);
    color: #F8F9FA;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero .subtitle {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 30px;
    color: #F8F9FA;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    min-width: 150px;
    text-align: center;
}

.btn-primary {
    background: #F4A261;
    color: #0D2818;
}

.btn-primary:hover {
    background: #e89451;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: #F8F9FA;
    border: 2px solid #F8F9FA;
}

.btn-secondary:hover {
    background: #F8F9FA;
    color: #1B4332;
}

/* Sections */
section {
    padding: 60px 20px;
}

section h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 30px;
    color: #1B4332;
    text-align: center;
}

section h3 {
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 15px;
    color: #0D2818;
}

/* Country Grid */
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.country-card {
    background: #F8F9FA;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #F4A261;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.country-card h3 {
    color: #1B4332;
    margin-bottom: 10px;
}

.country-card .highlight {
    color: #F4A261;
    font-weight: 600;
    margin-top: 10px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    color: #1B4332;
    margin-bottom: 15px;
}

.service-card .price {
    color: #F4A261;
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature h3 {
    color: #1B4332;
    margin-bottom: 10px;
}

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

.stat {
    text-align: center;
    padding: 30px;
    background: #F8F9FA;
    border-radius: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #F4A261;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #1B4332;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-method {
    text-align: center;
    padding: 25px;
    background: #F8F9FA;
    border-radius: 8px;
}

.contact-method h3 {
    color: #1B4332;
    margin-bottom: 10px;
}

.contact-method .small {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1B4332 0%, #0D2818 100%);
    color: #F8F9FA;
    text-align: center;
}

.cta-section h2 {
    color: #F8F9FA;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Page Header */
.page-header {
    background: #1B4332;
    color: #F8F9FA;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 15px;
}

/* FAQ Items */
.faq-item {
    background: #F8F9FA;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #F4A261;
}

.faq-item h3 {
    color: #1B4332;
    margin-bottom: 10px;
}

/* Service Details */
.service-detail {
    background: #fff;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.service-detail h3 {
    color: #1B4332;
    margin-bottom: 10px;
}

.service-detail ul {
    margin-left: 20px;
    margin-top: 15px;
}

.service-detail li {
    margin-bottom: 8px;
}

/* Location Cards */
.location-card {
    background: #F8F9FA;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    border-left: 4px solid #1B4332;
}

.location-card h3 {
    color: #1B4332;
    margin-bottom: 10px;
}

.countries-list ul {
    list-style: none;
    margin-top: 20px;
}

.countries-list li {
    padding: 10px;
    background: #F8F9FA;
    margin-bottom: 10px;
    border-radius: 5px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.office-locations {
    margin-top: 60px;
}

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

.location {
    background: #F8F9FA;
    padding: 20px;
    border-radius: 8px;
}

.location ul {
    list-style: none;
    margin-top: 10px;
}

.location li {
    padding: 5px 0;
}

/* Footer */
footer {
    background: #0D2818;
    color: #F8F9FA;
    padding: 40px 20px 20px;
}

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

.footer-col h4 {
    color: #F4A261;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #F8F9FA;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #F4A261;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1B4332;
}

/* Links */
a {
    color: #1B4332;
    transition: color 0.3s;
}

a:hover {
    color: #F4A261;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero {
        padding: 50px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    section {
        padding: 40px 15px;
    }
    
    .country-grid,
    .services-grid,
    .features-grid,
    .stats-grid,
    .contact-methods,
    .contact-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero .subtitle {
        font-size: 16px;
    }
    
    section h2 {
        font-size: 24px;
    }
    
    section h3 {
        font-size: 20px;
    }
}
