/* ============================================
   ABDULLAH & AYAAN ENTERPRISES - MAIN STYLES
   ============================================ */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: #eab308;
    color: #0f172a;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ca8a04;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: #1e3a8a;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e2e8f0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #1e3a8a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: #eab308;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #1e293b;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ca8a04;
    background: #f1f5f9;
}

.nav-links a.active {
    font-weight: 700;
}

/* ===== DROPDOWN ===== */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown > a i {
    font-size: 10px;
    transition: transform 0.2s;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 100;
    border: 1px solid #e2e8f0;
    padding: 8px 0;
    list-style: none;
    top: 100%;
    left: 0;
}

.dropdown-menu a {
    color: #1e293b;
    padding: 10px 16px;
    display: block;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f1f5f9;
    color: #ca8a04;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #1e293b;
    cursor: pointer;
    padding: 8px;
}

/* ===== FLOATING BUTTONS ===== */
.floating-btn {
    position: fixed;
    right: 20px;
    z-index: 1000;
}

.floating-btn a {
    display: flex;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.floating-btn a:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background: #25D366;
    bottom: 100px;
}

.call-btn {
    background: #0077b5;
    bottom: 160px;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #e2e8f0;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

.badge-item i {
    color: #eab308;
    font-size: 20px;
}

/* ===== STATS ===== */
.stats-section {
    background: #1e3a8a;
    color: white;
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #bfdbfe;
    display: block;
    margin-top: 4px;
}

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: #eab308;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #475569;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ===== SERVICES ===== */
.services-section {
    padding: 60px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #eab308;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.service-icon i {
    font-size: 28px;
    color: #2563eb;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.service-card p {
    color: #475569;
    font-size: 14px;
    margin-bottom: 12px;
}

.service-link {
    color: #ca8a04;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #92400e;
    gap: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 60px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.testimonial-card .stars {
    color: #eab308;
    margin-bottom: 8px;
}

.testimonial-card .text {
    color: #475569;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-card .author {
    font-weight: 600;
    color: #0f172a;
}

.testimonial-card .role {
    color: #94a3b8;
    font-size: 13px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    text-align: center;
}

.cta-icon {
    font-size: 48px;
    color: #eab308;
    margin-bottom: 16px;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.cta-content .btn-primary {
    background: #eab308;
    color: #0f172a;
}

.cta-content .btn-primary:hover {
    background: #ca8a04;
}

/* ===== FOOTER ===== */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-links a {
    color: #94a3b8;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

.footer a {
    color: #94a3b8;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.footer p {
    margin-bottom: 8px;
}

.network-links {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #1e293b;
}

.network-links p {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 8px;
}

.network-links a {
    display: inline-block;
    margin-right: 12px;
    font-size: 13px;
    color: #ca8a04;
    font-weight: 600;
}

.network-links a:hover {
    color: #eab308;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a {
    display: inline-block;
    margin: 0 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 16px 0;
        gap: 4px;
    }
    
    .nav-links.open {
        display: flex;
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: relative;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 0 0 16px;
        display: none;
    }
    
    .dropdown.open .dropdown-menu {
        display: block;
    }
    
    .dropdown > a {
        justify-content: space-between;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 18px;
    }
    .hero {
        min-height: 300px;
        padding: 50px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }
    .hero {
        min-height: 260px;
        padding: 40px 0;
    }
    
    .badges-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .badge-item {
        font-size: 12px;
    }
    
    .floating-btn a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}