/* ========================================
   PureDebt Solutions - Premium CSS
   Speed Optimized & Mobile-First
   
   Table of Contents:
   1. CSS Variables
   2. Reset & Base Styles
   3. Layout (Container, Grid)
   4. Header & Navigation
   5. Buttons
   6. Hero Section
   7. Sections & Content
   8. Cards & Components
   9. Forms
   10. Footer
   11. Floating Elements (WhatsApp, Mobile Bar)
   12. FAQ Styles
   13. Animations
   14. Utility Classes
   15. Responsive Design
   16. Performance Optimizations
   ======================================== */

/* CSS Variables for Performance */
:root {
    /* Primary Colors - Dark Blue/Teal */
    --primary-50: #e6f2f5;
    --primary-100: #b3d9e3;
    --primary-200: #80c0d1;
    --primary-300: #4da7bf;
    --primary-400: #1a8ead;
    --primary-500: #0E5B78;
    --primary-600: #0d4f68;
    --primary-700: #0a3f52;
    --primary-800: #072f3c;
    --primary-900: #041f26;
    
    /* Accent Colors - Dark Green */
    --accent-50: #e8f5ed;
    --accent-100: #b8e0c8;
    --accent-200: #88cba3;
    --accent-300: #58b67e;
    --accent-400: #28a159;
    --accent-500: #1D7A58;
    --accent-600: #176248;
    --accent-700: #114a38;
    --accent-800: #0b3228;
    --accent-900: #051a18;
    
    /* Neutral Colors - Light Gray/Beige */
    --neutral-50: #F2F2F0;
    --neutral-100: #E6E6E4;
    --neutral-200: #d9d9d8;
    --neutral-300: #cccccc;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-900: #111827;
    
    /* Legacy support */
    --gray-50: #F2F2F0;
    --gray-100: #E6E6E4;
    --gray-200: #d9d9d8;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    
    --white: #ffffff;
    --whatsapp: #25D366;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --font-inter: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

/* Hide all scrollbars site-wide - scrolling still works */
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
*::-webkit-scrollbar {
    display: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-inter);
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    overflow-x: hidden;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    position: static;
    background: rgba(242, 242, 240, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    border-bottom: 1px solid var(--neutral-200);
    width: 100%;
}

@media (max-width: 767px) {
    .header {
        position: relative;
    }
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: rgba(242, 242, 240, 0.98);
    border-bottom-color: var(--primary-300);
}

/* Prevent header container from clipping the CTA button */
.header .container {
    overflow: visible;
}

.header {
    overflow: visible;
}

/* Compact, professional navbar – no overlap */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    gap: 0.5rem;
    position: relative;
    overflow: visible;
    min-width: 0;
}

@media (min-width: 1200px) {
    .nav {
        height: 64px;
        gap: 0.75rem;
    }
}

@media (max-width: 767px) {
    .nav {
        height: 64px;
        gap: 0.5rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--gray-900);
    text-decoration: none;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .logo {
        font-size: 1rem;
        gap: 0.6rem;
    }
}

.logo:hover {
    opacity: 0.9;
}

.logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

@media (min-width: 1200px) {
    .logo img {
        height: 40px;
    }
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-500);
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.logo-text {
    line-height: 1.2;
}

.logo-accent {
    color: var(--primary-500);
    display: inline-block;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
}

.nav-menu li {
    position: relative;
}

/* Desktop menu – tight, no overlap */
@media (min-width: 768px) {
    .nav-menu {
        display: flex !important;
        gap: 0.15rem;
        position: static !important;
        transform: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: transparent !important;
        box-shadow: none !important;
        max-height: none !important;
        overflow: visible !important;
        flex-direction: row !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: auto !important;
    }
    .nav-menu.active {
        display: flex !important;
    }
}

@media (min-width: 1024px) {
    .nav-menu {
        gap: 0.35rem;
    }
}

@media (min-width: 1200px) {
    .nav-menu {
        gap: 0.5rem;
    }
}

/* Mobile menu - hidden by default, shown when active */
@media (max-width: 767px) {
    .nav-menu {
        display: none !important;
        position: absolute !important;
    }
    .nav-menu.active {
        display: flex !important;
    }
}

.nav-menu a {
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.35rem 0.45rem;
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
    display: block;
    font-size: 0.8125rem;
    white-space: nowrap;
    border-radius: 4px;
    letter-spacing: 0.01em;
}

@media (min-width: 1024px) {
    .nav-menu a {
        padding: 0.4rem 0.6rem;
        font-size: 0.875rem;
    }
}

@media (min-width: 1200px) {
    .nav-menu a {
        padding: 0.5rem 0.75rem;
        font-size: 0.9375rem;
    }
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0.15rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--primary-500);
    transition: width 0.2s ease;
    border-radius: 1px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: calc(100% - 0.75rem);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-600);
    background: rgba(14, 91, 120, 0.06);
}

.nav-menu a.active {
    font-weight: 600;
}

.nav-cta {
    display: none;
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.35rem 0.5rem;
    margin-left: 0.35rem;
    overflow: visible;
    text-overflow: clip;
    letter-spacing: 0.02em;
    border-radius: 4px;
}

@media (min-width: 768px) {
    .nav-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.6875rem;
        padding: 0.35rem 0.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-cta {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
        margin-left: 0.5rem;
    }
}

@media (min-width: 1200px) {
    .nav-cta {
        font-size: 0.8125rem;
        padding: 0.5rem 0.875rem;
        margin-left: 0.75rem;
    }
}

@media (min-width: 1400px) {
    .nav-cta {
        font-size: 0.875rem;
        padding: 0.55rem 1rem;
    }
}

/* Header container: compact padding so nav fits */
@media (min-width: 768px) and (max-width: 1199px) {
    .header .container {
        padding-left: 0.65rem;
        padding-right: 0.65rem;
    }
}

/* Hide CTA button on mobile completely */
@media (max-width: 767px) {
    .nav-cta {
        display: none !important;
    }
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-shrink: 0;
    z-index: 1001;
    margin-left: auto;
    position: relative;
}

@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle:hover span {
    background: var(--primary-500);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--primary-500);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--primary-500);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}

.btn,
.btn * {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: var(--primary-500);
    color: var(--white) !important;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
    pointer-events: none;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: var(--primary-600) !important;
    color: var(--white) !important;
    box-shadow: 0 12px 24px -8px rgba(14, 91, 120, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.btn-primary:hover,
.btn-primary:hover * {
    color: var(--white) !important;
    z-index: 10;
}

/* Ensure button text is always visible */
.btn-primary,
.btn-primary * {
    position: relative;
    z-index: 10;
    color: var(--white) !important;
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-500) !important;
    border: 2px solid var(--primary-500);
    position: relative;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-secondary:hover {
    background: var(--primary-500);
    color: var(--white) !important;
    border-color: var(--primary-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(14, 91, 120, 0.3);
}

.btn-secondary:hover,
.btn-secondary:hover * {
    color: var(--white) !important;
}

.btn-white {
    background: var(--white);
    color: var(--primary-500) !important;
    position: relative;
    overflow: hidden;
}

.btn-white::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(14, 91, 120, 0.08);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.btn-white:hover::before {
    width: 300px;
    height: 300px;
}

.btn-white:hover {
    background: var(--neutral-50);
    color: var(--primary-600) !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.2);
}

.btn-white:hover,
.btn-white:hover * {
    color: var(--primary-600) !important;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white) !important;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.btn-whatsapp:hover::after {
    width: 300px;
    height: 300px;
}

.btn-whatsapp:hover {
    background: #20BA5A !important;
    color: var(--white) !important;
    box-shadow: 0 12px 24px -8px rgba(37, 211, 102, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.btn-whatsapp:hover,
.btn-whatsapp:hover * {
    color: var(--white) !important;
}

.btn-whatsapp:active {
    transform: translateY(-1px) scale(1.02);
}

/* Hero Section */
.hero {
    padding: 3rem 0 4rem;
    background: 
        linear-gradient(135deg, var(--neutral-50) 0%, var(--white) 30%, var(--neutral-100) 70%, var(--primary-50) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/PDlogo.jpeg');
    background-size: 200px 200px;
    background-position: 0 0;
    background-repeat: repeat;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
    pointer-events: none;
}


.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

@media (max-width: 767px) {
    .hero-content {
        text-align: left;
    }
    
    .hero-cta {
        align-items: stretch;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--gray-900);
    animation: fadeInUp 1s ease-out 0.2s both;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

/* Sections */
.section {
    padding: 3rem 0;
    position: relative;
    background: var(--white);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-500), var(--accent-500), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 2px;
}

.section.animated::before {
    opacity: 1;
}

@media (min-width: 768px) {
    .section {
        padding: 4rem 0;
    }
}

.section-alt {
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 50%, var(--neutral-50) 100%);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(14, 91, 120, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(29, 122, 88, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-primary {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 50%, var(--primary-500) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(29, 122, 88, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.section-title:hover::after {
    width: 100%;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-primary .section-title {
    color: var(--white);
}

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

/* Content Wrapper */
.content-wrapper {
    max-width: 768px;
    margin: 0 auto;
    overflow: visible;
}

.prose {
    font-size: 1rem;
    color: var(--neutral-700);
    line-height: 1.7;
}

.prose p {
    margin-bottom: 1.5rem;
}

.prose .lead {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary-700);
    position: relative;
    background: var(--neutral-50);
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-500);
    margin-bottom: 1.25rem;
}

.prose .lead::before {
    display: none;
}

/* Grid */
.grid {
    display: grid;
    gap: 1.5rem;
    overflow: visible;
}

.grid > * {
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow: visible;
}

.grid-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    overflow: visible;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        overflow: visible;
    }
}

.grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Cards */
.card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-200);
    border-top: 3px solid var(--primary-500);
    transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: transform 0.5s ease;
    transform: translateX(-100%);
    pointer-events: none;
}

.card:hover::before {
    transform: translateX(100%);
}

.card:hover {
    box-shadow: 0 12px 24px -8px rgba(14, 91, 120, 0.2);
    transform: translateZ(0) translateY(-8px);
    border-top-color: var(--accent-500);
    border-color: var(--primary-300);
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Ensure links in cards are clickable (above card ::before overlay) */
.card a {
    position: relative;
    z-index: 1;
}

.card-alt {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.3);
    transition: box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease, transform 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.card-alt::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.card-alt:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateZ(0) translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-alt h3,
.card-alt p {
    color: var(--white);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Step Cards */
.step-card {
    text-align: center;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-50), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.step-card:hover::after {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-8px);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--primary-500);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(14, 91, 120, 0.3);
    position: relative;
}

.step-card:hover .step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(14, 91, 120, 0.4);
    background: var(--primary-600);
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-700);
    transition: color 0.3s ease;
}

.step-card:hover h3 {
    color: var(--primary-500);
}

.step-card p {
    color: var(--gray-600);
    line-height: 1.7;
    transition: color 0.3s ease;
}

.step-card:hover p {
    color: var(--gray-700);
}

/* FAQ */
.faq-preview {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .faq-preview {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.faq-preview-item {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-preview-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.faq-preview-item:hover::before {
    transform: scaleX(1);
}

.faq-preview-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(14, 91, 120, 0.12);
    border-color: var(--primary-300);
}

.faq-preview-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-preview-item:hover .faq-preview-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(14, 91, 120, 0.3);
}

.faq-preview-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
    line-height: 1.3;
}

.faq-preview-item p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--gray-900);
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.faq-question:hover {
    background: var(--neutral-50);
}

.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem;
    max-height: 1000px;
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    color: var(--white);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(29, 122, 88, 0.15) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
    pointer-events: none;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }
}

.cta-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--primary-800) 0%, var(--primary-900) 100%);
    color: #d1d5db;
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-500), var(--primary-500), transparent);
    animation: footerLineGlow 3s ease-in-out infinite;
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(29, 122, 88, 0.1) 0%, transparent 70%);
    animation: footerBackgroundFloat 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes footerLineGlow {
    0%, 100% {
        opacity: 0.8;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
}

@keyframes footerBackgroundFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    animation: footerFadeIn 0.8s ease-out;
}

@keyframes footerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: footerLogoFadeIn 0.6s ease-out;
}

@keyframes footerLogoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.footer-logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
    display: block;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-logo:hover img {
    opacity: 1;
}

.footer-col {
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    animation: footerSlideIn 0.6s ease-out;
    animation-fill-mode: both;
}

.footer-col:nth-child(1) h4 { animation-delay: 0.1s; }
.footer-col:nth-child(2) h4 { animation-delay: 0.2s; }
.footer-col:nth-child(3) h4 { animation-delay: 0.3s; }
.footer-col:nth-child(4) h4 { animation-delay: 0.4s; }

@keyframes footerSlideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: #d1d5db;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    animation: footerLinkFadeIn 0.5s ease-out;
    animation-fill-mode: both;
}

.footer-col ul li:nth-child(1) a { animation-delay: 0.1s; }
.footer-col ul li:nth-child(2) a { animation-delay: 0.15s; }
.footer-col ul li:nth-child(3) a { animation-delay: 0.2s; }
.footer-col ul li:nth-child(4) a { animation-delay: 0.25s; }
.footer-col ul li:nth-child(5) a { animation-delay: 0.3s; }

@keyframes footerLinkFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-col a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-500);
    transition: width 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-400);
    transform: translateX(4px);
}

.footer-col a:hover::before {
    width: 100%;
}

.footer-hours {
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
    position: relative;
    z-index: 1;
    animation: footerBottomFadeIn 0.8s ease-out 0.5s both;
}

@keyframes footerBottomFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: var(--accent-500);
}

/* Social Media Links */
.footer-social {
    margin-top: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #d1d5db;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    flex-shrink: 0;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateY(-3px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link svg {
    width: 22px;
    height: 22px;
    display: block;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-shrink: 0;
}

/* Instagram specific hover */
.social-link[aria-label*="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: #ffffff !important;
}

.social-link[aria-label*="Instagram"]:hover svg {
    fill: #ffffff !important;
    color: #ffffff !important;
}

/* Facebook specific hover */
.social-link[aria-label*="Facebook"]:hover {
    background: #1877f2;
    border-color: transparent;
    color: #ffffff !important;
}

.social-link[aria-label*="Facebook"]:hover svg {
    fill: #ffffff !important;
    color: #ffffff !important;
}

/* TikTok specific hover */
.social-link[aria-label*="TikTok"]:hover {
    background: #000000;
    border-color: transparent;
    color: #ffffff !important;
}

.social-link[aria-label*="TikTok"]:hover svg {
    fill: #ffffff !important;
    color: #ffffff !important;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 64px;
    height: 64px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite, float 3s ease-in-out infinite;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--whatsapp);
    opacity: 0;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (min-width: 768px) {
    .floating-whatsapp {
        display: flex;
    }
}

.floating-whatsapp:hover {
    transform: scale(1.15);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.5);
    animation-play-state: paused;
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

/* WhatsApp ID modal */
.whatsapp-id-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.whatsapp-id-modal-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.whatsapp-id-modal {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 100%;
    padding: 1.75rem;
    transform: scale(0.95);
    transition: transform 0.2s ease;
}

.whatsapp-id-modal-backdrop.is-open .whatsapp-id-modal {
    transform: scale(1);
}

.whatsapp-id-modal h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    color: var(--gray-900);
}

.whatsapp-id-modal p {
    margin: 0 0 1.25rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.whatsapp-id-modal label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.whatsapp-id-modal .required {
    color: var(--primary-600);
    font-weight: 700;
}

.whatsapp-id-modal input[type="text"] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--neutral-300);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    box-sizing: border-box;
}

.whatsapp-id-modal input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(14, 91, 120, 0.15);
}

.whatsapp-id-modal input[type="text"][aria-invalid="true"] {
    border-color: #dc2626;
    margin-bottom: 0.5rem;
}

.whatsapp-id-modal input[type="text"][aria-invalid="true"]:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.whatsapp-id-error {
    display: none;
    font-size: 0.875rem;
    color: #dc2626;
    margin-bottom: 1rem;
    font-weight: 500;
}

.whatsapp-id-modal-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.whatsapp-id-modal-actions .btn {
    flex: 1;
    min-width: 120px;
}

.whatsapp-id-modal-actions .btn-secondary {
    background: var(--neutral-100);
    color: var(--gray-700);
}

.whatsapp-id-modal-actions .btn-secondary:hover {
    background: var(--neutral-200);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(14, 91, 120, 0.1);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.75rem 1rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
    z-index: 999;
    animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (min-width: 768px) {
    .mobile-bottom-bar {
        display: none;
    }
}

.mobile-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    color: var(--gray-700);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    position: relative;
    flex: 1;
    max-width: 140px;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-action::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-50);
    border-radius: 12px;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    opacity: 0;
}

.mobile-action:hover::before,
.mobile-action:active::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.mobile-action:hover {
    color: var(--primary-600);
    transform: translateY(-2px);
}

.mobile-action:active {
    transform: translateY(0) scale(0.98);
}

.mobile-action svg {
    width: 26px;
    height: 26px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-action:hover svg {
    transform: scale(1.1);
}

/* Call button specific styling */
.mobile-action[aria-label*="Call"],
.mobile-action[href^="tel:"] {
    color: var(--primary-600);
}

.mobile-action[aria-label*="Call"]:hover,
.mobile-action[href^="tel:"]:hover {
    color: var(--primary-700);
}

.mobile-action[aria-label*="Call"]::before,
.mobile-action[href^="tel:"]::before {
    background: var(--primary-50);
}

/* WhatsApp button specific styling */
.mobile-action[aria-label*="WhatsApp"],
.mobile-action[href*="wa.me"] {
    color: var(--whatsapp);
}

.mobile-action[aria-label*="WhatsApp"]:hover,
.mobile-action[href*="wa.me"]:hover {
    color: #20ba5a;
}

.mobile-action[aria-label*="WhatsApp"]::before,
.mobile-action[href*="wa.me"]::before {
    background: rgba(37, 211, 102, 0.1);
}

.mobile-action span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    white-space: nowrap;
    transition: color 0.3s ease;
}

/* Add subtle divider between buttons */
.mobile-bottom-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(14, 91, 120, 0.2), transparent);
    pointer-events: none;
}

/* Improve touch targets for mobile */
@media (max-width: 767px) {
    .mobile-action {
        min-height: 56px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-bottom-bar {
        box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    }
}

/* Utility Classes */
.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.link-arrow {
    color: var(--primary-500);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow::after {
    content: '→';
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    color: var(--primary-600);
    transform: translateX(4px);
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.form-label .required {
    color: #ef4444;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--neutral-200);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(14, 91, 120, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.form-input,
.form-textarea {
    transition: all 0.3s ease;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-success {
    background: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    animation: slideInRight 0.5s ease-out;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.form-error-message {
    background: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    animation: slideInRight 0.5s ease-out;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* Loading State */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Mobile Menu */
@media (max-width: 767px) {
    .nav {
        height: 64px;
        position: relative;
        overflow: visible;
    }
    
    .header .container {
        overflow: visible;
        position: relative;
    }
    
    .nav-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        background: var(--white) !important;
        flex-direction: column !important;
        padding: 0 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
        transform: translateY(-10px) scaleY(0) !important;
        transform-origin: top center !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
        gap: 0 !important;
        max-height: none !important;
        overflow-y: visible !important;
        overflow: visible !important;
        z-index: 9999 !important;
        display: flex !important;
        margin: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .nav-menu.active {
        transform: translateY(0) scaleY(1) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--neutral-200);
        font-size: 1rem;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: var(--primary-50);
        color: var(--primary-600);
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo img {
        height: 90px;
    }
    
    
    .hero {
        padding: 150px 0 60px;
    }
    
    .footer-logo img {
        height: 35px;
    }
}

/* Logo Image Styling */
.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}


/* Section Logo */
.section-logo {
    max-width: 150px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
}

/* Section Images - Professional Styling */
.section-image {
    width: 100%;
    margin: 2rem 0;
    position: relative;
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
    object-fit: cover;
    background: var(--neutral-50);
}

.section-image img:hover {
    box-shadow: 0 8px 20px rgba(14, 91, 120, 0.12);
    transform: translateY(-2px);
    border-color: var(--primary-300);
}

@media (min-width: 768px) {
    .section-image {
        margin: 2.5rem 0;
    }
    
    .section-image img {
        border-radius: 16px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }
}

/* Image in content wrapper - more subtle */
.content-wrapper .section-image {
    margin: 2rem 0;
}

.content-wrapper .section-image img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--neutral-200);
}

@media (max-width: 767px) {
    .section-image {
        margin: 1.5rem 0;
    }
    
    .section-image img {
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
}

/* Privacy policy: show content immediately (long page, scroll animation can leave content hidden) */
.page-privacy-policy .animate-on-scroll {
    opacity: 1;
    transform: none;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Staggered Animation Delays */
.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .logo:hover .logo-image {
        transform: none;
    }
    
    .animate-on-scroll {
        opacity: 1;
    }
}

/* Print Styles */
@media print {
    .header,
    .floating-whatsapp,
    .mobile-bottom-bar {
        display: none;
    }
}

/* Image Loading Optimization */
img {
    loading: lazy;
    decoding: async;
}

.logo img,
.footer-logo img,
.hero-logo {
    loading: eager;
}

/* ========================================
   Utility Classes
   ======================================== */

/* Spacing Utilities */
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* List Utilities */
.list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-item-spacing > li {
    margin-bottom: 0.75rem;
}

.list-item-spacing-sm > li {
    margin-bottom: 0.5rem;
}

/* Flexbox Utilities */
.flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }

/* Card Variants */
.card-primary-bg {
    background: var(--primary-50);
}

.card-gray-bg {
    background: var(--neutral-50);
}

/* Contact Card Styles */
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-600);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
}

.contact-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary-600);
    font-weight: 600;
    font-size: 1.125rem;
}

.contact-info p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

/* Step Number Circle */
.step-number-circle {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--primary-600);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

/* Content Wrapper Variants */
.content-wrapper-center {
    text-align: center;
}

/* Border Accent */
.border-accent-left {
    border-left: 4px solid var(--primary-600);
    padding-left: 1rem;
}

/* Text Styles */
.text-small {
    font-size: 0.875rem;
}

.text-italic {
    font-style: italic;
}

/* Width Utilities */
.w-full { width: 100%; }
.max-w-none { max-width: none; }
