/* =============================================
   GLOBAL VARIABLES & RESET
   ============================================= */
:root {
    --primary: #0E6CA4;
    --primary-dark: #0a5280;
    --accent: #C9A84C;
    --dark: #1A2B36;
    --dark-2: #243847;
    --light-bg: #F5F7FA;
    --white: #FFFFFF;
    --text-muted: #6B7C8D;
    --border: #E2E8F0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 6px 24px rgba(0,0,0,0.09);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --radius: 10px;
    --transition: 0.3s ease;
}

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

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark);
    line-height: 1.7;
    font-size: 16px;
}

/* =============================================
   HEADER
   ============================================= */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4% 0 0%;
    height: 80px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border);
}

header .logo img {
    height: 73px;
    width: auto;
    object-fit: contain;
    display: block;
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    color: var(--dark);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.92rem;
    transition: color var(--transition), background var(--transition);
}

nav a:hover {
    color: var(--primary);
    background: rgba(14, 108, 164, 0.07);
}

nav a:last-child {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

nav a:last-child:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* =============================================
   SECTION BASE
   ============================================= */
section {
    padding: 100px 8% 80px;
}

.section-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 52px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 14px auto 48px;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    background: linear-gradient(135deg, rgba(10, 82, 128, 0.92) 0%, rgba(26, 43, 54, 0.95) 100%),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1920&auto=format&fit=crop')
                no-repeat center center / cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 8%;
}

.hero-tag {
    display: inline-block;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.5);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.85;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: #b8943e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
    background: var(--primary);
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 48px;
    border-right: 1px solid rgba(255,255,255,0.15);
    flex: 1;
    min-width: 160px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
    background: var(--white);
}

.about-container {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.founder-photo {
    position: relative;
    flex-shrink: 0;
}

.founder-photo img {
    width: 300px;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: block;
}

.founder-photo::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: var(--radius);
    z-index: 0;
}

.founder-photo img {
    position: relative;
    z-index: 1;
}

.founder-badge {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 7px 20px;
    border-radius: 50px;
    white-space: nowrap;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.founder-bio h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.founder-bio p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.97rem;
}

.vision-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(14, 108, 164, 0.06);
    border-left: 4px solid var(--primary);
    border-radius: 6px;
    padding: 16px 20px;
    margin: 20px 0;
}

.vision-box i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.vision-box strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vision-box p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-tagline {
    font-style: italic;
    color: var(--accent) !important;
    font-size: 0.9rem;
    margin-top: 10px;
}

.bio-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.bio-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light-bg);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
}

.bio-highlight-item i {
    color: var(--primary);
}

/* =============================================
   CLIENTS SECTION
   ============================================= */
.clients-section {
    background: var(--light-bg);
}

.clients-intro {
    text-align: center;
    color: var(--text-muted);
    max-width: 620px;
    margin: -28px auto 40px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto 48px;
}

.industry-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border-left: 3px solid var(--primary);
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.industry-card i {
    font-size: 1.2rem;
    color: var(--primary);
    width: 22px;
    flex-shrink: 0;
}

.industry-card span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

.client-stats-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.client-stat {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 28px 36px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    box-shadow: var(--shadow-md);
}

.client-stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.client-stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
    line-height: 1.4;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    text-align: left;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    border-top: 4px solid var(--primary);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.service-card:nth-child(1) { border-top-color: #0E6CA4; }
.service-card:nth-child(2) { border-top-color: #C9A84C; }
.service-card:nth-child(3) { border-top-color: #2E8B57; }

.service-card:nth-child(1) .service-icon { background: rgba(14, 108, 164, 0.1); }
.service-card:nth-child(2) .service-icon { background: rgba(201, 168, 76, 0.12); }
.service-card:nth-child(3) .service-icon { background: rgba(46, 139, 87, 0.1); }

.service-card:nth-child(1) .service-icon i { color: #0E6CA4; }
.service-card:nth-child(2) .service-icon i { color: #C9A84C; }
.service-card:nth-child(3) .service-icon i { color: #2E8B57; }

.service-card:nth-child(1) .service-link { color: #0E6CA4; }
.service-card:nth-child(2) .service-link { color: #C9A84C; }
.service-card:nth-child(3) .service-link { color: #2E8B57; }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.service-icon i {
    font-size: 1.6rem;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.service-card:hover .service-link {
    gap: 10px;
}

/* =============================================
   SERVICE MODAL
   ============================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0,0,0,0.55);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
}

.modal-content {
    background: var(--white);
    padding: 48px;
    border-radius: 14px;
    max-width: 520px;
    width: 90%;
    position: relative;
    animation: fadeInUp 0.35s ease;
    box-shadow: var(--shadow-lg);
}

.modal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.modal-content p {
    color: var(--text-muted);
    line-height: 1.8;
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 22px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-muted);
    transition: color var(--transition);
    line-height: 1;
}

.close-btn:hover {
    color: var(--dark);
}

/* =============================================
   WHY CHOOSE US STRIP
   ============================================= */
.why-us-strip {
    background: var(--dark);
    padding: 32px 8%;
}

.why-us-inner {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-right: 1px solid rgba(255,255,255,0.1);
    flex: 1;
    min-width: 160px;
    justify-content: center;
}

.why-item:last-child {
    border-right: none;
}

.why-item i {
    font-size: 1.3rem;
    color: var(--accent);
}

.why-item span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
    background: var(--white);
}

.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.slider-arrow {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--dark);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.slider-container {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    color: var(--white);
    padding: 60px 48px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    position: absolute;
    top: 24px;
    left: 36px;
    font-size: 2.5rem;
    color: rgba(201, 168, 76, 0.3);
}

.testimonial-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.testimonial-card {
    min-width: 100%;
    text-align: center;
    padding: 0 40px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 18px;
    opacity: 0.92;
    line-height: 1.8;
}

.testimonial-card h4 {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
    background: var(--light-bg);
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
}

.contact-info-panel {
    flex: 1;
    background: var(--dark);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.contact-info-panel h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--white);
    padding-bottom: 16px;
    border-bottom: 2px solid var(--accent);
}

.contact-info-panel p {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 18px 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.contact-info-panel p i {
    color: var(--accent);
    width: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-map-placeholder {
    margin-top: 28px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.contact-map-placeholder i {
    font-size: 1.4rem;
    color: var(--accent);
}

.contact-form {
    flex: 1.4;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--dark);
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--light-bg);
    color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 108, 164, 0.1);
    background: var(--white);
}

.form-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 15px;
    margin-top: 4px;
}

.form-success {
    margin-top: 12px;
    padding: 12px 16px;
    background: #e6f9ee;
    border: 1px solid #2E8B57;
    border-radius: 6px;
    color: #2E8B57;
    font-size: 0.92rem;
    font-weight: 500;
}

.form-error {
    margin-top: 12px;
    padding: 12px 16px;
    background: #fdecea;
    border: 1px solid #c0392b;
    border-radius: 6px;
    color: #c0392b;
    font-size: 0.92rem;
    font-weight: 500;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: var(--dark);
    color: #8FA3B0;
    padding: 64px 8% 24px;
    border-top: 3px solid var(--accent);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-col p i {
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.footer-quick-links {
    margin-top: 16px;
    font-size: 0.88rem;
}

.footer-quick-links a {
    color: #8FA3B0;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-quick-links a:hover {
    color: var(--accent);
}

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

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

.footer-col ul li a {
    color: #8FA3B0;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition), gap var(--transition);
}

.footer-col ul li a i {
    font-size: 0.65rem;
    color: var(--accent);
}

.footer-col ul li a:hover {
    color: var(--white);
    gap: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 0.85rem;
    color: #5A7080;
}


/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 5000;
    text-decoration: none;
}

.whatsapp-badge {
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    padding: 13px 22px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-badge i {
    font-size: 22px;
    margin-right: 10px;
}

.whatsapp-badge span {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.whatsapp-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Hamburger button - hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px 6%;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border);
        gap: 4px;
        z-index: 999;
    }

    nav.open {
        display: flex;
    }

    nav a {
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: 8px;
        width: 100%;
    }

    nav a:last-child {
        margin-top: 8px;
        text-align: center;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .founder-photo {
        margin: 0 auto 40px;
    }

    .bio-highlights {
        justify-content: center;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .stat-item {
        padding: 20px 24px;
    }

    .why-item {
        padding: 14px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 50%;
    }

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

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

    .slider-wrapper {
        gap: 8px;
    }

    .footer-container {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    header {
        padding: 0 4% 0 2%;
    }

    section {
        padding: 90px 5% 60px;
    }

    .hero-section {
        padding: 0 5%;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-tag {
        font-size: 0.7rem;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.9rem;
    }

    section h2 {
        font-size: 1.7rem;
    }

    .stats-bar {
        flex-direction: column;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        padding: 18px;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .founder-photo img {
        width: 240px;
        height: 290px;
    }

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

    .client-stats-row {
        flex-direction: column;
    }

    .why-us-inner {
        flex-direction: column;
        align-items: center;
    }

    .why-item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        border-right: none;
    }

    .slider-container {
        height: auto;
        padding: 40px 20px;
    }

    .testimonial-card p {
        font-size: 0.95rem;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .contact-info-panel,
    .contact-form {
        padding: 28px 20px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .whatsapp-badge span {
        display: none;
    }

    .whatsapp-badge {
        padding: 14px;
        border-radius: 50%;
    }

    .whatsapp-badge i {
        margin-right: 0;
    }
}
