/* =============================================================
   PROFESSIONAL CLEAN DESIGN - SSM MEDICAL
   Optimized for conversion with simplified color scheme
   ============================================================= */

/* Clean Professional Color Palette */
:root {
    --primary-blue: #0D1E45;          /* Primary brand color */
    --primary-blue-dark: #0A1733;     /* Darker shade for hover */
    --primary-blue-light: #1A2B55;    /* Lighter shade for accents */
    --accent-blue: #2563eb;           /* Accent color for highlights */
    --accent-blue-light: #3b82f6;     /* Light accent for backgrounds */
    
    /* Neutral colors derived from primary */
    --text-primary: #1e293b;          /* Dark text */
    --text-secondary: #64748b;        /* Light text */
    --text-light: #94a3b8;            /* Very light text */
    
    /* Background colors */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-glass: rgba(255, 255, 255, 0.1);
    --bg-glass-border: rgba(255, 255, 255, 0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Status colors */
    --success: #0ea5e9;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

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

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

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

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

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

/* Animații sigure - elementele sunt vizibile by default */
.animate-on-scroll {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Animațiile se aplică doar dacă JavaScript-ul funcționează și nu suntem pe mobil */
.js-enabled .animate-on-scroll:not(.animated) {
    opacity: 0;
}

/* Pe mobil, elementele rămân vizibile */
@media (max-width: 768px) {
    .js-enabled .animate-on-scroll:not(.animated) {
        opacity: 1;
    }
    
    .js-enabled .fade-up:not(.animated),
    .js-enabled .fade-left:not(.animated),
    .js-enabled .fade-right:not(.animated),
    .js-enabled .scale-in:not(.animated) {
        transform: translateY(0) translateX(0) scale(1);
    }
}

/* Dezactivează animațiile pe pagini specifice */
.no-animations .animate-on-scroll:not(.animated),
.no-animations .js-enabled .animate-on-scroll:not(.animated) {
    opacity: 1 !important;
}

.no-animations .fade-up:not(.animated),
.no-animations .fade-left:not(.animated), 
.no-animations .fade-right:not(.animated),
.no-animations .scale-in:not(.animated),
.no-animations .js-enabled .fade-up:not(.animated),
.no-animations .js-enabled .fade-left:not(.animated),
.no-animations .js-enabled .fade-right:not(.animated),
.no-animations .js-enabled .scale-in:not(.animated) {
    transform: translateY(0) translateX(0) scale(1) !important;
}

.js-enabled .fade-up:not(.animated) {
    transform: translateY(30px);
}

.js-enabled .fade-left:not(.animated) {
    transform: translateX(-30px);
}

.js-enabled .fade-right:not(.animated) {
    transform: translateX(30px);
}

.js-enabled .scale-in:not(.animated) {
    transform: scale(0.9);
}

/* Starea animată */
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-light);
    overflow-x: hidden;
    transition: all 0.3s ease;
}

/* Subtle transitions for interactive elements */
a, button, input, textarea, select {
    transition: all 0.2s ease;
}

/* Gentle hover effects */
button:hover, .btn:hover {
    transform: translateY(-1px);
}

/* Card hover effects - more subtle */
.trust-badge, .advantage-item, .benefit-item-main, .service-card {
    transition: all 0.3s ease;
}

.trust-badge:hover, .advantage-item:hover, .benefit-item-main:hover, .service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

/* =============================================================
   HERO SECTION WITH CONTACT FORM ON RIGHT
   ============================================================= */

.hero {
    background: var(--gradient-primary);
    background-image: url('medical-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.85;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    color: white;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    font-weight: 400;
}

.hero-features {
    list-style: none;
    margin-bottom: 40px;
}

.hero-features li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 16px;
    opacity: 0.9;
}

.hero-features i {
    color: var(--accent-blue-light);
    margin-right: 12px;
    font-size: 18px;
}

/* Glass Effect Box */
.hero-glass-box {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--bg-glass-border);
    border-radius: 16px;
    padding: 24px;
    margin-top: 20px;
}

.hero-glass-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-glass-content i {
    font-size: 24px;
    color: var(--accent-blue-light);
}

.hero-glass-text {
    flex: 1;
}

.hero-glass-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.hero-glass-text p {
    font-size: 14px;
    opacity: 0.8;
}

/* Contact Form in Hero */
.hero-contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-contact-form h3 {
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.hero-contact-form .form-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    text-align: center;
    margin-bottom: 24px;
}

.hero-form-group {
    margin-bottom: 20px;
}

.hero-form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.hero-form-group input,
.hero-form-group select,
.hero-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.hero-form-group input:focus,
.hero-form-group select:focus,
.hero-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.hero-form-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.hero-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-trust-indicator {
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-trust-indicator i {
    color: var(--success);
}

/* =============================================================
   SECTIONS WITH 4 ELEMENTS ON ONE LINE
   ============================================================= */

.advantages-grid,
.services-grid,
.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 60px 0;
}

.advantage-item,
.service-card,
.trust-badge {
    background: var(--bg-white);
    padding: 32px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.advantage-item::before,
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-item:hover,
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.advantage-item:hover::before,
.service-card:hover::before {
    transform: scaleX(1);
}

.advantage-item i,
.service-card i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: block;
}

.advantage-item h3,
.service-card h3 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.advantage-item p,
.service-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* =============================================================
   PROFESSIONAL BUTTONS AND CTAs
   ============================================================= */

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
}

/* =============================================================
   RESPONSIVE DESIGN
   ============================================================= */

@media (max-width: 1024px) {
    .advantages-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-contact-form {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .advantages-grid,
    .services-grid,
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-container {
        padding: 0 16px;
    }
    
    .hero-contact-form {
        padding: 24px;
    }
    
    .advantage-item,
    .service-card {
        padding: 24px 16px;
    }
}

/* =============================================================
   CLEAN HEADER AND NAVIGATION
   ============================================================= */

.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-blue);
}

.navbar {
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand a {
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 12px;
    margin-left: 8px;
    color: var(--text-secondary);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-xl);
    border-radius: 12px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e2e8f0;
    padding: 8px 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    border-radius: 8px;
    margin: 0 8px;
}

.dropdown-menu a:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateX(4px);
}

/* Navigation CTA Button */
.btn-whatsapp {
    background: var(--primary-blue);
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--primary-blue-dark);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle:hover span {
    background: var(--primary-blue);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        transition: right 0.3s ease;
        z-index: 2000;
        padding: 80px 20px 20px;
        overflow-y: auto;
    }
    
    .nav-menu.nav-menu-open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #e2e8f0;
        font-size: 16px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        margin: 8px 0;
        border-radius: 8px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-cta {
        order: -1;
        margin-right: 20px;
    }
    
    .btn-whatsapp {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* =============================================================
   CLEAN FOOTER
   ============================================================= */

.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    justify-content: space-between;
    align-items: start;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
}

.footer-section a:hover {
    color: var(--accent-blue-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info i {
    color: var(--accent-blue-light);
    font-size: 16px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.legal-links a {
    color: #9ca3af;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .trust-badges {
        text-align: center;
    }
    
    .security-badges {
        text-align: center;
        justify-content: center;
    }
    
    .availability-status {
        text-align: center;
        justify-content: center;
    }
}
/* Desktop spacing for advantages */
@media (min-width: 769px) {
    .advantages {
        margin-top: 60px;
    }
}

/* Additional CTA Section Styles */
.cta-section {
    background: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}


/* =============================================================
   MOBILE ACTIONS - ASCUNSE PE DESKTOP 
   ============================================================= */

/* MOBILE ACTIONS ELIMINATE - nu mai sunt necesare */
.mobile-actions {
    display: none !important;
}

.mobile-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 44px;
}

.mobile-action i {
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--primary-blue);
}

.mobile-action:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.mobile-action.primary {
    background: var(--primary-blue);
    color: white;
    border-radius: 8px;
    margin: 0 5px;
}

.mobile-action.primary i {
    color: white;
}

/* =============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================= */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
    font-size: 26px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Pe mobile să fie mai mic și mai aproape de margine */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 22px;
    }
}

/* Force cache refresh - Wed Aug 27 08:37:57 PM UTC 2025 */

/* =============================================================
   SERVICE PAGES - CONVERSION OPTIMIZED
   ============================================================= */

.service-hero {
    background: var(--gradient-primary);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.9;
    z-index: 1;
}

.service-hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-hero-content {
    color: white;
}

.service-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.service-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.benefit-item i {
    color: var(--accent-blue-light);
    font-size: 18px;
}

.service-price-highlight {
    margin-top: 30px;
}

.price-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.price-icon {
    background: var(--accent-blue-light);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.price-icon i {
    font-size: 20px;
    color: white;
}

.price-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.price-content p {
    font-size: 14px;
    opacity: 0.9;
}

/* Service Contact Form */
.service-contact-form {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.form-header h3 {
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

.service-form .form-group {
    margin-bottom: 20px;
}

.service-form label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.service-form input,
.service-form select,
.service-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.service-form-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.service-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-trust {
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-trust i {
    color: var(--success);
}

/* Service Details Section */
.service-details {
    padding: 80px 0;
    background: var(--bg-light);
}

.service-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.details-content h2 {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-weight: 700;
}

.service-includes {
    margin-bottom: 40px;
}

.include-category {
    margin-bottom: 30px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.include-category h4 {
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.include-category ul {
    list-style: none;
    padding: 0;
}

.include-category li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.include-category li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.service-process h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-weight: 600;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.step-number {
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Details Sidebar */
.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.quick-contact,
.service-guarantees {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.quick-contact h4,
.service-guarantees h4 {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.contact-option:hover {
    border-color: var(--primary-blue);
    background: var(--light-blue);
}

.contact-option i {
    color: var(--primary-blue);
    font-size: 16px;
    width: 20px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

.guarantee-item i {
    color: var(--primary-blue);
    font-size: 16px;
    width: 20px;
}

.sidebar-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* Service FAQ */
.service-faq {
    padding: 80px 0;
    background: white;
}

.service-faq h2 {
    text-align: center;
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

.faq-item h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .service-contact-form {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .service-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 32px;
    }
    
    .service-subtitle {
        font-size: 16px;
    }
    
    .service-hero-container {
        padding: 0 16px;
    }
    
    .service-contact-form {
        padding: 24px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
}


/* Hero Contact Buttons */
.hero-contact-buttons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.hero-contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-contact-btn.phone {
    background: rgba(34, 197, 94, 0.9);
    color: white;
}

.hero-contact-btn.whatsapp {
    background: rgba(37, 211, 102, 0.9);
    color: white;
}

.hero-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Service Details Single Column */
.service-details-single {
    padding: 80px 0;
    background: var(--bg-light);
}

.service-details-single h2 {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.service-details-single .service-includes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-details-single .service-process h3 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
}

.service-details-single .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Service CTA Section */
.service-cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: white;
    color: var(--primary-blue);
    border-color: white;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.cta-guarantee {
    margin-top: 40px;
}

.guarantee-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.guarantee-items .guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.guarantee-items .guarantee-item i {
    font-size: 16px;
}

/* Responsive for CTA */
@media (max-width: 768px) {
    .hero-contact-buttons {
        flex-direction: column;
    }
    
    .service-details-single .service-includes {
        grid-template-columns: 1fr;
    }
    
    .service-details-single .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .guarantee-items {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

/* Hero buttons refresh - Wed Aug 27 08:56:46 PM UTC 2025 */

/* =============================================================
   PAGE HERO SECTIONS
   ============================================================= */

.page-hero {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-center h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content-center .hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.6;
}

/* =============================================================
   FAQ ACCORDION STYLES
   ============================================================= */

.faq-content {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.faq-nav-btn {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-nav-btn:hover,
.faq-nav-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.faq-section {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section.active {
    display: block;
}

.faq-section h2 {
    text-align: center;
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-blue);
}

.faq-question i {
    color: var(--primary-blue);
    font-size: 14px;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =============================================================
   ABOUT PAGE STYLES
   ============================================================= */

.about-story {
    padding: 80px 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.story-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-blue);
    font-weight: 600;
}

.highlight-item i {
    font-size: 16px;
    width: 20px;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-blue);
    border-radius: 16px;
    border: 2px solid rgba(37, 99, 235, 0.1);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.values {
    padding: 80px 0;
    background: var(--bg-light);
}

.values h2 {
    text-align: center;
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 50px;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 28px;
    color: white;
}

.value-item h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.services-overview {
    padding: 80px 0;
    background: white;
}

.services-overview h2 {
    text-align: center;
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 50px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-preview {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-preview:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 24px;
    color: white;
}

.service-preview h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-preview p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--accent-blue);
}

.why-choose {
    padding: 80px 0;
    background: var(--bg-light);
}

.why-choose h2 {
    text-align: center;
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 50px;
    font-weight: 700;
}

.reasons-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.reason-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.reason-content h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.reason-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* =============================================================
   CONTACT PAGE STYLES
   ============================================================= */

.contact-hero {
    padding: 80px 0;
    background: white;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: flex-start;
}

.contact-hero-content h1 {
    font-size: 42px;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-hero-content .hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--light-blue);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.contact-method.primary {
    background: var(--gradient-primary);
    color: white;
}

.contact-method.primary:hover {
    border-color: white;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method.primary .method-icon {
    background: rgba(255, 255, 255, 0.2);
}

.method-icon i {
    font-size: 20px;
    color: white;
}

.method-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contact-method.primary .method-content h4,
.contact-method.primary .method-content span {
    color: white;
}

.method-content span {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

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

.form-message {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.contact-form-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.contact-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.location-info {
    padding: 80px 0;
    background: var(--bg-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.location-details h2 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-weight: 700;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon i {
    font-size: 20px;
    color: white;
}

.location-content h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.location-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.services-summary {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.services-summary h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-weight: 600;
}

.service-summary-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.service-summary-item i {
    color: var(--primary-blue);
    font-size: 16px;
    width: 20px;
}

.faq-quick {
    padding: 80px 0;
    background: white;
}

.faq-quick h2 {
    text-align: center;
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.faq-quick-item {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

.faq-quick-item h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-quick-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

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

.faq-link a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.faq-link a:hover {
    color: var(--accent-blue);
}

.contact-cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        position: static;
        top: auto;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .values-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .faq-nav-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-quick-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reasons-grid {
        gap: 20px;
    }
    
    .reason-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .page-hero .hero-content-center h1,
    .contact-hero-content h1 {
        font-size: 32px;
    }
}


/* =============================================================
   NEW CONTACT PAGE STYLES
   ============================================================= */

.contact-hero-new {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: flex-start;
}

.contact-hero-left h1 {
    font-size: 48px;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.quick-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.phone-btn:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.email-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
}

.btn-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-btn .btn-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.whatsapp-btn .btn-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.btn-icon i {
    font-size: 24px;
    color: white;
}

.btn-content h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-weight: 600;
}

.btn-content span {
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.btn-content small {
    font-size: 12px;
    color: var(--text-secondary);
}

.quick-contact-btn:hover .btn-content h4,
.quick-contact-btn:hover .btn-content span,
.quick-contact-btn:hover .btn-content small {
    color: white;
}

.contact-guarantees {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.guarantee-item i {
    color: var(--primary-blue);
    font-size: 16px;
    width: 20px;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 80px;
}

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

.form-header-new h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.form-header-new p {
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-form-new .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-new label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.contact-form-new input,
.contact-form-new select,
.contact-form-new textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.contact-form-new input:focus,
.contact-form-new select:focus,
.contact-form-new textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form-new textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    margin-top: 10px;
}

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

.form-trust {
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.form-trust i {
    color: #10b981;
}

.location-map-section {
    padding: 80px 0;
    background: white;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.location-info-new h2 {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-weight: 700;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon i {
    font-size: 20px;
    color: white;
}

.location-content h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.location-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.map-container {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.map-header {
    margin-bottom: 20px;
}

.map-header h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.map-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

.google-map {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.map-actions {
    display: flex;
    gap: 12px;
}

.map-btn {
    flex: 1;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.map-btn:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
}

.services-summary-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-summary-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 50px;
    font-weight: 700;
}

.services-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-summary-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.service-summary-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-summary-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-summary-icon i {
    font-size: 28px;
    color: white;
}

.service-summary-item h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-summary-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 20px;
}

.service-summary-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-summary-link:hover {
    color: var(--accent-blue);
}

.contact-faq {
    padding: 80px 0;
    background: white;
}

.contact-faq h2 {
    text-align: center;
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-grid-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.faq-item-contact {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

.faq-item-contact h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-item-contact p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.faq-link-contact {
    text-align: center;
}

.faq-link-contact a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.faq-link-contact a:hover {
    color: var(--accent-blue);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-section {
        position: static;
        top: auto;
    }
    
    .location-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-summary-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-hero-left h1 {
        font-size: 36px;
    }
    
    .contact-form-new .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-grid-contact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .map-actions {
        flex-direction: column;
    }
    
    .quick-contact-btn {
        padding: 16px;
    }
    
    .contact-form-section {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .contact-hero-left h1 {
        font-size: 28px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .btn-content h4 {
        font-size: 16px;
    }
    
    .btn-content span {
        font-size: 14px;
    }
}


/* =============================================================
   FINAL CTA CONVERSION-OPTIMIZED STYLES
   ============================================================= */

.final-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\"><polygon fill=\"rgba(255,255,255,0.05)\" points=\"0,0 100,0 85,100 0,100\"/></svg>") no-repeat;
    background-size: cover;
    z-index: 0;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-message {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin: 30px auto;
    max-width: 700px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: white;
    font-weight: 600;
}

.urgency-message i {
    font-size: 24px;
    color: #fbbf24;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: nowrap;
}

.final-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    min-width: 160px;
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.final-cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.final-cta-btn:hover::before {
    left: 100%;
}

.final-cta-btn.primary {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    border: 3px solid #22c55e;
    transform: scale(1.05);
}

.final-cta-btn.phone {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: 3px solid #3b82f6;
}

.final-cta-btn.whatsapp {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    border: 3px solid #22c55e;
}

.final-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.final-cta-btn i {
    font-size: 24px;
    flex-shrink: 0;
}

.final-cta-btn span {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.final-guarantee {
    margin: 40px 0;
}

.guarantee-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    max-width: 250px;
    min-height: 80px;
    justify-content: flex-start;
}

/* Align guarantee items properly - some have icons, some don't */
.guarantee-item:has(i) {
    align-items: center;
}

.guarantee-item:not(:has(i)) {
    padding-top: 20px; /* Fine-tuned to align with icon + margin */
}

.guarantee-item i {
    font-size: 28px;
    color: #22c55e;
    margin-bottom: 10px;
}

.guarantee-item span {
    font-size: 14px;
    line-height: 1.4;
}

.guarantee-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.risk-message {
    background: rgba(251, 191, 36, 0.2);
    border: 2px solid #fbbf24;
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.risk-message p {
    color: #fef3c7;
    font-size: 16px;
    margin: 0;
    text-align: center;
    line-height: 1.5;
}

.additional-services {
    margin-top: 40px;
}

.additional-services h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: center;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.additional-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.additional-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.additional-item i {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.additional-item h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.additional-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Scroll to form functionality */
.scroll-to-form {
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .final-cta h2 {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .guarantee-items {
        gap: 30px;
    }
    
    .additional-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .final-cta {
        padding: 60px 0;
    }
    
    .final-cta h2 {
        font-size: 24px;
    }
    
    .cta-description {
        font-size: 15px;
    }
    
    .urgency-message {
        padding: 15px;
        font-size: 14px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .final-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .guarantee-items {
        flex-direction: column;
        gap: 20px;
    }
    
    .risk-message {
        padding: 15px;
    }
    
    .risk-message p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .final-cta h2 {
        font-size: 20px;
    }
    
    .cta-description {
        font-size: 14px;
    }
    
    .final-cta-btn {
        padding: 15px 20px;
        min-width: auto;
    }
    
    .btn-title {
        font-size: 14px;
    }
    
    .btn-subtitle {
        font-size: 11px;
    }
}

/* Animation for mobile attention */
@media (max-width: 768px) {
    .final-cta-btn.primary {
        animation: attention 3s infinite;
    }
}

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


/* Mobile Header Actions */
.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 12px;
    margin-right: 12px;
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary-blue);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-action-btn:hover {
    background: var(--accent-blue);
    transform: scale(1.05);
}

.mobile-action-btn i {
    font-size: 16px;
}

.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .mobile-header-actions {
        display: flex;
    }
    
    .desktop-only {
        display: none;
    }
    
    .nav-brand img {
        max-height: 38px;
    }
    
    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-right: 12px;
    }
    
    .mobile-center-title {
        text-align: center !important;
        margin-top: 30px !important;
    }
    
    .hero-stats {
        text-align: center;
    }
    
    .hero-stats .stat-item {
        text-align: center;
    }
    
    .mobile-center-items {
        text-align: center !important;
    }
    
    .mobile-center-items .guarantee-item {
        text-align: center !important;
    }
    
    .mobile-center-items .guarantee-item span {
        text-align: center !important;
    }
    
    .guarantee-item span strong {
        display: inline !important;
        margin-bottom: 0 !important;
    }
    
    .guarantee-item span {
        line-height: 1.3 !important;
    }
    
    .hero-features {
        text-align: center !important;
        align-items: center !important;
    }
    
    .hero-features li {
        text-align: center !important;
        justify-content: center !important;
    }
    
    .hero-features.mobile-center-list {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 20px;
        margin: 20px 0;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        z-index: 1000;
        padding: 80px 20px 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .nav-list li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-list a {
        display: block;
        padding: 15px 0;
        font-size: 18px;
        color: var(--text-primary);
    }
    
    .dropdown-menu {
        position: static;
        background: #f8f9fa;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
        display: block;
        opacity: 1;
        visibility: visible;
        max-height: none;
    }
    
    .dropdown-menu li {
        border-bottom: none;
    }
    
    .dropdown-menu a {
        padding: 10px 20px;
        font-size: 16px;
        color: var(--text-secondary);
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
        margin-left: 12px;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Centrare pentru mobile pe toate secțiunile trust */
@media (max-width: 768px) {
    .trust-badges {
        text-align: center;
    }
    
    .trust-badge {
        justify-content: center;
        text-align: center;
    }
    
    .security-badges {
        justify-content: center;
        text-align: center;
    }
    
    .security-badge {
        justify-content: center;
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
        text-align: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .trust-content {
        text-align: center !important;
    }
    
    .trust-content strong,
    .trust-content span {
        text-align: center !important;
    }
}


/* Footer desktop alignment fix */
@media (min-width: 769px) {
    .footer .container {
        padding: 0 20px;
    }
    
    .footer-grid {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 30px;
        width: 100%;
    }
    
    .footer-section {
        flex: 1;
        max-width: none;
    }
    
    .footer-section:last-child {
        margin-left: 0;
        padding-right: 0;
    }
}

/* Mobile guarantee items centering fix */
@media (max-width: 768px) {
    .final-guarantee {
        text-align: center;
    }
    
    .guarantee-items {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 15px !important;
    }
    
    .guarantee-item {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 300px !important;
    }
    
    .guarantee-item i {
        text-align: center !important;
        margin: 0 0 8px 0 !important;
        display: block !important;
    }
    
    .guarantee-item span {
        text-align: center !important;
        display: block !important;
        line-height: 1.3 !important;
    }
    
    .guarantee-item span strong {
        display: block !important;
        margin-bottom: 2px !important;
        text-align: center !important;
    }
}


/* Hero Contact Buttons Styles */
.hero-contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-contact-btn.phone-btn {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(29, 78, 216, 0.9));
    color: white;
}

.hero-contact-btn.whatsapp-btn {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(21, 128, 61, 0.9));
    color: white;
}

.hero-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.hero-contact-btn i {
    font-size: 16px;
}

/* Footer alignment fixes */
.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-legal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 20px;
}

.consumer-protection {
    flex: 1;
    text-align: left;
}

.consumer-protection a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.consumer-protection a:hover {
    color: var(--accent-blue-light);
}

.copyright {
    flex: 1;
    text-align: center;
    margin: 0;
    font-size: 14px;
    color: #9ca3af;
}

.consumer-icons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.consumer-icon {
    width: 32px;
    height: auto;
    max-height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.consumer-icon:hover {
    transform: scale(1.1);
}

.consumer-icon-inline {
    width: auto;
    height: 60px;
    max-width: 72px;
    object-fit: contain;
    transition: transform 0.3s ease;
    vertical-align: baseline;
    margin: 0 16px;
    position: relative;
    top: 25px;
}

.consumer-icon-inline:hover {
    transform: scale(1.1);
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}


.footer-legal-single-line {
    text-align: center;
    margin-bottom: 10px;
}

.footer-legal-single-line p {
    margin: 0;
    font-size: 14px;
    color: #9ca3af;
    display: inline;
    flex-wrap: wrap;
}

.footer-legal-single-line a {
    color: #9ca3af;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin: 0 8px;
}

.footer-legal-single-line a:hover {
    color: #cbd5e1;
}

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

.footer-credit p {
    margin: 0;
    font-size: 14px;
    color: #9ca3af;
}

.footer-bottom-left p {
    margin: 0;
    font-size: 14px;
    color: #9ca3af;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 140px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 8px 0;
    padding: 0;
}

/* Footer desktop grid fix */
@media (min-width: 769px) {
    .footer-grid {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 30px;
        width: 100%;
    }
    
    .footer-section {
        flex: 1;
        max-width: none;
    }
    
    .footer-section:first-child {
        flex: 1.5;
        max-width: 350px;
    }
    
    .footer-section:nth-child(2),
    .footer-section:nth-child(3),
    .footer-section:last-child {
        flex: 1;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hero-contact-buttons {
        justify-content: center;
        margin-top: 30px;
    }
    
    .hero-contact-btn {
        flex: 1;
        justify-content: center;
        min-width: 140px;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-bottom-left {
        text-align: center;
        align-items: center;
    }
}


/* Enhanced Hero Subtitle */
.hero-subtitle-emphasized {
    font-size: 20px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin: 20px 0;
    font-weight: 400;
    max-width: 600px;
}

.service-subtitle-emphasized {
    font-size: 18px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin: 20px 0;
    font-weight: 400;
    max-width: 600px;
}

/* Key Benefits Section */
.key-benefits {
    background: #f8fafc;
    padding: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item-main {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-item-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #0D1E45;
}

.benefit-item-main i {
    color: #0D1E45;
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item-main h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}

.benefit-item-main.address-item {
    grid-column: 1 / -1;
    background: #0D1E45;
    color: white;
    text-align: center;
    justify-content: center;
}

.benefit-item-main.address-item i {
    color: white;
}

.benefit-item-main.address-item h3 {
    color: white;
    font-size: 18px;
}

.benefit-item-main.address-item a {
    color: #93c5fd;
    text-decoration: none;
    border-bottom: 1px solid rgba(147, 197, 253, 0.3);
    transition: all 0.3s ease;
}

.benefit-item-main.address-item a:hover {
    color: white;
    border-bottom-color: white;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item-main {
        padding: 20px;
    }
    
    .benefit-item-main.address-item {
        grid-column: 1;
    }
    
    .hero-subtitle-emphasized {
        font-size: 18px;
    }
    
    .service-subtitle-emphasized {
        font-size: 16px;
    }
}


/* Desktop and Mobile Layout Control */
.footer-mobile-layout {
    display: none;
}

.footer-desktop-layout {
    display: block;
}

/* Mobile Footer Layout */
@media (max-width: 768px) {
    .footer-mobile-layout {
        display: block;
        text-align: center;
    }
    
    .footer-desktop-layout {
        display: none;
    }
    
    .footer-line-1 {
        margin-bottom: 5px;
    }
    
    .footer-line-2,
    .footer-line-3,
    .footer-line-4 {
        margin-bottom: 15px;
    }
    
    .footer-line-1 p {
        margin: 0;
        font-size: 14px;
        color: #9ca3af;
    }
    
    .footer-line-2 a {
        margin: 0 10px;
    }
    
    .footer-line-3 a {
        color: #9ca3af;
        text-decoration: none;
        margin: 0 15px;
        font-size: 14px;
    }
    
    .footer-line-4 a {
        color: #9ca3af;
        text-decoration: none;
        font-size: 14px;
    }
    
    .footer-line-3 a:hover,
    .footer-line-4 a:hover {
        color: #cbd5e1;
    }
    
    .footer-legal-single-line {
        text-align: center;
    }
    
    .footer-legal-single-line p {
        line-height: 1.8;
    }
    
    .footer-legal-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        align-items: center;
    }
    
    .consumer-protection {
        text-align: center;
        order: 1;
    }
    
    .copyright {
        text-align: center;
        order: 2;
    }
    
    .consumer-icons {
        justify-content: center;
        order: 3;
    }
    
    .footer-legal-links {
        order: 4;
    }
    
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .legal-links a {
        text-align: center;
        margin: 0;
    }
    
    .copyright {
        text-align: center;
    }
    
    .footer-credit {
        text-align: center;
        margin-top: 10px;
    }
}


/* Header Phone Button */
.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #0D1E45;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-right: 12px;
}

.btn-phone:hover {
    background: #1e3a8a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 30, 69, 0.3);
}

.btn-phone i {
    font-size: 16px;
}

/* Image Preloading Optimization - Removed duplicate hero styles that overrode gradient */
.service-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: local;
}


/* Navigation CTA Alignment Fix */
.nav-cta.desktop-only {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (min-width: 769px) {
    .nav-cta {
        display: flex !important;
        align-items: center;
        gap: 12px;
        order: 0;
        margin-right: 0;
    }
}


/* Smooth scroll to form functionality */
.scroll-to-form {
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}


/* Medical Exam Types List */
.medical-exam-types {
    margin: 24px 0 32px 0;
}

.exam-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.exam-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: white;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.exam-list li i {
    color: #10b981;
    font-size: 18px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .exam-list {
        grid-template-columns: 1fr;
    }
}


/* About Story Redesign */
.story-content-full {
    text-align: center;
    margin-bottom: 60px;
}

.story-content-full h2 {
    font-size: 36px;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-weight: 700;
}

.story-content-full > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Group Services Grid */
.group-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.service-item {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-item .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.service-item h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 600;
}

.service-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Story Highlights Updated */
.story-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

.highlight-item i {
    color: var(--primary-blue);
    font-size: 20px;
    flex-shrink: 0;
}

.highlight-item span {
    font-weight: 500;
    color: var(--text-primary);
}

/* Stats Row - Single Line with 4 Columns */
.story-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    background: var(--gradient-primary);
    color: white;
    padding: 40px;
    border-radius: 16px;
    margin-top: 48px;
}

.story-stats-row .stat {
    text-align: center;
}

.story-stats-row .stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.story-stats-row .stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
    color: white;
}

@media (max-width: 768px) {
    .story-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 32px 20px;
    }
    
    .story-stats-row .stat-number {
        font-size: 36px;
    }
    
    .story-content-full h2 {
        font-size: 28px;
    }
    
    .group-services {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .highlight-item {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .story-stats-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* =============================================================
   CLEAN CONTACT PAGE DESIGN
   ============================================================= */

/* Contact Clean Hero */
.contact-clean-hero {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-clean-wrapper {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info-side h1 {
    font-size: 48px;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-clean-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Contact Actions */
.contact-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-action-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1;
}

.contact-action-btn.primary {
    background: var(--gradient-primary);
    color: white;
}

.contact-action-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-action-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.action-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-action-btn.primary .action-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-action-btn.whatsapp .action-icon {
    background: rgba(255, 255, 255, 0.2);
}

.action-content h4 {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 600;
}

.action-content span {
    font-size: 14px;
    opacity: 0.9;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-item i {
    color: var(--primary-blue);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-detail-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-detail-item strong {
    font-weight: 600;
    color: var(--text-primary);
}

.contact-detail-item span {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Contact Form Clean */
.contact-form-clean {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.form-header-clean h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-header-clean p {
    color: var(--text-secondary);
    font-size: 15px;
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.submit-btn-clean {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn-clean:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 30, 69, 0.25);
}

.form-trust-clean {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-trust-clean i {
    color: var(--success);
}

/* Full Width Map */
.map-full-width {
    margin: 0;
    padding: 0;
    background: white;
}

.map-header-centered {
    text-align: center;
    padding: 60px 20px 40px;
    background: var(--bg-light);
}

.map-header-centered h2 {
    font-size: 36px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.map-header-centered p {
    font-size: 18px;
    color: var(--text-secondary);
}

.google-map-full {
    width: 100%;
    height: 500px;
    position: relative;
}

.google-map-full iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-actions-centered {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px 60px;
    background: var(--bg-light);
}

.map-btn-clean {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-btn-clean:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 30, 69, 0.25);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-clean-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-side h1 {
        font-size: 32px;
    }
    
    .contact-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .contact-form-clean {
        padding: 24px;
    }
    
    .map-header-centered {
        padding: 40px 20px 24px;
    }
    
    .map-header-centered h2 {
        font-size: 28px;
    }
    
    .google-map-full {
        height: 350px;
    }
    
    .map-actions-centered {
        flex-direction: column;
        align-items: center;
        padding: 24px 20px 40px;
    }
    
    .map-btn-clean {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-actions {
        gap: 12px;
    }
    
    .contact-action-btn {
        padding: 16px 20px;
    }
    
    .action-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .action-content h4 {
        font-size: 16px;
    }
    
    .action-content span {
        font-size: 13px;
    }
}


/* =============================================================
   GLASS CONTACT PAGE DESIGN
   ============================================================= */

/* Contact Glass Hero */
.contact-glass-hero {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #0D1E45 0%, #4682B4 100%);
    background-image: url('contact-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 100px 0;
    overflow: hidden;
}

.contact-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 30, 69, 0.95) 0%, rgba(37, 99, 235, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.contact-glass-wrapper {
    display: grid;
    grid-template-columns: 1fr 550px;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.contact-left-content {
    color: white;
}

.contact-text-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-glass-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.95;
}

/* Glass Contact Cards */
.glass-contact-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.glass-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.glass-contact-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.glass-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.glass-card-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card-content span {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

/* Contact Info Glass */
.contact-info-glass {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-glass-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.info-glass-item i {
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.info-glass-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-glass-item strong {
    font-weight: 600;
    font-size: 16px;
}

.info-glass-item span {
    font-size: 14px;
    opacity: 0.85;
}

/* Glass Contact Form */
.contact-form-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-form-header {
    text-align: center;
    margin-bottom: 32px;
    color: white;
}

.glass-form-header h3 {
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 600;
}

.glass-form-header p {
    font-size: 16px;
    opacity: 0.9;
}

.glass-form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.glass-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.glass-form-group label {
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.glass-form-group input,
.glass-form-group select,
.glass-form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.glass-form-group input::placeholder,
.glass-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.glass-form-group input:focus,
.glass-form-group select:focus,
.glass-form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.glass-form-group option {
    background: var(--primary-blue);
    color: white;
}

.glass-submit-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.glass-submit-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.glass-form-trust {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.glass-form-trust i {
    color: rgba(255, 255, 255, 0.9);
}

.form-message-glass {
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-message-glass.success {
    background: rgba(16, 185, 129, 0.2);
    color: white;
}

.form-message-glass.error {
    background: rgba(239, 68, 68, 0.2);
    color: white;
}

/* Glass Mobile Responsive */
@media (max-width: 768px) {
    .contact-glass-hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .contact-glass-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-text-content h1 {
        font-size: 30px;
    }
    
    .glass-contact-cards {
        flex-direction: column;
        gap: 16px;
    }
    
    .header-contact-buttons {
        display: none !important;
    }
    
    .contact-form-glass {
        padding: 24px;
    }
    
    .glass-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-text-content h1 {
        font-size: 24px;
    }
    
    .contact-glass-subtitle {
        font-size: 16px;
    }
    
    .glass-contact-card {
        padding: 12px 16px;
    }
    
    .glass-card-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .glass-card-content h4 {
        font-size: 16px;
    }
    
    .glass-card-content span {
        font-size: 14px;
    }
    
    .contact-form-glass {
        padding: 20px;
    }
}


/* Ensure desktop-only elements are hidden on mobile */
@media (max-width: 768px) {
    .desktop-only,
    .desktop-map {
        display: none !important;
    }
    
    .mobile-header-actions {
        display: flex;
    }
    
    .contact-text-content {
        text-align: center;
    }
    
    .contact-text-content h1,
    .contact-text-content .contact-glass-subtitle {
        text-align: center;
    }
    
    .mobile-map {
        display: block !important;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .desktop-map {
        display: none !important;
    }
    
    .map-header-centered {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-map {
        display: none !important;
    }
    
    .desktop-map {
        display: block !important;
    }
}

@media (min-width: 769px) {
    .mobile-header-actions {
        display: none;
    }
}


/* Map Interaction Control - Desktop */
@media (min-width: 769px) {
    .google-map-full {
        position: relative;
    }
    
    .google-map-full::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10;
        background: transparent;
        cursor: pointer;
    }
    
    .google-map-full.map-active::before {
        display: none;
    }
    
    .google-map-full::after {
        content: 'Click pentru a activa harta';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(13, 30, 69, 0.9);
        color: white;
        padding: 12px 20px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        z-index: 11;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
        white-space: nowrap;
    }
    
    .google-map-full:hover::after {
        opacity: 1;
    }
    
    .google-map-full.map-active::after {
        display: none;
    }
}


/* Thank You Page Styles */
.thank-you-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 100px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 80px;
    color: #10b981;
    margin-bottom: 30px;
}

.thank-you-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.thank-you-subtitle {
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.success-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    text-align: left;
}

.detail-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.detail-item i {
    font-size: 24px;
    color: #10b981;
    margin-top: 5px;
}

.detail-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.detail-item span {
    font-size: 14px;
    opacity: 0.8;
}

.next-steps {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    opacity: 0.8;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-buttons .btn-primary,
.action-buttons .btn-secondary {
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.action-buttons .btn-primary {
    background: white;
    color: var(--primary-blue);
}

.action-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.action-buttons .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.action-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .thank-you-hero {
        padding: 60px 0;
    }
    
    .thank-you-content h1 {
        font-size: 32px;
    }
    
    .thank-you-subtitle {
        font-size: 18px;
    }
    
    .success-icon {
        font-size: 60px;
    }
    
    .success-details {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn-primary,
    .action-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}


/* Medical Team Section */
.medical-team {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-image {
    position: relative;
}

.team-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-text h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.team-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 30px;
}

.team-benefits {
    list-style: none;
    padding: 0;
}

.team-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.team-benefits i {
    color: #10b981;
    margin-right: 12px;
    font-size: 18px;
}

/* Enhanced Service Cards with Images */
.service-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px 25px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content i {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-content h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    color: #64748b;
    line-height: 1.6;
    flex: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .team-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .team-text h2 {
        font-size: 28px;
    }
    
    .team-text p {
        font-size: 16px;
    }
    
    .medical-team {
        padding: 60px 0;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .service-image {
        height: 150px;
    }
    
    .service-content {
        padding: 20px 15px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
}

/* Glowing highlight animation for important text */
.pulse-text {
    font-weight: bold !important;
    background: linear-gradient(45deg, #007bff, #00c851, #007bff);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow-highlight 3s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
    position: relative;
}

@keyframes glow-highlight {
    0% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 5px rgba(0, 123, 255, 0.4));
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 15px rgba(0, 200, 81, 0.6));
    }
    100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 5px rgba(0, 123, 255, 0.4));
    }
}

