/* ========================================
   Mutuelle des Leaders Chrétiens - Styles
   Version Pro
   ======================================== */

/* -- Variables -- */
:root {
    --gold: #C5A028;
    --gold-dark: #A8871F;
    --gold-light: #D4B94E;
    --gold-pale: #faf6eb;
    --red: #E63946;
    --orange: #F77F00;
    --green: #2D9B4E;
    --blue: #1E88E5;
    --purple: #7B1FA2;
    --dark: #0f1729;
    --dark-light: #1a2340;
    --dark-medium: #243052;
    --gray-900: #212529;
    --gray-700: #495057;
    --gray: #6c757d;
    --gray-400: #adb5bd;
    --gray-200: #e9ecef;
    --gray-light: #f8f9fa;
    --white: #ffffff;
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 30px rgba(197, 160, 40, 0.25);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 50px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* -- Reset & Base -- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

html, body {
    overscroll-behavior-y: none;
}

body {
    font-family: var(--font);
    color: var(--gray-900);
    line-height: 1.75;
    overflow-x: hidden;
    background: var(--white);
    min-height: 100vh;
    min-height: 100dvh;
    -webkit-tap-highlight-color: transparent;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* PWA standalone mode adjustments */
@media (display-mode: standalone), (display-mode: fullscreen) {
    body { user-select: none; -webkit-user-select: none; }
    body input, body textarea, body [contenteditable] {
        user-select: text; -webkit-user-select: text;
    }
    .hide-in-pwa { display: none !important; }
    /* Nav bar gets extra top padding to clear the status bar */
    .navbar { padding-top: max(env(safe-area-inset-top), 0px); }
}

:focus:not(:focus-visible) { outline: none; }

::selection {
    background: var(--gold);
    color: var(--white);
}

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

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-inner img {
    width: 80px;
    margin: 0 auto 20px;
    animation: pulse-loader 1.2s ease-in-out infinite;
}

.preloader-bar {
    width: 120px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
    animation: loading-bar 1s ease-in-out infinite;
}

@keyframes pulse-loader {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes loading-bar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ========================================
   NAVBAR - Ultra Premium
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 14px 0;
}

/* Floating glass bar on hero */
.navbar .nav-inner {
    background: rgba(15, 23, 41, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 0 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled: full-width white bar */
.navbar.scrolled {
    padding: 0;
}

.navbar.scrolled .nav-inner {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    border-radius: 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    padding: 0 24px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.navbar.scrolled .nav-container {
    height: 62px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.nav-logo-text small {
    font-size: 0.55rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

.navbar.scrolled .nav-logo {
    color: var(--dark);
}

.nav-logo img {
    height: 42px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 40px;
}

/* Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Links */
.nav-link {
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link i {
    font-size: 0.72rem;
    opacity: 0;
    margin-left: -2px;
    transition: var(--transition);
}

.nav-link:hover i,
.nav-link.active i {
    opacity: 0.8;
}

.navbar.scrolled .nav-link {
    color: var(--gray-700);
}

/* Hover */
.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.navbar.scrolled .nav-link:hover {
    color: var(--gold-dark);
    background: var(--gold-pale);
}

/* Active */
.nav-link.active {
    color: var(--gold-light) !important;
    font-weight: 600;
    background: rgba(197,160,40,0.12);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2.5px;
    background: var(--gold);
    border-radius: 3px;
}

.navbar.scrolled .nav-link.active {
    color: var(--gold-dark) !important;
    background: var(--gold-pale);
}

/* Separator */
.nav-separator {
    width: 1px;
    height: 22px;
    background: rgba(255,255,255,0.12);
    margin: 0 8px;
    flex-shrink: 0;
}

.navbar.scrolled .nav-separator {
    background: var(--gray-200);
}

/* CTA */
.nav-cta {
    margin-left: 4px;
    padding: 9px 22px;
    background: var(--gold);
    color: var(--white) !important;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(197,160,40,0.25);
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-cta:hover::before {
    opacity: 1;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197,160,40,0.35);
}

.nav-cta i {
    font-size: 0.75rem;
    opacity: 1 !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: var(--transition);
}

.nav-toggle:hover {
    background: rgba(255,255,255,0.08);
}

.navbar.scrolled .nav-toggle:hover {
    background: var(--gold-pale);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav-toggle span:nth-child(1) { width: 20px; }
.nav-toggle span:nth-child(2) { width: 14px; margin-left: auto; }
.nav-toggle span:nth-child(3) { width: 20px; }

.navbar.scrolled .nav-toggle span {
    background: var(--dark);
}

/* Desktop: hide mobile-only elements */
.nav-menu-header,
.nav-menu-footer,
.nav-overlay {
    display: none;
}

.nav-cta-desktop {
    display: list-item;
}

/* Language Switcher */
.nav-lang-switcher {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 0 6px;
    padding: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
}

.navbar.scrolled .nav-lang-switcher {
    background: var(--gray-light);
    border-color: var(--gray-200);
}

.lang-btn {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
    text-decoration: none;
}

.navbar.scrolled .lang-btn {
    color: var(--gray);
}

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

.navbar.scrolled .lang-btn:hover {
    color: var(--gold-dark);
    background: var(--gold-pale);
}

.lang-btn.active {
    background: var(--gold);
    color: var(--white) !important;
    box-shadow: 0 2px 6px rgba(197,160,40,0.3);
}

.navbar.scrolled .lang-btn.active {
    background: var(--gold);
    color: var(--white) !important;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 70% 20%, rgba(197, 160, 40, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(30, 136, 229, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(123, 31, 162, 0.06) 0%, transparent 40%);
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(197, 160, 40, 0.15);
    border: 1px solid rgba(197, 160, 40, 0.25);
    border-radius: var(--radius-full);
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-badge i {
    font-size: 0.7rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-trust-avatars {
    display: flex;
}

.hero-trust-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid var(--dark);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
}

.hero-trust-avatar:first-child { margin-left: 0; background: var(--gold); }
.hero-trust-avatar:nth-child(2) { background: var(--blue); }
.hero-trust-avatar:nth-child(3) { background: var(--green); }
.hero-trust-avatar:nth-child(4) { background: var(--purple); }

.hero-trust-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.hero-trust-text strong {
    color: rgba(255,255,255,0.85);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 40, 0.15);
    animation: rotate-slow 20s linear infinite;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: -45px;
    border-radius: 50%;
    border: 1px dashed rgba(197, 160, 40, 0.08);
    animation: rotate-slow 30s linear infinite reverse;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-image img {
    max-width: 320px;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--white);
    animation: float-card 5s ease-in-out infinite;
}

.hero-float-card i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.hero-float-card.card-1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}

.hero-float-card.card-2 {
    bottom: 15%;
    left: -20px;
    animation-delay: 2s;
}

.hero-float-card.card-1 i { background: rgba(197,160,40,0.2); color: var(--gold-light); }
.hero-float-card.card-2 i { background: rgba(45,155,78,0.2); color: #6fcf97; }

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.01em;
    font-family: var(--font);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(197, 160, 40, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

.btn-dark:hover {
    background: var(--dark-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn i {
    font-size: 0.9em;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 110px 0;
}

.section-light {
    background: var(--gray-light);
}

.section-cream {
    background: var(--gold-pale);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--gold-pale);
    color: var(--gold-dark);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.section-dark .section-badge {
    background: rgba(197,160,40,0.15);
    color: var(--gold-light);
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-header h2 span {
    color: var(--gold);
}

.section-header p {
    color: var(--gray);
    font-size: 1.08rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.6);
}

/* ========================================
   STATS
   ======================================== */
.stats-section {
    background: var(--white);
    padding: 0;
    position: relative;
    z-index: 5;
}

.stats-container {
    max-width: 1000px;
    margin: -50px auto 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 50px 40px;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 0 15px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--gray-200);
}

.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 4px;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-item p {
    color: var(--gray);
    font-weight: 500;
    font-size: 0.92rem;
}

/* ========================================
   VALUES / FEATURES CARDS
   ======================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    padding: 38px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card .icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition);
}

.value-card:hover .icon {
    transform: scale(1.08);
}

.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.value-card p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.7;
}

.icon-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.icon-red { background: linear-gradient(135deg, #ff6b6b, var(--red)); }
.icon-blue { background: linear-gradient(135deg, #64b5f6, var(--blue)); }
.icon-green { background: linear-gradient(135deg, #66bb6a, var(--green)); }
.icon-orange { background: linear-gradient(135deg, #ffb74d, var(--orange)); }
.icon-purple { background: linear-gradient(135deg, #ba68c8, var(--purple)); }

/* ========================================
   SERVICES
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-card-header {
    padding: 32px 30px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.service-card-header::after {
    content: '';
    position: absolute;
    right: -20px;
    top: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.service-card-header i {
    font-size: 2.2rem;
    position: relative;
    z-index: 1;
}

.service-card-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.service-card-body {
    padding: 30px;
    flex: 1;
}

.service-card-body p {
    color: var(--gray);
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.service-card-body ul li {
    padding: 8px 0;
    color: var(--gray-900);
    font-size: 0.93rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    font-size: 0.8rem;
    width: 22px;
    height: 22px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bg-gradient-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); }
.bg-gradient-blue { background: linear-gradient(135deg, #42a5f5, #1565C0); }
.bg-gradient-green { background: linear-gradient(135deg, #66bb6a, #1B7A35); }
.bg-gradient-purple { background: linear-gradient(135deg, #ab47bc, #5C1580); }

/* ========================================
   ABOUT
   ======================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 22px;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.about-text p {
    color: var(--gray-700);
    margin-bottom: 16px;
    font-size: 1.02rem;
    line-height: 1.8;
}

.about-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    padding: 30px;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed var(--gold-light);
    opacity: 0.3;
}

.about-image img {
    max-width: 300px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.12));
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.mv-card {
    background: var(--white);
    padding: 38px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 5px solid var(--gold);
    transition: var(--transition);
}

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

.mv-card h4 {
    font-size: 1.2rem;
    margin-bottom: 14px;
    color: var(--gold-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-card p {
    color: var(--gray-700);
    line-height: 1.8;
}

/* ========================================
   ADHESION
   ======================================== */
.adhesion-content {
    max-width: 960px;
    margin: 0 auto;
}

.adhesion-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
    position: relative;
}

.adhesion-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--gray-200);
    z-index: 0;
}

.step-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 22px;
    box-shadow: 0 4px 15px rgba(197,160,40,0.25);
}

.step-card h3 {
    font-size: 1.12rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-card p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.7;
}

.adhesion-benefits {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.adhesion-benefits h3 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 35px;
    color: var(--dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.benefit-item:hover {
    background: var(--gold-pale);
    border-color: rgba(197,160,40,0.15);
}

.benefit-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.benefit-item p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 35px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.testimonial-author-info h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.testimonial-author-info span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-item:hover {
    background: var(--gold-pale);
    border-color: rgba(197,160,40,0.15);
}

.contact-item .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 0.98rem;
    color: var(--gray-900);
    font-weight: 500;
}

/* ========================================
   FORMS (Pro)
   ======================================== */
.contact-form-wrapper {
    background: var(--white);
    padding: 48px 44px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--blue), var(--purple));
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header .form-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold-pale), rgba(197,160,40,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--gold);
}

.form-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--gray);
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.88rem;
    letter-spacing: 0.01em;
}

.form-group label i {
    font-size: 0.82rem;
    color: var(--gold);
    width: 16px;
    text-align: center;
}

.form-group label .required-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    display: inline-block;
    margin-left: 2px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eef0f4;
    border-radius: 12px;
    font-family: var(--font);
    font-size: 0.93rem;
    transition: var(--transition);
    background: #f9fafb;
    color: var(--gray-900);
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8.825L.35 3.175l.7-.7L6 7.425l4.95-4.95.7.7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: #d4d8e0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(197, 160, 40, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b7c3;
    font-weight: 400;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.7;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: var(--red);
    background: #fff5f5;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-divider {
    border: none;
    height: 1px;
    background: #eef0f4;
    margin: 8px 0 28px;
}

.form-submit-area {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.form-submit-area .btn {
    min-width: 280px;
    justify-content: center;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 15px rgba(197, 160, 40, 0.25);
}

.form-submit-area .btn:hover {
    box-shadow: 0 8px 25px rgba(197, 160, 40, 0.35);
    transform: translateY(-2px);
}

.form-footer-note {
    text-align: center;
    margin-top: 18px;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.form-footer-note i {
    margin-right: 4px;
}

/* ========================================
   PAGE HEADER (inner pages)
   ======================================== */
.page-header {
    background: var(--dark);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(197, 160, 40, 0.1) 0%, transparent 60%),
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 100% 100%, 60px 60px, 60px 60px;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header .section-badge {
    margin-bottom: 16px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.page-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: var(--dark);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(197, 160, 40, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(30, 136, 229, 0.06) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.6);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35px;
    line-height: 1.8;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 90px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 65px;
    margin-bottom: 18px;
}

.footer-col > p {
    font-size: 0.92rem;
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: -0.01em;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2.5px;
    background: var(--gold);
    border-radius: 2px;
}

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

.footer-col ul li a {
    font-size: 0.92rem;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
}

.footer-contact i {
    color: var(--gold);
    width: 16px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--gold-light);
}

/* ========================================
   GALLERY - Premium
   ======================================== */
.gallery-filter {
    padding: 11px 28px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    letter-spacing: 0.01em;
}

.gallery-filter i { margin-right: 4px; }

.gallery-filter:hover {
    border-color: var(--gold-light);
    color: var(--gold);
    background: var(--gold-pale);
}

.gallery-filter.active {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--white);
    box-shadow: 0 4px 12px rgba(197,160,40,0.25);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gallery-grid.masonry {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 10px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.gallery-link {
    display: block;
    position: relative;
    overflow: hidden;
    height: 280px;
}

.gallery-link img,
.gallery-link video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.gallery-item:hover .gallery-link img,
.gallery-item:hover .gallery-link video {
    transform: scale(1.08);
    filter: brightness(0.85);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 23, 41, 0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay .overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    transition: all 0.35s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.gallery-item:hover .overlay-icon {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-overlay .overlay-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.gallery-type-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 2;
    backdrop-filter: blur(8px);
}

.gallery-type-badge.badge-image {
    background: rgba(30,136,229,0.85);
    color: #fff;
}

.gallery-type-badge.badge-video {
    background: rgba(230,57,70,0.85);
    color: #fff;
}

.gallery-caption {
    padding: 20px 22px;
    position: relative;
}

.gallery-caption::before {
    content: '';
    position: absolute;
    top: 0;
    left: 22px;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
}

.gallery-caption h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
    margin-top: 6px;
    letter-spacing: -0.01em;
}

.gallery-caption p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-caption .media-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 10px;
}

/* Gallery page hero counter */
.gallery-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-full);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-top: 16px;
}

.gallery-count strong {
    color: var(--gold-light);
}

/* Inline media section (used on other pages) */
.media-section-title {
    position: relative;
    display: inline-block;
}

.media-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .gallery-link { height: 220px; }
    .gallery-caption { padding: 16px 18px; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-link { height: 260px; }
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: whatsapp-ring 2s ease-in-out infinite;
}

@keyframes whatsapp-ring {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0; }
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 44px;
    height: 44px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* ========================================
   ALERT MESSAGES
   ======================================== */
.alert {
    padding: 16px 22px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 0.93rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert i {
    margin-top: 2px;
    flex-shrink: 0;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ========================================
   RESPONSIVE - Full Professional
   ======================================== */

/* --- Large tablets / Small desktops --- */
@media (max-width: 1024px) {
    .container { padding: 0 20px; }
    .hero-text h1 { font-size: 2.8rem; }
    .hero-content { gap: 50px; }
    .section { padding: 90px 0; }
    .values-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 35px; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .gallery-grid { gap: 22px; }
    .about-content { gap: 50px; }
}

/* --- Tablets --- */
@media (max-width: 768px) {
    .container { padding: 0 16px; }

    /* Nav - Mobile Premium */
    .navbar { padding: 8px 0; }
    .navbar .nav-inner {
        background: rgba(15,23,41,0.6);
        border-radius: 12px;
        padding: 0 4px;
        border: 1px solid rgba(255,255,255,0.06);
    }
    .navbar.scrolled .nav-inner {
        border-radius: 0;
        padding: 0 16px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        padding: 0;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        gap: 0;
    }

    .nav-menu.active { right: 0; }

    .nav-menu-header {
        display: flex !important;
        align-items: center;
        gap: 12px;
        padding: 24px 24px 20px;
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-menu-header img {
        height: 40px;
    }

    .nav-menu-header span {
        font-weight: 700;
        font-size: 1rem;
        color: var(--dark);
    }

    .nav-menu-links {
        display: flex !important;
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        flex: 1;
    }

    .nav-link {
        color: var(--gray-700) !important;
        padding: 14px 18px;
        width: 100%;
        border-radius: 12px;
        font-size: 0.92rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .nav-link i {
        width: 20px;
        text-align: center;
        opacity: 0.6;
        font-size: 0.85rem;
    }

    .nav-link::after { display: none !important; }

    .nav-link:hover {
        background: var(--gray-light) !important;
        color: var(--gray-900) !important;
    }

    .nav-link.active {
        background: linear-gradient(135deg, var(--gold-pale), rgba(197,160,40,0.12)) !important;
        color: var(--gold-dark) !important;
        font-weight: 600;
    }

    .nav-link.active i { opacity: 1; color: var(--gold); }

    .nav-separator { display: none; }

    .nav-menu-footer {
        display: block !important;
        padding: 16px;
        border-top: 1px solid var(--gray-200);
    }

    .nav-cta {
        margin: 0;
        text-align: center;
        justify-content: center;
        width: 100%;
        padding: 14px 24px;
        font-size: 0.92rem;
    }

    .nav-toggle { display: flex; }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        width: 22px;
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(10px);
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        width: 22px;
    }

    /* Overlay */
    .nav-overlay {
        display: block !important;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-cta-desktop { display: none !important; }
    .nav-separator { display: none !important; }

    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }

    .hero-text h1 { font-size: 2.1rem; }
    .hero-text p { margin: 0 auto 30px; font-size: 1rem; }
    .hero-buttons { justify-content: center; }
    .hero-badge { margin: 0 auto 20px; font-size: 0.78rem; }
    .hero-trust { justify-content: center; text-align: center; }
    .hero-image-wrapper { width: 250px; height: 250px; }
    .hero-image img { max-width: 200px; }
    .hero-float-card { display: none; }

    /* Stats */
    .stats-container { margin-top: -25px; padding: 30px 20px; border-radius: 14px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item:not(:last-child)::after { display: none; }
    .stat-item h3 { font-size: 2rem; }
    .stat-item p { font-size: 0.82rem; }

    /* Sections */
    .section { padding: 70px 0; }
    .section-header { margin-bottom: 45px; }
    .section-header h2 { font-size: 1.85rem; }
    .section-header p { font-size: 0.95rem; }
    .section-badge { font-size: 0.72rem; padding: 5px 12px; }

    /* Grids → single column */
    .values-grid { grid-template-columns: 1fr; gap: 16px; }
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .about-content { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .about-content .about-image { order: -1; }
    .about-image img { max-width: 220px; }
    .about-text h3 { font-size: 1.5rem; }
    .mission-vision-grid { grid-template-columns: 1fr; gap: 16px; }
    .mv-card { padding: 28px 22px; }

    /* Adhesion */
    .adhesion-steps { grid-template-columns: 1fr; gap: 16px; }
    .adhesion-steps::before { display: none; }
    .step-card { padding: 30px 22px; }
    .step-number { width: 50px; height: 50px; font-size: 1.2rem; }
    .benefits-list { grid-template-columns: 1fr; gap: 10px; }
    .benefit-item { padding: 14px; }
    .adhesion-benefits { padding: 28px 20px; }
    .adhesion-benefits h3 { font-size: 1.3rem; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-form-wrapper { padding: 28px 20px; border-radius: 16px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-header h3 { font-size: 1.15rem; }
    .form-header .form-icon { width: 50px; height: 50px; font-size: 1.2rem; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .gallery-link { height: 200px; }
    .gallery-caption { padding: 14px 16px; }
    .gallery-caption h4 { font-size: 0.9rem; }
    .gallery-type-badge { font-size: 0.62rem; padding: 4px 9px; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonial-card { padding: 28px; }

    /* CTA */
    .cta-section { padding: 70px 0; }
    .cta-section h2 { font-size: 1.7rem; }
    .cta-section p { font-size: 0.95rem; }

    /* Page Header */
    .page-header { padding: 120px 0 50px; }
    .page-header h1 { font-size: 2rem; }
    .page-header p { font-size: 0.95rem; }

    /* Footer */
    .footer { padding: 60px 0 25px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-logo { height: 55px; }
    .footer-col h4 { margin-bottom: 14px; font-size: 0.95rem; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

    /* Floating buttons */
    .whatsapp-float { width: 52px; height: 52px; font-size: 1.5rem; bottom: 20px; right: 16px; }
    .back-to-top { width: 40px; height: 40px; font-size: 0.9rem; bottom: 20px; left: 16px; border-radius: 10px; }
}

/* --- Small phones --- */
@media (max-width: 480px) {
    .container { padding: 0 14px; }

    /* Hero */
    .hero { padding-top: 70px; }
    .hero-text h1 { font-size: 1.7rem; }
    .hero-text p { font-size: 0.92rem; margin-bottom: 25px; }
    .hero-badge { font-size: 0.72rem; padding: 6px 14px; }
    .hero-buttons { gap: 10px; }
    .hero-trust-text { font-size: 0.8rem; }
    .hero-image-wrapper { width: 200px; height: 200px; }
    .hero-image img { max-width: 160px; }

    /* Buttons */
    .btn { padding: 12px 22px; font-size: 0.88rem; }
    .form-submit-area .btn { min-width: auto; width: 100%; }

    /* Sections */
    .section { padding: 55px 0; }
    .section-header { margin-bottom: 35px; }
    .section-header h2 { font-size: 1.5rem; }
    .section-header p { font-size: 0.88rem; }

    /* Stats */
    .stats-container { padding: 24px 16px; margin-top: -20px; }
    .stat-item h3 { font-size: 1.7rem; }
    .stat-item p { font-size: 0.78rem; }

    /* Cards */
    .value-card { padding: 28px 20px; }
    .value-card .icon { width: 54px; height: 54px; font-size: 1.3rem; border-radius: 14px; }
    .value-card h3 { font-size: 1.05rem; }
    .value-card p { font-size: 0.85rem; }

    .service-card-header { padding: 24px 20px; }
    .service-card-header i { font-size: 1.8rem; }
    .service-card-header h3 { font-size: 1.15rem; }
    .service-card-body { padding: 22px 20px; }
    .service-card-body ul li { font-size: 0.88rem; }

    /* Adhesion */
    .step-card { padding: 24px 18px; }

    /* Forms */
    .contact-form-wrapper { padding: 22px 16px; }
    .form-header { margin-bottom: 25px; }
    .form-header .form-icon { width: 46px; height: 46px; font-size: 1.1rem; }
    .form-header h3 { font-size: 1.05rem; }
    .form-group { margin-bottom: 18px; }
    .form-group label { font-size: 0.82rem; }
    .form-group input,
    .form-group textarea,
    .form-group select { padding: 12px 14px; font-size: 0.88rem; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr; gap: 18px; }
    .gallery-link { height: 240px; }
    .gallery-overlay .overlay-icon { width: 48px; height: 48px; font-size: 1.1rem; }

    /* Page Header */
    .page-header { padding: 105px 0 40px; }
    .page-header h1 { font-size: 1.7rem; }
    .page-header p { font-size: 0.88rem; }
    .gallery-count { font-size: 0.78rem; padding: 6px 14px; }

    /* CTA */
    .cta-section { padding: 55px 0; }
    .cta-section h2 { font-size: 1.5rem; }
    .cta-section p { font-size: 0.88rem; }

    /* Testimonials */
    .testimonial-card { padding: 22px; }
    .testimonial-card p { font-size: 0.88rem; }
    .testimonial-author-info h5 { font-size: 0.88rem; }

    /* About */
    .about-text h3 { font-size: 1.3rem; }
    .about-text p { font-size: 0.92rem; }
    .about-image img { max-width: 180px; }
    .mv-card { padding: 22px 18px; }
    .mv-card h4 { font-size: 1.05rem; }

    /* Footer */
    .footer { padding: 50px 0 20px; }
    .footer-grid { gap: 24px; }
    .footer-col > p { font-size: 0.85rem; }
    .footer-bottom { font-size: 0.78rem; }

    /* Floating buttons */
    .whatsapp-float { width: 48px; height: 48px; font-size: 1.3rem; bottom: 16px; right: 14px; }
    .back-to-top { width: 36px; height: 36px; font-size: 0.82rem; bottom: 16px; left: 14px; }
}

/* --- Very small phones (320px) --- */
@media (max-width: 360px) {
    .container { padding: 0 12px; }
    .hero-text h1 { font-size: 1.5rem; }
    .hero-badge { font-size: 0.68rem; }
    .btn { padding: 11px 18px; font-size: 0.84rem; }
    .section-header h2 { font-size: 1.35rem; }
    .page-header h1 { font-size: 1.5rem; }
    .stat-item h3 { font-size: 1.5rem; }
    .nav-logo span { display: none; }
    .nav-logo img { height: 38px; }
}
