@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ╔══════════════════════════════════════╗
   ║    PREMIUM DESIGN SYSTEM & TOKENS    ║
   ╚══════════════════════════════════════╝ */
:root {
    --primary: #0B2545;
    --primary-light: #134074;
    --primary-dark: #061527;
    --secondary: #00B4D8;
    --secondary-dark: #0077B6;
    --secondary-glow: rgba(0, 180, 216, 0.25);
    --accent: #E0FBFC;
    --dark: #1D2D44;
    --light: #F4F6F9;
    --lighter: #F8FAFC;
    --white: #FFFFFF;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --border-color: #E2E8F0;

    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 3px rgba(11, 37, 69, 0.04);
    --shadow-md: 0 10px 25px rgba(11, 37, 69, 0.07);
    --shadow-lg: 0 25px 50px rgba(11, 37, 69, 0.1);
    --shadow-xl: 0 30px 60px rgba(11, 37, 69, 0.15);
    --shadow-glow: 0 0 30px rgba(0, 180, 216, 0.2);

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --border-radius: 16px;
    --border-radius-sm: 10px;
}

/* ═══ BASE ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}
a { color: var(--secondary-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }

/* ═══ LAYOUT ═══ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-bg { background-color: var(--lighter); }

/* Section Titles */
.section-title { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block;
    color: var(--secondary-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}
.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-dark));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}
.section-title p { color: var(--gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══ BUTTONS ═══ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--white); }
.btn-secondary { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); color: var(--white); }
.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3); color: var(--white); }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.btn-ghost { background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.3); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); color: var(--white); }
.btn-glow { box-shadow: 0 0 20px rgba(0, 180, 216, 0.3); }
.btn-glow:hover { box-shadow: 0 0 40px rgba(0, 180, 216, 0.45); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* ═══ HEADER & NAVIGATION ═══ */
.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    display: flex;
    flex-direction: column;
}
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: relative;
    flex-shrink: 0;
}
.top-bar {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
}
.top-bar-info, .top-bar-social { display: flex; align-items: center; gap: 22px; }
.top-bar-info {
    flex: 1;
    min-width: 0;
    gap: 18px;
}
.top-bar-info a,
.top-bar-info span {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    flex-shrink: 1;
}
.top-bar-social { flex-shrink: 0; }
.top-bar-social a { color: var(--white); opacity: 0.7; font-size: 1rem; }
.top-bar-social a:hover { opacity: 1; color: var(--secondary); transform: scale(1.15); }
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    min-height: 72px;
    position: relative;
    gap: 24px;
}
.site-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: slideDown 0.35s ease-out;
}
.site-header.sticky .top-bar { display: none; }
.site-header.sticky header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}
@keyframes slideDown { from{transform:translateY(-100%)} to{transform:translateY(0)} }
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo a {
    display: flex;
    align-items: center;
    line-height: 0;
}
.logo img {
    height: 44px;
    width: auto;
    display: block;
    max-height: 44px;
    object-fit: contain;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
    margin: 0;
    padding: 0;
}
.nav-menu > li {
    display: flex;
    align-items: center;
}
.nav-link { font-family: var(--font-heading); font-weight: 600; color: var(--primary); position: relative; padding: 5px 0; font-size: 0.95rem; }
.nav-link::after { content:''; position:absolute; width:0; height:2px; background:linear-gradient(90deg,var(--secondary),var(--secondary-dark)); bottom:0; left:0; transition:var(--transition); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--secondary-dark); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.5rem; color: var(--primary); }

/* Homepage: header overlays hero */
body.home-page .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
body.home-page header {
    background: rgba(11, 37, 69, 0.35);
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body.home-page .top-bar {
    background: rgba(11, 37, 69, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 2;
}
body.home-page .main-nav {
    padding: 18px 0;
    min-height: 76px;
}
body.home-page .nav-link { color: rgba(255, 255, 255, 0.92); }
body.home-page .nav-link:hover,
body.home-page .nav-link.active { color: var(--secondary); }
body.home-page .nav-toggle { color: var(--white); }
body.home-page .logo a {
    background: rgba(255, 255, 255, 0.97);
    padding: 8px 14px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
body.home-page .logo img {
    height: 40px;
    max-height: 40px;
}
body.home-page .site-header.sticky {
    background: rgba(11, 37, 69, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}
body.home-page .site-header.sticky header {
    background: transparent;
    box-shadow: none;
}
body.home-page .site-header.sticky .nav-link { color: rgba(255, 255, 255, 0.92); }
body.home-page .site-header.sticky .nav-toggle { color: var(--white); }

@media (max-width: 1200px) {
    .top-bar-hours { display: none; }
    .nav-menu { gap: 20px; }
    .nav-link { font-size: 0.9rem; }
}
@media (max-width: 1050px) {
    .top-bar-info a:nth-child(2) { display: none; }
}

/* ═══ HERO SLIDER ═══ */
.hero-slider { position: relative; height: 85vh; min-height: 600px; overflow: hidden; background: var(--primary-dark); }
.slide { position:absolute; top:0; left:0; width:100%; height:100%; opacity:0; transition:opacity 1.2s ease-in-out; display:flex; align-items:center; z-index:1; }
body.home-page .hero-slider .slide {
    align-items: flex-start;
    padding-top: 130px;
}
body.home-page .hero-slider .slide .container {
    width: 100%;
}
.slide.active { opacity: 1; z-index: 2; }
.slide-img { position:absolute; top:0; left:0; width:100%; height:100%; background-size:cover; background-position:center; }
.slide-img::after {
    content:'';
    position:absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(135deg, rgba(6,21,39,0.92) 0%, rgba(19,64,116,0.55) 50%, rgba(0,180,216,0.1) 100%);
}
.slide-content { position:relative; z-index:3; color:var(--white); max-width:680px; }
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 180, 216, 0.2);
    border: 1px solid rgba(0, 180, 216, 0.3);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
    animation: fadeInUp 0.6s ease-out;
}
.slide-content h1 { color:var(--white); font-size:3.8rem; margin-bottom:20px; line-height:1.08; animation:fadeInUp 0.8s ease-out; }
.slide-content p { font-size:1.3rem; margin-bottom:35px; opacity:0.9; animation:fadeInUp 0.8s ease-out 0.2s both; line-height: 1.6; }
.slide-content .btn-group { animation: fadeInUp 0.8s ease-out 0.4s both; display: flex; gap: 15px; flex-wrap: wrap; }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.slider-controls { position:absolute; bottom:35px; left:50%; transform:translateX(-50%); display:flex; gap:12px; z-index:10; }
.slider-dot { width:14px; height:14px; border-radius:50%; background:rgba(255,255,255,0.35); border:2px solid transparent; cursor:pointer; transition:var(--transition); }
.slider-dot.active { background:var(--secondary); width:40px; border-radius:7px; box-shadow: 0 0 12px rgba(0,180,216,0.4); }

/* Scroll Indicator */
.scroll-indicator { position:absolute; bottom:90px; left:50%; transform:translateX(-50%); z-index:10; }
.scroll-mouse { width:26px; height:42px; border:2px solid rgba(255,255,255,0.4); border-radius:14px; display:flex; justify-content:center; padding-top:8px; }
.scroll-wheel { width:4px; height:10px; background:rgba(255,255,255,0.6); border-radius:2px; animation:scrollAnim 1.8s infinite; }
@keyframes scrollAnim { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(12px)} }

/* ═══ OVERLAP / INTRO SECTION ═══ */
.section.overlap-section {
    padding-top: 160px;
    padding-bottom: 100px;
    margin-top: -50px;
    position: relative;
    z-index: 20;
    background: linear-gradient(180deg, transparent 0%, var(--lighter) 30%, var(--lighter) 70%, var(--white) 100%);
}
.overlap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(11,37,69,0.08) 0%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}
.hero-bottom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; align-items: start; }
.glass-card {
    background: var(--white);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(11, 37, 69, 0.12), 0 1px 3px rgba(11, 37, 69, 0.06);
    padding: 48px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--secondary-dark));
}
.glass-card:hover {
    box-shadow: 0 25px 70px rgba(11, 37, 69, 0.16), 0 2px 6px rgba(11, 37, 69, 0.08);
    transform: translateY(-4px);
}
.intro-card { display: flex; flex-direction: column; justify-content: center; }
.intro-icon-row { display: flex; gap: 20px; margin-bottom: 32px; }
.intro-icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
    background: var(--lighter);
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.intro-icon-item:hover {
    background: linear-gradient(135deg, rgba(0,180,216,0.08), rgba(0,119,182,0.08));
    border-color: var(--secondary);
    transform: translateY(-2px);
}
.intro-icon {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.intro-tag { color: var(--secondary-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.82rem; display: block; margin-bottom: 12px; }
.intro-card h2 { font-size: 2rem; margin-bottom: 18px; line-height: 1.25; }
.intro-card p { color: var(--gray); margin-bottom: 15px; font-size: 1.02rem; line-height: 1.75; }
.intro-actions { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 20px; }

/* ═══ QUOTE FORM ═══ */
.quote-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(11, 37, 69, 0.12), 0 1px 3px rgba(11, 37, 69, 0.06);
    padding: 48px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.quote-card:hover {
    box-shadow: 0 25px 70px rgba(11, 37, 69, 0.16), 0 2px 6px rgba(11, 37, 69, 0.08);
    transform: translateY(-4px);
}
.quote-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-dark), var(--primary));
}
.quote-card::after {
    content: '';
    position: absolute;
    top: 4px; right: -60px; 
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(0,180,216,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.quote-card-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.quote-card-header .quote-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    margin: 0 auto 18px;
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.25);
}
.quote-card h3 { font-size: 1.65rem; margin-bottom: 8px; text-align: center; }
.quote-card > p, .quote-card-header p { color: var(--gray); text-align: center; margin-bottom: 30px; font-size: 0.95rem; }
.form-group { margin-bottom: 20px; position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.88rem; color: var(--primary); }
.form-control {
    width: 100%; padding: 14px 18px;
    border: 1.5px solid var(--border-color); border-radius: 12px;
    font-family: var(--font-body); font-size: 0.95rem;
    transition: var(--transition);
    background: var(--lighter);
    color: var(--dark);
    box-sizing: border-box;
}
.form-control:focus { outline:none; border-color:var(--secondary); background:var(--white); box-shadow:0 0 0 4px var(--secondary-glow); }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-checkbox { display:flex; align-items:flex-start; gap:10px; margin-top:15px; font-size:0.85rem; color:var(--gray); }
.form-checkbox input { margin-top: 3px; accent-color: var(--secondary); }
.captcha-row { display:flex; align-items:center; gap:15px; margin-top:15px; }
.captcha-label { background:linear-gradient(135deg,var(--primary),var(--primary-light)); color:var(--white); padding:10px 16px; border-radius:8px; font-weight:700; font-family:var(--font-heading); font-size:1.1rem; letter-spacing:2px; }

/* ═══ STATS SECTION ═══ */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; position:relative; z-index:2; }
.stat-card {
    text-align: center;
    padding: 35px 20px;
    border-radius: var(--border-radius);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
    transition: var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.stat-icon { font-size: 2rem; color: var(--secondary); margin-bottom: 15px; }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--white); margin-bottom: 8px; font-family: var(--font-heading); }
.stat-title { color: rgba(255,255,255,0.7); font-weight: 500; font-size: 0.95rem; }

/* ═══ SERVICE CARDS ═══ */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.service-card {
    background:var(--white);
    border-radius:var(--border-radius);
    overflow:hidden;
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
    border:1px solid var(--border-color);
    display:flex;
    flex-direction:column;
}
.service-card:hover { transform:translateY(-10px); box-shadow:var(--shadow-lg); border-color:var(--secondary); }
.service-card-img { height:230px; overflow:hidden; position:relative; }
.service-card-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.service-card:hover .service-card-img img { transform:scale(1.1); }
.service-card-overlay {
    position:absolute; top:0; left:0; width:100%; height:100%;
    background:rgba(11,37,69,0.6);
    display:flex; align-items:center; justify-content:center;
    opacity:0; transition:var(--transition);
}
.service-card:hover .service-card-overlay { opacity:1; }
.service-card-content { padding:30px; display:flex; flex-direction:column; flex-grow:1; }
.service-card-content h3 { font-size:1.3rem; margin-bottom:12px; }
.service-card-content p { color:var(--gray); font-size:0.95rem; margin-bottom:20px; flex-grow:1; line-height:1.65; }
.read-more { font-weight:600; color:var(--secondary-dark); display:inline-flex; align-items:center; gap:6px; transition:var(--transition); }
.read-more:hover { color:var(--primary); gap:10px; }

/* ═══ WHY CHOOSE US ═══ */
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }
.why-card {
    text-align:center;
    padding:40px 25px;
    border-radius:var(--border-radius);
    background:var(--white);
    border:1px solid var(--border-color);
    transition:var(--transition);
    position:relative;
    overflow:hidden;
}
.why-card::before {
    content:'';
    position:absolute; bottom:0; left:0; width:100%; height:3px;
    background:linear-gradient(90deg,var(--secondary),var(--secondary-dark));
    transform:scaleX(0); transition:var(--transition); transform-origin:left;
}
.why-card:hover::before { transform:scaleX(1); }
.why-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-md); }
.why-icon {
    width:70px; height:70px; margin:0 auto 20px;
    background:linear-gradient(135deg,var(--accent),rgba(0,180,216,0.1));
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:1.5rem; color:var(--secondary-dark);
    transition:var(--transition);
}
.why-card:hover .why-icon { background:linear-gradient(135deg,var(--secondary),var(--secondary-dark)); color:var(--white); transform:scale(1.1); }
.why-card h3 { font-size:1.15rem; margin-bottom:12px; }
.why-card p { color:var(--gray); font-size:0.92rem; line-height:1.65; }

/* ═══ REVIEWS ═══ */
.reviews-wrapper { position:relative; overflow:hidden; padding:10px 0; }
.reviews-carousel { display:flex; gap:25px; transition:transform 0.5s ease; }
.review-item {
    min-width:calc(33.333% - 17px);
    background:var(--white);
    border-radius:var(--border-radius);
    padding:35px;
    box-shadow:var(--shadow-sm);
    border:1px solid var(--border-color);
    position:relative;
    transition:var(--transition);
}
.review-item:hover { box-shadow:var(--shadow-md); transform:translateY(-5px); }
.review-quote-icon { color:var(--accent); font-size:2rem; margin-bottom:10px; opacity:0.8; }
.review-stars { color:#FFC107; margin-bottom:15px; font-size:1.1rem; display:flex; gap:3px; }
.review-text { font-style:italic; color:var(--dark); margin-bottom:25px; font-size:0.95rem; line-height:1.7; }
.review-meta { display:flex; justify-content:space-between; align-items:center; border-top:1px solid var(--border-color); padding-top:18px; }
.review-author-info { display:flex; align-items:center; gap:12px; }
.review-avatar {
    width:42px; height:42px;
    background:linear-gradient(135deg,var(--primary),var(--primary-light));
    color:var(--white);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-weight:700; font-size:1rem; font-family:var(--font-heading);
}
.review-author { font-weight:700; font-size:0.95rem; color:var(--primary); display:block; }
.review-date { font-size:0.8rem; color:var(--gray-light); }
.review-google-icon { font-size:1.5rem; color:#4285F4; }

/* ═══ REGIONS ═══ */
.regions-grid { display:flex; flex-wrap:wrap; justify-content:center; gap:15px; }
.region-badge {
    background:var(--white);
    border:2px solid var(--border-color);
    color:var(--primary);
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    font-family:var(--font-heading);
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
    display:inline-flex; align-items:center; gap:10px;
}
.region-badge i { color:var(--secondary); }
.region-badge:hover {
    background:linear-gradient(135deg,var(--secondary),var(--secondary-dark));
    border-color:var(--secondary);
    color:var(--white);
    transform:translateY(-3px);
    box-shadow:0 8px 25px rgba(0,180,216,0.2);
}
.region-badge:hover i { color:var(--white); }

/* ═══ FAQ ═══ */
.faq-list { max-width:800px; margin:0 auto; }
.faq-item {
    background:var(--white);
    border-radius:var(--border-radius-sm);
    margin-bottom:15px;
    border:1px solid var(--border-color);
    overflow:hidden;
    transition:var(--transition);
}
.faq-item:hover { box-shadow:var(--shadow-sm); }
.faq-question {
    padding:22px 25px;
    font-weight:600;
    color:var(--primary);
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    user-select:none;
    transition:var(--transition);
    font-size:1.02rem;
}
.faq-question:hover { background:var(--lighter); }
.faq-question::after { content:'+'; font-size:1.6rem; font-weight:400; color:var(--secondary-dark); transition:var(--transition); }
.faq-item.active .faq-question { background:var(--lighter); }
.faq-item.active .faq-question::after { content:'−'; color:var(--primary); }
.faq-answer { padding:0 25px; max-height:0; overflow:hidden; transition:max-height 0.35s ease-out,padding 0.35s ease-out; color:var(--gray); font-size:0.95rem; line-height:1.7; }
.faq-item.active .faq-answer { padding:0 25px 25px; max-height:500px; }

/* ═══ CTA BANNER ═══ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--secondary-dark) 100%);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 60%);
    animation: ctaFloat 8s infinite ease-in-out;
}
@keyframes ctaFloat { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-30px)} }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 18px; }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 600px; margin: 0 auto 35px; }
.cta-actions { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ═══ BREADCRUMB ═══ */
.breadcrumb-container { background:var(--lighter); padding:15px 0; border-bottom:1px solid var(--border-color); }
.breadcrumb { display:flex; list-style:none; gap:10px; font-size:0.9rem; }
.breadcrumb-item + .breadcrumb-item::before { content:'/'; color:var(--gray-light); margin-right:10px; }
.breadcrumb-item a { color:var(--gray); }
.breadcrumb-item a:hover { color:var(--secondary); }
.breadcrumb-item.active { color:var(--primary); font-weight:600; }

/* ═══ SUBPAGE HERO ═══ */
.page-hero { background:linear-gradient(135deg,var(--primary) 0%,var(--primary-light) 100%); color:var(--white); padding:80px 0; text-align:center; }
.page-hero h1 { color:var(--white); font-size:2.75rem; margin-bottom:12px; }

/* ═══ PAGE LAYOUT ═══ */
.page-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 40px;
    padding: 60px 0;
    width: 100%;
}
.article-content { background:var(--white); }
.article-content h3 { margin:30px 0 15px; font-size:1.5rem; }
.article-content p { margin-bottom:20px; color:var(--dark); font-size:1.05rem; line-height:1.8; }
.article-content ul { margin:0 0 24px 1.25rem; color:var(--dark); line-height:1.8; }
.article-content ul li { margin-bottom:10px; }
.article-content strong { color:var(--primary); }
.service-body { max-width:100%; }
.article-img { border-radius:var(--border-radius); overflow:hidden; margin-bottom:30px; box-shadow:var(--shadow-sm); }
.sidebar-widget { background:var(--lighter); border-radius:var(--border-radius); padding:30px; margin-bottom:30px; border:1px solid var(--border-color); }
.sidebar-widget h4 { font-size:1.25rem; margin-bottom:20px; border-bottom:2px solid var(--secondary); padding-bottom:10px; }
.sidebar-links { list-style:none; }
.sidebar-links li { margin-bottom:10px; }
.sidebar-links a { display:block; padding:10px 14px; background:var(--white); border-radius:8px; border:1px solid var(--border-color); color:var(--primary); font-weight:500; transition:var(--transition); }
.sidebar-links a:hover, .sidebar-links li.active a { background:var(--primary); color:var(--white); border-color:var(--primary); }

/* ═══ BLOG ═══ */
.blog-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:30px; }
.blog-card { background:var(--white); border-radius:var(--border-radius); border:1px solid var(--border-color); overflow:hidden; box-shadow:var(--shadow-sm); transition:var(--transition); }
.blog-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.blog-card-img { height:200px; overflow:hidden; }
.blog-card-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform:scale(1.06); }
.blog-card-content { padding:25px; }
.blog-card-date { font-size:0.8rem; color:var(--gray-light); margin-bottom:10px; }
.blog-card-content h3 { font-size:1.25rem; margin-bottom:12px; }
.blog-card-content p { color:var(--gray); font-size:0.9rem; margin-bottom:15px; }

/* ═══ FOOTER ═══ */
footer { background:linear-gradient(180deg,var(--primary) 0%,var(--primary-dark) 100%); color:var(--white); padding:80px 0 25px; font-size:0.95rem; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.footer-widget h3 { color:var(--white); font-size:1.25rem; margin-bottom:25px; position:relative; padding-bottom:12px; }
.footer-widget h3::after { content:''; position:absolute; width:35px; height:3px; background:linear-gradient(90deg,var(--secondary),var(--secondary-dark)); bottom:0; left:0; border-radius:2px; }
.footer-about p { opacity:0.8; margin-bottom:20px; line-height:1.7; }
.footer-links { list-style:none; }
.footer-links li { margin-bottom:10px; }
.footer-links a { color:var(--white); opacity:0.7; display:flex; align-items:center; gap:8px; transition:var(--transition); }
.footer-links a:hover { opacity:1; color:var(--secondary); transform:translateX(5px); }
.footer-contact-item { display:flex; align-items:flex-start; gap:12px; margin-bottom:15px; }
.footer-contact-item i { color:var(--secondary); margin-top:4px; flex-shrink:0; }
.footer-contact-item span, .footer-contact-item a { opacity:0.8; color:var(--white); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding-top:25px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; font-size:0.85rem; opacity:0.7; }
.footer-legal-links { display:flex; gap:20px; }
.footer-legal-links a { color:var(--white); }
.footer-legal-links a:hover { color:var(--secondary); }

/* ═══ FLOATING CTA & COOKIE ═══ */
.floating-cta { position:fixed; bottom:30px; display:flex; flex-direction:column; gap:15px; z-index:999; }
.floating-whatsapp { left:30px; }
.floating-phone { right:30px; }
.cta-btn {
    width:60px; height:60px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    color:var(--white);
    box-shadow:0 6px 20px rgba(0,0,0,0.2);
    cursor:pointer; position:relative;
    transition: var(--transition);
}
.cta-btn:hover { transform: scale(1.1); }
.cta-btn-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.cta-btn-phone { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); }
.cta-btn::before { content:''; position:absolute; top:0; left:0; width:100%; height:100%; border-radius:50%; z-index:-1; animation:ctaPulse 2s infinite; }
.cta-btn-whatsapp::before { background:rgba(37,211,102,0.3); }
.cta-btn-phone::before { background:rgba(0,180,216,0.3); }
@keyframes ctaPulse { 0%{transform:scale(1);opacity:0.7} 100%{transform:scale(1.7);opacity:0} }

.cookie-popup { position:fixed; bottom:0; left:0; right:0; background:var(--primary-dark); color:var(--white); padding:20px 0; box-shadow:0 -5px 30px rgba(0,0,0,0.2); z-index:10000; display:none; animation:slideUp 0.4s ease-out; }
.cookie-popup.active { display:block; }
@keyframes slideUp { from{transform:translateY(100%)} to{transform:translateY(0)} }
.cookie-container { display:flex; justify-content:space-between; align-items:center; gap:30px; }
.cookie-text { font-size:0.9rem; opacity:0.9; }
.cookie-btn-group { display:flex; gap:15px; flex-shrink:0; }

/* ═══ ALERT ═══ */
.alert { padding:15px 20px; border-radius:var(--border-radius-sm); margin-bottom:20px; font-weight:500; font-size:0.95rem; }
.alert-success { background:#E6F8F6; color:#167a70; border:1px solid #c9ede8; }
.alert-danger { background:#FFEBEB; color:#b82b2f; border:1px solid #ffd4d4; }

/* ═══ RESPONSIVE ═══ */
@media (max-width:992px) {
    .hero-bottom-grid { grid-template-columns:1fr; }
    .hero-slider { height:auto; min-height:500px; }
    .slide-content h1 { font-size:2.8rem; }
    .services-grid { grid-template-columns:repeat(2,1fr); }
    .why-grid { grid-template-columns:repeat(2,1fr); }
    .review-item { min-width:calc(50% - 13px); }
    .footer-grid { grid-template-columns:repeat(2,1fr); }
    .page-layout { grid-template-columns:1fr; }
    .section.overlap-section { margin-top:-25px; padding-top:100px; padding-bottom:70px; }
    .intro-icon-row { gap:12px; }
    .intro-icon-item { padding:8px 14px; font-size:0.82rem; }
}
@media (max-width:768px) {
    .top-bar { display:none; }
    .nav-toggle { display:block; }
    .nav-menu { display:none; flex-direction:column; position:absolute; top:100%; left:0; right:0; background:var(--white); box-shadow:var(--shadow-lg); padding:20px; gap:12px; z-index:999; border-radius:0 0 var(--border-radius) var(--border-radius); }
    .nav-menu.active { display:flex; }
    body.home-page .main-nav {
        min-height: 64px;
        padding: 14px 0;
    }
    body.home-page .logo img {
        height: 36px;
        max-height: 36px;
    }
    body.home-page .hero-slider .slide {
        padding-top: 88px;
    }
    body.home-page header {
        background: rgba(11, 37, 69, 0.88);
        backdrop-filter: blur(8px);
    }
    body.home-page .site-header.sticky header {
        background: transparent;
    }
    body.home-page .nav-menu.active .nav-link {
        color: var(--primary);
    }
    body.home-page .nav-menu.active .nav-link:hover,
    body.home-page .nav-menu.active .nav-link.active {
        color: var(--secondary-dark);
    }
    .stats-grid { grid-template-columns:repeat(2,1fr); gap:15px; }
    .services-grid { grid-template-columns:1fr; }
    .why-grid { grid-template-columns:1fr; }
    .blog-grid { grid-template-columns:1fr; }
    .cookie-container { flex-direction:column; text-align:center; gap:15px; }
    .section { padding:70px 0; }
    .section-title h2 { font-size:2rem; }
    .cta-content h2 { font-size:2rem; }
}
@media (max-width:576px) {
    .hero-slider { min-height:450px; }
    .stats-grid { grid-template-columns:1fr; }
    .footer-grid { grid-template-columns:1fr; }
    .review-item { min-width:100%; }
    .form-row { grid-template-columns:1fr; gap:0; }
    .slide-content h1 { font-size:2rem; }
    .slide-content { text-align:center; }
    .slide-content .btn-group { justify-content:center; }
    .slide-badge { font-size:0.75rem; }
    .floating-cta { bottom:20px; }
    .floating-whatsapp { left:15px; }
    .floating-phone { right:15px; }
    .glass-card { padding:30px 20px; }
    .quote-card { padding:30px 20px; }
    .intro-icon-row { flex-wrap:wrap; gap:12px; }
}
