/* ==========================================================================
   Base Styles & Variables - Clean Light Corporate Theme
   ========================================================================== */
:root {
    /* Color Palette - Light Theme */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc; /* Very light gray */
    --bg-tertiary: #f1f5f9;
    
    --text-primary: #0f172a; /* Near black */
    --text-secondary: #475569; /* Gray for paragraphs */
    --border-light: #e2e8f0;
    
    /* Brand Colors - Logo inspired (Navy & Orange) */
    --accent-primary: #ff6600; /* Logo Orange */
    --accent-secondary: #1e2c45; /* Logo Navy Blue */
    --accent-whatsapp: #25D366;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --border-radius: 8px; /* Tighter radius for corporate feel */
    --transition: all 0.25s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%; /* Mobile friendly padding */
}

.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--accent-secondary);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(255, 102, 0, 0.2);
}

.btn-primary:hover {
    background-color: #e65c00;
    transform: translateY(-1px);
    box-shadow: 0 6px 10px -1px rgba(255, 102, 0, 0.3);
}

.btn-secondary {
    background-color: #fff;
    color: var(--accent-whatsapp);
    border: 1px solid var(--border-light);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.btn-secondary:hover {
    border-color: var(--accent-whatsapp);
    background-color: rgba(37, 211, 102, 0.05);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-secondary);
    color: var(--accent-secondary);
}

.btn-outline:hover {
    background-color: var(--accent-secondary);
    color: #fff;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-secondary);
    letter-spacing: -0.5px;
    text-transform: lowercase;
}

.logo span {
    color: var(--accent-primary);
}

.logo .tagline {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: -2px;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-list a:hover {
    color: var(--accent-secondary);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--accent-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.badge-group {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-text .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text .location-badge {
    background: var(--accent-secondary);
    color: #fff;
    border: 1px solid var(--accent-secondary);
}

.hero-text .location-badge i {
    color: var(--accent-primary);
}

.hero-text .text-badge {
    background: rgba(255, 102, 0, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-text .highlight {
    color: var(--accent-secondary);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.corporate-badge {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 32px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    margin-left: auto;
}

.corporate-badge.secondary {
    margin-right: auto;
    margin-left: 0;
}

.icon-large {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--accent-primary);
}

.corporate-badge.secondary .icon-large {
    color: var(--accent-secondary);
}

.corporate-badge h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--accent-secondary);
}

.corporate-badge p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================================================
   Specialties Section
   ========================================================================== */
.specialties {
    background: var(--bg-primary);
}

.specialty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.specialty-card {
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
}

.specialty-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.specialty-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: rgba(30, 44, 69, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-secondary);
    margin-bottom: 20px;
}

.highlight-card .specialty-icon {
    background: rgba(255, 102, 0, 0.1);
    color: var(--accent-primary);
}

.specialty-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--accent-secondary);
}

.specialty-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================================================
   Reels Section
   ========================================================================== */
.reels {
    background: var(--bg-tertiary);
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    justify-items: center;
}

.reels-grid blockquote {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

/* ==========================================================================
   Services Grid Section
   ========================================================================== */
.services {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-item {
    background: var(--bg-primary);
    padding: 32px 24px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--accent-secondary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-item i {
    font-size: 1.5rem;
    color: var(--accent-secondary);
    margin-bottom: 16px;
}

.service-item h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

/* ==========================================================================
   About & Contact Section
   ========================================================================== */
.about-contact {
    background: var(--bg-primary);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--accent-secondary);
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-top: 8px;
    font-weight: 600;
}

.contact-card {
    background: var(--accent-secondary);
    color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: #fff;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-list i {
    color: var(--accent-primary);
    font-size: 1.2rem;
    margin-top: 4px;
}

.contact-list span, .contact-list a {
    color: #e2e8f0;
    font-size: 1rem;
}

.contact-list a:hover {
    color: var(--accent-primary);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.social-links a:hover {
    background: var(--accent-primary);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: #0f172a;
    padding: 60px 0 24px;
    color: #fff;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 32px;
}

.footer-logo h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    text-transform: lowercase;
}

.footer-logo span {
    color: var(--accent-primary);
}

.footer-logo p {
    color: #94a3b8;
    margin-top: 8px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-bottom {
    width: 100%;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 0.85rem;
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: var(--accent-whatsapp);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.05);
}

/* ==========================================================================
   Strict Mobile Optimization & Responsive Queries
   ========================================================================== */
@media (max-width: 992px) {
    .hero {
        padding-top: 120px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-text p {
        margin: 0 auto 24px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        align-items: center;
    }
    
    .corporate-badge, .corporate-badge.secondary {
        margin: 0 auto;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Header Adjustments */
    .nav, .header-contact {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Layout Adjustments */
    .section-padding {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .specialty-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .specialty-card {
        padding: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .btn {
        width: 100%;
    }
    
    .floating-whatsapp {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .contact-card {
        padding: 24px;
    }
    
    .contact-list li {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Mobile Menu Active State */
    .nav.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-primary);
        padding: 20px;
        flex-direction: column;
        align-items: center;
        border-bottom: 1px solid var(--border-light);
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    }
    
    .nav.active .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        width: 100%;
    }
    
    .nav.active .nav-list a {
        display: block;
        padding: 10px;
        font-size: 1.1rem;
    }
}
