:root {
    --primary: #FFCC00;
    /* Logo Yellow */
    --primary-dark: #E6B800;
    --bg-light: #FFFFFF;
    --bg-soft: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-grey: #666666;
    --border: #EEEEEE;
    --transition: all 0.2s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Header */
header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: none;
    color: #000;
}

.logo img {
    height: 70px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav ul a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-gold {
    background: var(--primary);
    color: #000;
}

.btn-gold:hover {
    background: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-dark);
}

/* Hero */
.hero {
    padding: 4rem 0;
    background: var(--bg-soft);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #FFCC00;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero h1 span {
    color: var(--primary-dark);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
}

/* Stats */
.stats {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

.stats-wrapper {
    display: flex;
    justify-content: space-around;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item i {
    color: var(--primary);
    width: 30px;
}

.stat-item h3 {
    font-size: 1.5rem;
}

.stat-item p {
    color: var(--text-grey);
    font-size: 0.85rem;
}

/* Services */
.services {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    padding: 2.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
}

.service-card i {
    width: 40px;
    height: 40px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-grey);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-grey);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.detail-item i {
    width: 50px;
    height: 50px;
    background: var(--bg-soft);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.detail-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-grey);
    margin-bottom: 0.2rem;
}

.detail-item strong {
    font-size: 1.2rem;
}

.contact-form {
    background: #fff;
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--bg-soft);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
}

.w-full {
    width: 100%;
    justify-content: center;
}

/* Footer */
footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    background: var(--bg-soft);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-grey);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-grey);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--bg-soft);
}

.faq-grid {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-soft);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-grey);
    display: none;
    border-top: 1px solid var(--border);
    margin-top: -1px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--primary);
}

/* Regions Section */
.regions {
    padding: 6rem 0;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.region-tag {
    background: #fff;
    border: 1px solid var(--border);
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.region-tag:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Features Detailed */
.features-detailed {
    padding: 6rem 0;
    background: #111;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    color: var(--primary);
    width: 48px;
    height: 48px;
    margin-bottom: 1.2rem;
}

.feature-item h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Advanced Responsive Design */

/* Fluid Typography */
h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
}

@media (max-width: 1200px) {
    .container {
        max-width: 95%;
        padding: 0 2rem;
    }

    .hero-grid {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    header nav {
        display: none;
    }

    .header-actions .btn-primary {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: var(--bg-soft);
        border-radius: 12px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .stats-wrapper {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .regions-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-links {
        justify-content: center;
    }

    .logo img {
        height: 50px;
    }

    .contact-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-logo {
    margin-bottom: 3rem;
}

.mobile-logo img {
    height: 80px;
}

.mobile-menu-overlay ul {
    list-style: none;
    text-align: center;
    margin-bottom: 3rem;
}

.mobile-menu-overlay ul li {
    margin-bottom: 1.5rem;
}

.mobile-menu-overlay ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 800;
}

/* WhatsApp Float Fix */
.whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
}