/* ============================================
   Global Br Consulting - Premium Style System
   Colors from logo: Navy #1e3a5f + Gold #c8a84e
   Inspired by cartoriobrasileiro.org layout
   ============================================ */

:root {
    --navy: #1e3a5f;
    --navy-dark: #152b47;
    --navy-light: #2a5078;
    --gold: #c8a84e;
    --gold-light: #d4b86a;
    --gold-dark: #b0923e;
    --gold-glow: rgba(200, 168, 78, 0.25);
    --bg-cream: #faf8f2;
    --bg-warm: #f5f1e8;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-muted: #7a7a8a;
    --border-light: rgba(200, 168, 78, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(200, 168, 78, 0.2);
    --shadow-sm: 0 2px 8px rgba(30, 58, 95, 0.06);
    --shadow-md: 0 8px 30px rgba(30, 58, 95, 0.1);
    --shadow-lg: 0 20px 60px rgba(30, 58, 95, 0.15);
    --shadow-gold: 0 8px 30px rgba(200, 168, 78, 0.2);
    --transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body { 
    
    
     font-family: "Google Sans Flex", sans-serif;
  font-style: normal;
    
    
    line-height: 1.7; color: var(--text-body); background-color: var(--bg-cream); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--navy);   font-family: "Google Sans", sans-serif; }
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.15rem; }
p { color: var(--text-body); font-size: 1.02rem; }

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(200,168,78,0.15);
    transition: var(--transition);
}
.top-bar.hidden { transform: translateY(-100%); margin-bottom: -38px; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 1.5rem; }
.top-bar-left a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition-fast); display: flex; align-items: center; gap: 6px; }
.top-bar-left a:hover { color: var(--gold); }
.top-bar-right { display: flex; gap: 1rem; }
.top-bar-right a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition-fast); font-size: 0.95rem; }
.top-bar-right a:hover { color: var(--gold); transform: scale(1.2); }

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.85rem 2rem; border-radius: 60px; font-weight: 600; font-size: 1rem;
    text-decoration: none; cursor: pointer; transition: var(--transition); gap: 8px;
    border: none;
      font-family: "Google Sans", sans-serif;
       position: relative; overflow: hidden;
}
.btn::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent); opacity: 0; transition: var(--transition-fast); }
.btn:hover::after { opacity: 1; }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--white); box-shadow: 0 4px 15px rgba(200, 168, 78, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(200, 168, 78, 0.45); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255, 255, 255, 0.4); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--gold); color: var(--gold-light); transform: translateY(-3px); }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-cta { background: #25D366; color: var(--white); padding: 1rem 2.5rem; font-size: 1.05rem; box-shadow: 0 5px 20px rgba(37,211,102,0.3); }
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.45); }

/* ============================================
   Header / Navigation
   ============================================ */
header {
    position: fixed; top: 38px; left: 0; width: 100%; z-index: 1000;
    padding: 0.8rem 0; transition: var(--transition); background: transparent;
    background: #152b47;
}
header.scrolled {
    top: 0; padding: 0.5rem 0; background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light); box-shadow: var(--shadow-sm);
}
nav { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 48px; width: auto; filter: brightness(0) invert(1); transition: var(--transition); }
header.scrolled .logo img { filter: none; }
.nav-links { display: flex; list-style: none; align-items: center; gap: 1.8rem; }
.nav-links a { text-decoration: none; color: rgba(255, 255, 255, 0.9); font-weight: 500; font-size: 1rem; transition: var(--transition-fast); position: relative; padding-bottom: 4px; }
.nav-links a:not(.btn)::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition-fast); }
.nav-links a:not(.btn):hover::after, .nav-links a:not(.btn).active::after { width: 100%; }
header.scrolled .nav-links a:not(.btn) { color: var(--text-dark); }
.nav-links a:hover, header.scrolled .nav-links a:not(.btn):hover { color: var(--gold); }
.nav-links .btn { padding: 0.55rem 1.4rem; font-size: 1rem; }
.mobile-menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--white); z-index: 1100; transition: var(--transition-fast); background: none; border: none; }
header.scrolled .mobile-menu-toggle { color: var(--navy); }

/* Mobile Menu Overlay */
.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(30, 58, 95, 0.97); backdrop-filter: blur(20px); z-index: 1050; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); }
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu-overlay .mobile-nav-links { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 2rem; }
.mobile-menu-overlay .mobile-nav-links a { text-decoration: none; color: var(--white); font-size: 1.5rem; font-weight: 600; transition: var(--transition-fast); display: inline-block; transform: translateY(30px); opacity: 0; }
.mobile-menu-overlay.active .mobile-nav-links a { transform: translateY(0); opacity: 1; }
.mobile-menu-overlay .mobile-nav-links li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-menu-overlay .mobile-nav-links li:nth-child(2) a { transition-delay: 0.15s; }
.mobile-menu-overlay .mobile-nav-links li:nth-child(3) a { transition-delay: 0.2s; }
.mobile-menu-overlay .mobile-nav-links li:nth-child(4) a { transition-delay: 0.25s; }
.mobile-menu-overlay .mobile-nav-links li:nth-child(5) a { transition-delay: 0.3s; }
.mobile-menu-overlay .mobile-nav-links li:nth-child(6) a { transition-delay: 0.35s; }
.mobile-menu-overlay .mobile-nav-links a:hover { color: var(--gold); }
.mobile-close-btn { position: absolute; top: 1.5rem; right: 2rem; font-size: 2.5rem; color: var(--white); cursor: pointer; transition: var(--transition-fast); background: none; border: none; }
.mobile-close-btn:hover { color: var(--gold); transform: rotate(90deg); }

/* ============================================
   Hero Slider
   ============================================ */
.hero-slider { position: relative; min-height: 100vh; overflow: hidden;  padding:0 !important }
.slides-container { position: relative; width: 100%; height: 100vh;}
.slide {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: var(--slide-bg, linear-gradient(135deg, var(--navy-dark), var(--navy)));
    opacity: 0; transition: opacity 1s ease; z-index: 0;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-content { text-align: center; max-width: 800px; padding: 0 2rem; z-index: 2; }
.slide-content .badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200, 168, 78, 0.15); border: 1px solid rgba(200, 168, 78, 0.3);
    color: var(--gold-light); padding: 0.5rem 1.2rem; border-radius: 60px;
    font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem;
}
.slide-content h1 { color: var(--white); margin-bottom: 1rem; letter-spacing: -0.02em; }
.slide-content h1 .highlight { color: var(--gold); }
.slide-content p { font-size: 1.1rem; margin-bottom: 2rem; color: rgba(255, 255, 255, 0.75); line-height: 1.8; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* Slider Arrows */
.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    background: rgba(200, 168, 78, 0.2); border: 1px solid rgba(200, 168, 78, 0.3);
    color: var(--white); width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    transition: var(--transition); font-size: 1rem; backdrop-filter: blur(10px);
}
.slider-prev { left: 2rem; }
.slider-next { right: 2rem; }
.slider-arrow:hover { background: var(--gold); color: var(--navy-dark); }

/* Slider Dots */
.slider-dots { position: absolute; bottom: 120px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 10px; }
.slider-dots .dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.3); border: none; cursor: pointer; transition: var(--transition); }
.slider-dots .dot.active { background: var(--gold); transform: scale(1.3); }

/* Stats Bar */
.hero-stats-bar {
    position: absolute; bottom: 0; left: 0; width: 100%; z-index: 10;
    background: rgba(30, 58, 95, 0.8); backdrop-filter: blur(20px);
    border-top: 1px solid rgba(200, 168, 78, 0.15); padding: 1.5rem 0;
}
.hero-stats { display: flex; justify-content: center; gap: 4rem; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-item strong { font-size: 1.8rem; color: var(--gold); font-weight: 700; }
.stat-item span { font-size: 0.75rem; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

/* ============================================
   Section Common
   ============================================ */
section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.8rem; }
.section-header h2::after { content: ''; display: block; width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin: 0.8rem auto 0; border-radius: 2px; }
.section-header p { max-width: 550px; margin: 0 auto; font-size: 1.05rem; }
.section-label {
    display: inline-block; background: rgba(200, 168, 78, 0.1); color: var(--gold-dark);
    padding: 0.3rem 1rem; border-radius: 30px; font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.8rem;
}
.section-label-light { background: rgba(200, 168, 78, 0.15); color: var(--gold-light); }

/* ============================================
   About / Quem Somos
   ============================================ */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.about-image-wrapper { position: relative; }
.about-logo-img {
    width: 100%; max-width: 400px; height: auto; border-radius: 20px;
    background: var(--bg-cream); padding: 2rem; box-shadow: var(--shadow-md);
}
.about-experience-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark); padding: 1.5rem; border-radius: 20px;
    text-align: center; box-shadow: var(--shadow-gold);
    animation: badgeFloat 3s ease-in-out infinite;
}
@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.about-experience-badge strong { display: block; font-size: 2.5rem; font-weight: 800; line-height: 1; }
.about-experience-badge span { font-size: 0.8rem; font-weight: 600; opacity: 0.8; }
.about-text-col h2 { margin-bottom: 1.2rem; }
.about-description { margin-bottom: 1rem; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin: 1.5rem 0 2rem; }
.about-feature { display: flex; align-items: center; gap: 0.6rem; font-weight: 500; font-size: 0.92rem; color: var(--text-dark); }
.about-feature i { color: var(--gold); font-size: 1rem; }

/* ============================================
   Services - Flip Cards
   ============================================ */
.services { background: var(--bg-cream); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.service-card { perspective: 1000px; height: 260px; }
.service-card-inner {
    position: relative; width: 100%; height: 100%;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transform-style: preserve-3d;
}
.service-card:hover .service-card-inner { transform: rotateY(180deg); }
.service-front, .service-back {
    position: absolute; inset: 0; backface-visibility: hidden;
    border-radius: 20px; padding: 2rem; display: flex;
    flex-direction: column; justify-content: center;
}
.service-front {
    background: var(--white); border: 1px solid var(--glass-border);
    text-align: center; align-items: center;
}
.service-front .service-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.08), rgba(200, 168, 78, 0.1));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--navy); margin-bottom: 1rem;
}
.service-front h3 { margin-bottom: 0.5rem; }
.service-front p { font-size: 0.88rem; color: var(--text-muted); }
.service-back {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white); transform: rotateY(180deg);
    text-align: center; align-items: center;
}
.service-back h3 { color: var(--gold); margin-bottom: 0.8rem; }
.service-back p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 1.2rem; line-height: 1.6; }

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
    position: relative; padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 500px; height: 500px; border-radius: 50%;
    border: 1px solid rgba(200, 168, 78, 0.08);
    animation: heroGlobeRotate 20s linear infinite;
}
@keyframes heroGlobeRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; position: relative; z-index: 2; flex-wrap: wrap; }
.cta-text h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.cta-text p { color: rgba(255,255,255,0.7); max-width: 500px; }

/* ============================================
   How It Works
   ============================================ */
.how-it-works { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: var(--white); position: relative; overflow: hidden; }
.how-it-works .section-header h2, .how-it-works .section-header p { color: var(--white); }
.how-it-works .section-header h2::after { background: linear-gradient(90deg, var(--gold), transparent); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; z-index: 1; }
.steps-grid::before { content: ''; position: absolute; top: 50px; left: 16.66%; right: 16.66%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.3; }
.step-item { text-align: center; padding: 2rem 1.5rem; opacity: 0; transform: translateY(30px); }
.step-number { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; color: var(--navy-dark); margin: 0 auto 1.5rem; position: relative; z-index: 2; box-shadow: 0 8px 25px rgba(200, 168, 78, 0.3); }
.step-item h3 { color: var(--white); margin-bottom: 0.8rem; }
.step-item p { color: rgba(255, 255, 255, 0.65); font-size: 0.95rem; }

/* ============================================
   Pricing
   ============================================ */
.pricing { background: var(--bg-warm); }
.pricing-table { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border-light); }
table { width: 100%; border-collapse: collapse; }
thead th { padding: 1.5rem 2rem; text-align: left; background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; }
tbody td { padding: 1.2rem 2rem; border-bottom: 1px solid rgba(200, 168, 78, 0.08); font-size: 0.95rem; }
tbody td:last-child { font-weight: 700; color: var(--navy); }
tbody tr { transition: var(--transition-fast); }
tbody tr:hover { background: linear-gradient(90deg, rgba(200, 168, 78, 0.05), transparent); }
tbody tr:last-child td { border-bottom: none; }
.pricing-note { padding: 1.2rem 2rem; font-size: 0.85rem; font-style: italic; color: var(--text-muted); border-top: 1px solid rgba(200, 168, 78, 0.08); }

/* ============================================
   Features
   ============================================ */
.features { background: var(--bg-cream); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.feature-item { text-align: center; padding: 2.5rem 1.5rem; border-radius: 20px; transition: var(--transition); opacity: 0; transform: translateY(30px); }
.feature-item:hover { background: var(--white); box-shadow: var(--shadow-md); }
.feature-item i { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; display: block; transition: var(--transition); }
.feature-item:hover i { transform: scale(1.2); color: var(--navy); }
.feature-item h4 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.feature-item p { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================
   Testimonials Carousel
   ============================================ */
.testimonials { background: var(--bg-warm); }
.testimonials-carousel { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.testimonial-card {
    min-width: 100%; padding: 2.5rem; box-sizing: border-box;
    background: var(--white); border-radius: 20px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light); position: relative; margin: 0 1rem;
}
.testimonial-card::before { content: '"'; position: absolute; top: 1rem; right: 1.5rem; font-size: 4rem; 
     font-family: "Google Sans", sans-serif;
      color: var(--gold); opacity: 0.15; line-height: 1; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.testimonial-stars i { color: var(--gold); font-size: 0.9rem; }
.testimonial-card p { font-style: italic; margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.7; }
.client-info { display: flex; flex-direction: column; gap: 2px; }
.client-info strong { color: var(--navy); font-size: 0.95rem; }
.client-info span { color: var(--text-muted); font-size: 0.85rem; }
.carousel-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.carousel-btn {
    width: 45px; height: 45px; border-radius: 50%; border: 2px solid var(--border-light);
    background: var(--white); color: var(--navy); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.carousel-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ============================================
   Contact Section
   ============================================ */
.contact { background: var(--bg-warm); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 0; background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border-light); }
.contact-info { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: var(--white); padding: 3.5rem; position: relative; overflow: hidden; }
.contact-info::before { content: ''; position: absolute; bottom: -50px; right: -50px; width: 200px; height: 200px; border-radius: 50%; border: 1px solid rgba(200, 168, 78, 0.1); }
.contact-info h2 { color: var(--white); margin-bottom: 0.8rem; font-size: 1.8rem; }
.contact-info > p { color: rgba(255, 255, 255, 0.65); margin-bottom: 2rem; font-size: 0.95rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.detail-item { display: flex; align-items: center; gap: 1rem; }
.detail-item i { color: var(--gold); font-size: 1rem; width: 20px; text-align: center; }
.detail-item span { color: rgba(255, 255, 255, 0.8); font-size: 0.92rem; }
.contact-form { padding: 3.5rem; }
.contact-form .form-group { margin-bottom: 1.2rem; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 1rem 1.2rem; border: 1px solid var(--border-light); border-radius: 12px; font-family: inherit; font-size: 0.95rem; color: var(--text-dark); background: var(--bg-cream); transition: var(--transition-fast); outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); background: var(--white); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form textarea { height: 130px; resize: none; }
.contact-form .btn { width: 100%; padding: 1rem; font-size: 1rem; }

/* ============================================
   Footer
   ============================================ */
footer { background: linear-gradient(180deg, var(--navy-dark) 0%, #0f1f33 100%); color: var(--white); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo img { height: 55px; margin-bottom: 1.2rem; filter: brightness(0) invert(1); }
.company-description p { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; line-height: 1.7; }
.company-details { font-weight: 700; color: var(--gold) !important; margin-bottom: 0.5rem; font-size: 0.95rem !important; }
.address { margin-top: 1.5rem; display: flex; gap: 0.8rem; }
.address i { color: var(--gold); margin-top: 4px; font-size: 0.9rem; }
.address a { color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: var(--transition-fast); font-size: 0.9rem; line-height: 1.6; }
.address a:hover { color: var(--gold-light); }
.footer-title { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--white); position: relative; padding-bottom: 10px; }
.footer-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--gold); border-radius: 1px; }
.contact-list, .footer-menu, .social-links { list-style: none; }
.contact-list li { display: flex; gap: 0.8rem; margin-bottom: 1.2rem; font-size: 0.9rem; }
.contact-list li span { color: rgba(255,255,255,0.5); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-list i { color: var(--gold); margin-top: 4px; font-size: 0.85rem; }
.contact-list a { color: rgba(255, 255, 255, 0.65); text-decoration: none; transition: var(--transition-fast); font-size: 0.9rem; }
.contact-list a:hover { color: var(--gold-light); }
.footer-menu li, .social-links li { margin-bottom: 0.8rem; }
.footer-menu a, .social-links a { color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: var(--transition-fast); display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.footer-menu a:hover, .social-links a:hover { color: var(--gold-light); transform: translateX(5px); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 2rem; text-align: center; color: rgba(255, 255, 255, 0.4); font-size: 0.85rem; }

/* ============================================
   Floating WhatsApp
   ============================================ */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: var(--white); width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35); z-index: 999; transition: var(--transition); animation: whatsappPulse 2.5s ease-in-out infinite; text-decoration: none; }
@keyframes whatsappPulse { 0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35); } 50% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35), 0 0 0 12px rgba(37, 211, 102, 0.12); } }
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); }

/* ============================================
   Scroll Reveal
   ============================================ */
.reveal { opacity: 1 !important; transform: translateY(0) !important; }

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .steps-grid::before { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-image-col { text-align: center; }
    .hero-stats { gap: 2rem; }
}
@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info, .contact-form { padding: 2.5rem; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-text { text-align: center; }
    .cta-text p { margin: 0 auto; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-toggle { display: block; }
    .top-bar-left { flex-direction: column; gap: 0.3rem; }
    .top-bar-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
    .top-bar { padding: 0.4rem 0; }
    header { top: 60px; }
    header.scrolled { top: 0; }
    .hero-slider { min-height: 100vh; }
    .slide-content { padding: 0 1rem; }
    .slide-content h1 { font-size: 1.8rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    .slider-arrow { display: none; }
    .slider-dots { bottom: 100px; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .stat-item strong { font-size: 1.4rem; }
    section { padding: 4rem 0; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { height: 240px; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .testimonial-card { margin: 0; }
}
@media (max-width: 480px) {
    .container { width: 92%; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .features-grid { grid-template-columns: 1fr; }
    .contact-info, .contact-form { padding: 2rem; }
}
