/* ============================================================
   LESP Condomínios - Main Stylesheet
   Theme: Modern & Professional Cleaning Services
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #1a237e;
    --primary-dark: #0d1442;
    --primary-light: #3949ab;
    --secondary: #00bcd4;
    --secondary-dark: #0097a7;
    --accent: #ff6f00;
    --accent-light: #ffa040;
    --gradient-primary: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
    --gradient-secondary: linear-gradient(135deg, #00bcd4 0%, #26c6da 50%, #4dd0e1 100%);
    --gradient-hero: linear-gradient(135deg, rgba(13,20,66,0.92) 0%, rgba(26,35,126,0.85) 50%, rgba(0,188,212,0.7) 100%);
    --gradient-card: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    --text-dark: #1a1a2e;
    --text-body: #4a4a6a;
    --text-light: #7a7a9a;
    --bg-light: #f4f6fc;
    --bg-white: #ffffff;
    --border-color: #e8ecf4;
    --shadow-sm: 0 2px 8px rgba(26,35,126,0.06);
    --shadow-md: 0 5px 25px rgba(26,35,126,0.08);
    --shadow-lg: 0 10px 50px rgba(26,35,126,0.12);
    --shadow-xl: 0 20px 80px rgba(26,35,126,0.15);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}
a { 
    color: var(--primary); 
    text-decoration: none; 
    transition: var(--transition); 
}
a:hover { 
    color: var(--secondary); 
    text-decoration: none; 
}
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; }
.section { padding: 100px 0; }

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(0,188,212,0.1);
    color: var(--secondary-dark);
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 15px;
}
.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}
.section-title .text-primary { color: var(--primary); }
.section-desc {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.btn-lg { padding: 15px 40px; font-size: 16px; }
.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
}
.btn-primary:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline-light {
    background: transparent;
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}
.btn-light {
    background: #fff;
    color: var(--primary);
}
.btn-light:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary-dark);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-bar-info { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.top-bar-item { display: inline-flex; align-items: center; gap: 6px; }
.top-bar-item svg { width: 14px; height: 14px; fill: var(--secondary); }
.top-bar-item a { color: rgba(255,255,255,0.8); }
.top-bar-item a:hover { color: var(--secondary); }
.top-bar-social a {
    display: inline-block;
    color: rgba(255,255,255,0.6);
    margin-left: 12px;
    font-size: 16px;
    transition: var(--transition);
}
.top-bar-social a:hover { color: var(--secondary); }

/* ===== NAVBAR ===== */
.main-navbar {
    background: #fff;
    padding: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
    position: sticky;
    top: 0;
    z-index: 1030;
}
.main-navbar.navbar-scrolled {
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}
.navbar-brand {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    margin-right: 40px;
}
.brand-text {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 2px;
    line-height: 1;
}
.brand-tagline {
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}
.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 25px 16px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition);
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary) !important; }

.btn-cta-nav {
    background: #25D366;
    color: #fff;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 20px;
    white-space: nowrap;
}
.btn-cta-nav:hover { background: #128C7E; color: #fff; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(37,211,102,0.3); }

.navbar-toggler { border: none; padding: 0; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%231a237e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 60px;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--gradient-hero);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(0,188,212,0.2);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--secondary);
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 25px;
}
.hero-title {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-title .text-highlight {
    background: linear-gradient(135deg, var(--secondary), #80deea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 580px;
}
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.stat-item { text-align: center; }
.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}
.stat-number::after { content: '+'; color: var(--secondary); }
.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    text-align: center;
}
.hero-card-icon { margin-bottom: 20px; }
.hero-card-icon svg { width: 48px; height: 48px; fill: var(--secondary); }
.hero-card h4 { color: #fff; font-size: 22px; margin-bottom: 10px; }
.hero-card p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 25px; }

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--bg-white); }
.about-image-wrapper { position: relative; }
.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-image-main img { width: 100%; display: block; }
.about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    padding: 25px 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.exp-number {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}
.exp-text {
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}
.about-content { padding-left: 20px; }
.about-heading {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.about-content p { color: var(--text-body); margin-bottom: 15px; line-height: 1.8; }
.about-features { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}
.about-feature i { 
    font-size: 28px; 
    color: var(--secondary); 
    background: rgba(0,188,212,0.1); 
    width: 50px; height: 50px; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 12px; 
    flex-shrink: 0;
}
.about-feature strong { display: block; font-size: 15px; color: var(--text-dark); }
.about-feature span { font-size: 13px; color: var(--text-light); }

/* ===== SERVICES SECTION ===== */
.services-section { background: var(--bg-light); }
.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-icon {
    width: 65px; height: 65px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(26,35,126,0.08);
    border-radius: 16px;
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gradient-primary); }
.service-icon svg { width: 30px; height: 30px; fill: var(--primary); transition: var(--transition); }
.service-card:hover .service-icon svg { fill: #fff; }
.service-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; flex-grow: 1; }
.service-link {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.service-link:hover { color: var(--secondary); gap: 12px; }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,188,212,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-banner h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 0; }

/* ===== DIFFERENTIALS SECTION ===== */
.diffs-section { background: var(--bg-white); }
.diff-card {
    padding: 35px 25px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}
.diff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.diff-icon-wrap {
    width: 70px; height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.diff-icon-wrap i { font-size: 30px; color: #fff; }
.diff-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.diff-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 0; }

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section { background: var(--bg-light); }
.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-stars { margin-bottom: 15px; }
.testimonial-stars i { color: #ffc107; font-size: 16px; margin-right: 2px; }
.testimonial-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 45px; height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--text-dark); }
.testimonial-author span { font-size: 12px; color: var(--text-light); }

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--bg-white); }
.contact-info-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 35px;
}
.contact-info-card h4 { font-size: 20px; margin-bottom: 25px; }
.contact-info-card h4 i { color: var(--secondary); margin-right: 10px; }
.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.contact-list li { display: flex; align-items: flex-start; gap: 15px; }
.contact-icon { flex-shrink: 0; }
.contact-icon svg { width: 22px; height: 22px; fill: var(--secondary); }
.contact-list strong { display: block; font-size: 14px; color: var(--text-dark); }
.contact-list a, .contact-list span { font-size: 14px; color: var(--text-body); }
.contact-list a:hover { color: var(--secondary); }

.contact-form-wrapper {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 35px;
}
.contact-form-wrapper h4 { font-size: 20px; margin-bottom: 25px; }
.contact-form-wrapper h4 i { color: var(--secondary); margin-right: 10px; }

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    color: var(--primary);
    opacity: 0.8;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control,
.form-floating > .form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    height: 56px;
    padding: 16px 16px 8px;
    font-size: 15px;
    background: #fff;
    transition: var(--transition);
}
.form-floating > textarea.form-control {
    height: auto;
    min-height: 120px;
}
.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(0,188,212,0.1);
}
.form-floating label {
    padding: 16px 16px 8px;
    font-size: 14px;
    color: var(--text-light);
}
.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.form-message {
    padding: 15px;
    border-radius: var(--radius-sm);
    display: none;
    font-size: 14px;
}
.form-message.success { display: block; background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-message.error { display: block; background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ===== FOOTER ===== */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.7); }
.footer-widgets { padding: 70px 0 50px; }
.footer-logo {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}
.footer-logo span { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.5); display: block; }
.footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); color: #fff; }

.footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--secondary); padding-left: 5px; }

.footer-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 15px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; }
.footer-contact i { color: var(--secondary); font-size: 16px; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--secondary); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    font-size: 13px;
}
.footer-bottom p { margin-bottom: 0; }
.footer-bottom a { color: var(--secondary); }
.footer-bottom a:hover { color: #fff; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px; height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float:hover { background: #128C7E; color: #fff; transform: scale(1.1); }
@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 40px rgba(37,211,102,0.6); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 44px; height: 44px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

/* ===== SCROLL ANIMATIONS ===== */
.aos-init {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.aos-init.aos-animate {
    opacity: 1;
    transform: translateY(0);
}
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }
[data-aos="flip-up"] { 
    transform: perspective(400px) rotateX(-10deg); 
    transform-origin: center bottom;
}
[data-aos="flip-up"].aos-animate { 
    transform: perspective(400px) rotateX(0); 
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .hero-title { font-size: 42px; }
    .hero-stats { gap: 25px; }
    .stat-number { font-size: 30px; }
}

@media (max-width: 991px) {
    .section { padding: 70px 0; }
    .section-title { font-size: 30px; }
    .hero-section { min-height: auto; padding: 100px 0 50px; }
    .hero-title { font-size: 34px; }
    .hero-subtitle { font-size: 16px; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .about-content { padding-left: 0; margin-top: 40px; }
    .about-experience { right: -10px; bottom: -10px; padding: 20px; }
    .exp-number { font-size: 26px; }
    .navbar-nav .nav-link { padding: 12px 16px !important; }
    .navbar-nav .nav-link::after { display: none; }
    .nav-cta { margin: 10px 0 20px; }
    .btn-cta-nav { margin-left: 0; display: block; text-align: center; }
}

@media (max-width: 767px) {
    .section { padding: 50px 0; }
    .section-title { font-size: 26px; }
    .section-desc { font-size: 15px; }
    .hero-title { font-size: 28px; }
    .hero-subtitle { font-size: 15px; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .hero-card { padding: 25px 20px; }
    .top-bar-info { justify-content: center; gap: 12px; }
    .top-bar-social { text-align: center; margin-top: 5px; }
    .top-bar-item { font-size: 12px; }
    .testimonial-card { padding: 25px 20px; }
    .contact-info-card, .contact-form-wrapper { padding: 25px 20px; }
    .cta-banner .text-lg-end { margin-top: 20px; text-align: left !important; }
    .about-experience { position: relative; bottom: 0; right: 0; margin-top: -40px; margin-left: auto; width: fit-content; }
    .whatsapp-float { width: 48px; height: 48px; font-size: 24px; bottom: 15px; right: 15px; }
    .back-to-top { bottom: 75px; right: 15px; width: 38px; height: 38px; font-size: 16px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 24px; }
    .hero-badge { font-size: 11px; padding: 6px 16px; }
    .section-title { font-size: 22px; }
    .about-heading { font-size: 22px; }
}
