/* ==========================================================================
   ADALAR EVDE SAĞLIK - Complete Stylesheet & Mobile Optimized
   ========================================================================== */

:root {
    --primary-red: #1d9ebe;
    --primary-red-hover: #15839f;
    --primary-color: #1d9ebe;
    --primary-hover: #15839f;
    --text-main: #0f172a;
    --bg-dark: #0f172a;
    
    --text-dark: #0f172a;
    --text-muted: #475569;
    
    --bg-surface: #ffffff;
    --bg-card: #fafafa;
    --border-color: #eeeef0;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-pill: 50px;
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    scroll-behavior: smooth;
    background-color: var(--bg-surface);
    color: var(--text-dark);
    overflow-x: clip;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    overflow-x: clip;
}

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

ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Keyframe Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

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

/* Site Header */
.site-header {
    background: #ffffff;
    border-bottom: 1.5px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
    position: relative;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo img {
    max-height: 38px;
    width: auto;
    object-fit: contain;
}

/* Nav Menu & Active Line */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 100%;
}

.nav-menu li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    padding: 6px 8px;
    text-decoration: none;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 28px;
    height: 3.5px;
    background: var(--primary-red);
    border-radius: 4px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: var(--primary-red);
    font-weight: 800;
}

/* Header Phone Button */
.header-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-red);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.92rem;
    box-shadow: 0 4px 12px rgba(29, 158, 190, 0.28);
    transition: var(--transition);
}

.header-phone-btn:hover {
    background: var(--primary-red-hover);
    transform: translateY(-2px);
    color: #ffffff;
}

.mobile-toggle-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 6px;
}

/* Hero Section */
.hero-section {
    padding: 24px 0 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    gap: 20px;
}

.hero-content {
    padding-bottom: 20px;
}

.hero-title {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--text-dark);
    margin-bottom: 14px;
    text-transform: uppercase;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-title .red-text {
    color: var(--primary-red);
    display: block;
}

.hero-subtitle {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 28px;
    max-width: 480px;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-buttons-row {
    display: flex;
    align-items: center;
    gap: 14px;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.btn-hero-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-red);
    color: #ffffff;
    padding: 15px 32px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.96rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(29, 158, 190, 0.32);
    transition: var(--transition);
}

.btn-hero-red:hover {
    background: var(--primary-red-hover);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-hero-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff;
    padding: 15px 32px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.96rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
    text-decoration: none;
}

.btn-hero-wa svg {
    fill: #ffffff;
    color: #ffffff;
    transition: var(--transition);
}

.btn-hero-wa:hover {
    background: #128c7e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(18, 140, 126, 0.4);
}

/* Hero Image Wrap */
.hero-image-wrap {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    border-radius: 16px;
    overflow: hidden;
    animation: fadeInRight 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-image-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-image-wrap img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Services Section (Flat Cards) */
.services-section {
    padding: 36px 0 50px;
    background: #ffffff;
}

.section-header-left {
    margin-bottom: 24px;
}

.section-title-line {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-title-line::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: var(--primary-red);
    margin-top: 5px;
    border-radius: 4px;
}

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

.service-card-flat {
    background: #fafafa;
    border: 1.5px solid #f3f4f6;
    border-radius: var(--radius-md);
    padding: 28px 20px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.services-grid-4 .service-card-flat:nth-child(1) { animation-delay: 0.25s; }
.services-grid-4 .service-card-flat:nth-child(2) { animation-delay: 0.35s; }
.services-grid-4 .service-card-flat:nth-child(3) { animation-delay: 0.45s; }
.services-grid-4 .service-card-flat:nth-child(4) { animation-delay: 0.55s; }

.service-card-flat:hover {
    background: #ffffff;
    border-color: #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.service-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(29, 158, 190, 0.12);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-card-flat h3 {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.service-card-flat p {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.45;
}

.service-arrow-link {
    align-self: flex-end;
    color: var(--primary-red);
    font-size: 1.15rem;
    font-weight: 700;
}

/* Quick Contact Action Bar */
.quick-contact-bar {
    margin-top: 32px;
    background: #ffffff;
    border: 1.5px solid #f3f4f6;
    border-radius: var(--radius-md);
    padding: 20px 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.contact-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-dark);
}

.contact-item-val {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-red);
}

.contact-item-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Modern Site Footer (Dark Slate Navy Corporate Footer)
   ========================================================================== */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 3.5px solid var(--primary-red);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1.1fr 1.25fr;
    gap: 40px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo img {
    max-height: 44px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--primary-red);
    margin-top: 6px;
    border-radius: 2px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-circle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-circle-btn:hover {
    border-color: var(--primary-red);
    background: var(--primary-red);
    color: #ffffff;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list a {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links-list a:hover {
    color: #ffffff;
    padding-left: 4px;
}

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

.footer-phone-simple {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.footer-phone-simple svg {
    color: var(--primary-red);
}

.footer-phone-simple:hover {
    color: var(--primary-red);
}

.footer-wa-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-wa-link svg {
    color: #1d9ebe;
}

.footer-wa-link:hover {
    color: #1d9ebe;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 0.86rem;
    color: #64748b;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: #94a3b8;
    font-size: 0.82rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.legal-separator {
    color: #475569;
    font-size: 0.75rem;
}

/* Mobile Fixed Navigation Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #ffffff;
    border-top: 1.5px solid var(--border-color);
    padding: 8px 16px;
    height: 56px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: center;
    height: 100%;
    align-items: center;
}

.mobile-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #1d9ebe;
    transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-bar-btn:active {
    transform: scale(0.92);
}

.mobile-bar-btn svg {
    color: #1d9ebe;
    width: 25px;
    height: 25px;
}

/* Tablet Responsive Breakpoint */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 20px; }
    .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .contact-bar-grid { grid-template-columns: 1fr; gap: 16px; }
    .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

/* Mobile Responsive Breakpoint (768px and below) */
@media (max-width: 768px) {
    body { padding-bottom: 56px; }
    
    .header-inner { height: 66px; }
    .brand-logo img { max-height: 32px; }
    .header-phone-btn { display: none; }
    .mobile-toggle-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        color: #0f172a;
        cursor: pointer;
        padding: 0;
        transition: background 0.2s, border-color 0.2s;
    }
    .mobile-toggle-btn:active {
        background: #e2e8f0;
    }

    .site-header .nav-menu {
        display: none !important;
    }

    .hero-section { padding: 12px 0 0; }
    .hero-grid {
        display: flex;
        flex-direction: column;
        position: relative;
        min-height: unset;
        height: auto;
        border-radius: 16px;
        overflow: hidden;
    }

    .hero-image-wrap {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        border-radius: 16px;
        overflow: hidden;
        margin-top: 0;
    }

    .hero-image-wrap img {
        width: 100%;
        height: 100%;
        max-height: 100%;
        object-fit: cover;
        object-position: center right;
        border-radius: 16px;
    }

    .hero-image-wrap::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.7) 55%, rgba(255, 255, 255, 0.3) 100%);
        z-index: 2;
        pointer-events: none;
    }

    .hero-content {
        position: relative;
        z-index: 5;
        padding: 24px 18px;
        height: auto;
    }

    .hero-title {
        font-size: 2.1rem;
        letter-spacing: -0.8px;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 22px;
        color: #374151;
        font-weight: 600;
    }

    .hero-buttons-row { flex-direction: row; gap: 10px; width: 100%; }
    .btn-hero-red { flex: 1; padding: 13px 16px; font-size: 0.88rem; min-width: 0; }
    .btn-hero-wa  { flex: 1; padding: 13px 16px; font-size: 0.88rem; min-width: 0; }

    .services-grid-4 { grid-template-columns: 1fr 1fr; gap: 12px; }
    .service-card-flat { padding: 20px 14px; border-radius: 12px; }
    .service-icon-circle { width: 44px; height: 44px; margin-bottom: 12px; }
    .service-card-flat h3 { font-size: 0.9rem; }
    .service-card-flat p { font-size: 0.78rem; margin-bottom: 12px; }

    .quick-contact-bar { padding: 16px; margin-top: 24px; border-radius: 12px; }

    .site-footer { 
        padding: 32px 0 16px; 
        margin-top: 30px; 
    }

    .footer-top-grid { 
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px; 
        padding-bottom: 24px; 
        text-align: left; 
    }

    .brand-col { grid-column: 1 / -1; }
    .contact-col { grid-column: 1 / -1; }

    .footer-logo img {
        max-height: 36px;
        margin-bottom: 12px;
    }

    .footer-desc {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .footer-heading {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .footer-heading::after { 
        margin: 4px 0 0 0; 
    }

    .footer-socials { 
        justify-content: flex-start; 
        gap: 10px;
    }

    .footer-links-list a {
        font-size: 0.85rem;
    }

    .footer-bottom-row { 
        flex-direction: column; 
        gap: 8px; 
        text-align: left; 
        align-items: flex-start;
        padding-top: 18px;
        font-size: 0.8rem;
    }

    .mobile-bottom-bar { 
        display: block !important; 
    }
}

/* ==========================================================================
   SUBPAGES: Hizmetler, Hakkımızda, İletişim
   ========================================================================== */
.pg-cta-section + .site-footer {
    margin-top: 0;
}

/* Page Hero */
.pg-hero {
    background: #0f172a;
    padding: 60px 0 56px;
    border-bottom: 3px solid #1d9ebe;
}
.pg-hero-inner { max-width: 680px; }
.pg-badge {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #94a3b8;
    font-size: 0.76rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 18px;
    animation: fadeInUp 0.5s ease 0.08s both;
}
.pg-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.pg-desc {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 500;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

/* CTA Section */
.pg-cta-section { background: #0f172a; padding: 52px 0; }
.pg-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.pg-cta-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}
.pg-cta-text p { color: #64748b; font-size: 0.93rem; margin: 0; }
.pg-cta-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #1d9ebe;
    color: #ffffff;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.93rem;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}
.cta-btn-primary:hover { background: #15839f; transform: translateY(-2px); color: #ffffff; }
.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 13px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #94a3b8;
    border: 1px solid rgba(255,255,255,0.12);
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.cta-btn-outline:hover { color: #ffffff; border-color: rgba(255,255,255,0.3); }

/* Hizmetler — 2-Column Card Grid */
.svc-cards-section { padding: 64px 0 80px; background: #f8fafc; }
.svc-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.svc-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.22s, transform 0.22s;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.svc-cards-grid .svc-card:nth-child(1) { animation-delay: 0.1s; }
.svc-cards-grid .svc-card:nth-child(2) { animation-delay: 0.2s; }
.svc-cards-grid .svc-card:nth-child(3) { animation-delay: 0.3s; }
.svc-cards-grid .svc-card:nth-child(4) { animation-delay: 0.4s; }
.svc-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.07); transform: translateY(-3px); }
.svc-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}
.svc-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.svc-icon-red  { background: #1d9ebe; color: #ffffff; }
.svc-icon-dark { background: #0f172a; color: #ffffff; }
.svc-card-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem; font-weight: 900;
    color: #f1f5f9; line-height: 1;
    user-select: none;
}
.svc-card-body { display: flex; flex-direction: column; flex: 1; margin-bottom: 28px; }
.svc-card-cat {
    font-size: 0.72rem; font-weight: 800;
    color: #1d9ebe; text-transform: uppercase;
    letter-spacing: 0.6px; display: block; margin-bottom: 6px;
}
.svc-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem; font-weight: 900;
    color: #0f172a; margin-bottom: 12px;
    line-height: 1.2; letter-spacing: -0.2px;
}
.svc-card-desc {
    font-size: 0.9rem; color: #64748b;
    line-height: 1.7; margin-bottom: 20px;
}
.svc-card-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.svc-card-features li {
    font-size: 0.85rem; font-weight: 600;
    color: #334155; padding-left: 18px;
    position: relative; line-height: 1.4;
}
.svc-card-features li::before {
    content: ''; position: absolute;
    left: 0; top: 6px;
    width: 7px; height: 7px;
    border-radius: 50%; background: #1d9ebe;
}
.svc-card-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 26px;
    background: #1d9ebe; color: #ffffff;
    border-radius: 50px;
    font-weight: 800; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.5px;
    align-self: flex-start;
    transition: background 0.2s, transform 0.2s;
    margin-top: auto;
}
.svc-card-btn:hover { background: #15839f; transform: translateY(-2px); color: #ffffff; }

/* Stats Bar */
.stats-bar { background: #1d9ebe; padding: 22px 0; animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item { padding: 10px 16px; border-right: 1px solid rgba(255,255,255,0.2); animation: fadeInUp 0.5s ease both; }
.stats-grid .stat-item:nth-child(1) { animation-delay: 0.15s; }
.stats-grid .stat-item:nth-child(2) { animation-delay: 0.25s; }
.stats-grid .stat-item:nth-child(3) { animation-delay: 0.35s; }
.stats-grid .stat-item:nth-child(4) { animation-delay: 0.45s; }
.stat-item:last-child { border-right: none; }
.stat-item strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem; font-weight: 900;
    color: #ffffff; line-height: 1;
}
.stat-item span {
    display: block;
    font-size: 0.74rem; font-weight: 700;
    color: rgba(255,255,255,0.82);
    text-transform: uppercase; letter-spacing: 0.4px;
    margin-top: 5px;
}

/* About Section */
.about-section { padding: 64px 0 80px; background: #ffffff; }
.about-block {
    display: block;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.block-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.red-badge  { background: rgba(29, 158, 190, 0.12); color: #1d9ebe; }
.dark-badge { background: #f1f5f9; color: #0f172a; }
.about-block-body h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem; font-weight: 900;
    color: #0f172a; margin-bottom: 14px;
    letter-spacing: -0.3px; line-height: 1.2;
}
.about-block-body p {
    font-size: 0.95rem; color: #475569;
    line-height: 1.78; margin-bottom: 14px;
}
.about-block-body p:last-child { margin-bottom: 0; }
.about-divider { height: 1px; background: #f1f5f9; margin: 48px 0; }

.about-services-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 14px; margin-top: 24px;
}
.about-svc-card {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 20px;
    background: #f8fafc; border: 1px solid #e2e8f0;
    border-radius: 14px;
    transition: box-shadow 0.2s, background 0.2s;
    animation: fadeInUp 0.5s ease both;
}
.about-services-grid .about-svc-card:nth-child(1) { animation-delay: 0.1s; }
.about-services-grid .about-svc-card:nth-child(2) { animation-delay: 0.2s; }
.about-services-grid .about-svc-card:nth-child(3) { animation-delay: 0.3s; }
.about-services-grid .about-svc-card:nth-child(4) { animation-delay: 0.4s; }
.about-svc-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.05); background: #ffffff; }
.about-svc-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: #0f172a; color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.about-svc-card h3 {
    font-size: 0.88rem; font-weight: 800; color: #0f172a;
    margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.2px;
}
.about-svc-card > div > p { font-size: 0.81rem; color: #64748b; margin: 0; line-height: 1.5; }

.values-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.value-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px 20px;
    transition: box-shadow 0.2s, background 0.2s, border-color 0.2s;
    animation: fadeInUp 0.5s ease both;
}
.values-cards-grid .value-card:nth-child(1) { animation-delay: 0.1s; }
.values-cards-grid .value-card:nth-child(2) { animation-delay: 0.2s; }
.values-cards-grid .value-card:nth-child(3) { animation-delay: 0.3s; }
.values-cards-grid .value-card:nth-child(4) { animation-delay: 0.4s; }

.value-card:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.value-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #0f172a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.value-card h3 {
    font-size: 0.93rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.value-card p {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section { padding: 60px 0 80px; background: #f8fafc; }
.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 32px; align-items: start;
}
.contact-info-col { display: flex; flex-direction: column; gap: 12px; }
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 18px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    transition: all 0.25s ease;
    text-decoration: none;
    animation: fadeInUp 0.5s ease both;
}
.contact-info-col .contact-info-card:nth-child(1) { animation-delay: 0.1s; }
.contact-info-col .contact-info-card:nth-child(2) { animation-delay: 0.2s; }
.contact-info-col .contact-info-card:nth-child(3) { animation-delay: 0.3s; }
.contact-info-col .contact-info-card:nth-child(4) { animation-delay: 0.4s; }

.contact-info-card:hover {
    border-color: #1d9ebe;
    box-shadow: 0 8px 24px rgba(29, 158, 190, 0.14);
    transform: translateY(-3px);
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #f1f5f9;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s ease, color 0.25s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: #1d9ebe;
    color: #ffffff;
}

.contact-info-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.contact-info-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
}

.contact-info-val {
    font-size: 0.98rem;
    font-weight: 800;
    color: #0f172a;
    transition: color 0.25s ease;
}

.contact-info-val.address-text {
    font-size: 0.85rem;
    white-space: normal;
    line-height: 1.4;
}

.contact-info-card:hover .contact-info-val {
    color: #1d9ebe;
}

.directions-link {
    font-size: 0.76rem;
    font-weight: 800;
    color: #1d9ebe;
    margin-top: 4px;
    display: inline-block;
    letter-spacing: 0.3px;
}

.contact-hours-card {
    padding: 20px 18px; background: #ffffff;
    border: 1px solid #e2e8f0; border-radius: 14px;
    animation: fadeInUp 0.5s ease 0.45s both;
}
.contact-hours-title {
    font-size: 0.82rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.4px;
    color: #0f172a; margin-bottom: 14px;
}
.contact-hours-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; border-bottom: 1px solid #f1f5f9; font-size: 0.87rem;
}
.contact-hours-row:last-of-type { border-bottom: none; }
.contact-hours-row span   { color: #64748b; }
.contact-hours-row strong { color: #0f172a; font-weight: 700; }
.contact-hours-note { font-size: 0.78rem; color: #94a3b8; margin-top: 10px; line-height: 1.5; }

.contact-form-col { position: sticky; top: 96px; }
.contact-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.contact-form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #334155;
}
.form-field input,
.form-field textarea,
.form-field select {
    padding: 12px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 9px;
    font-size: 0.9rem;
    color: #0f172a;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    font-family: inherit;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #94a3b8; }
.form-field input:focus,
.form-field textarea:focus {
    border-color: #1d9ebe;
    box-shadow: 0 0 0 3px rgba(29,158,190,0.1);
}
.form-field textarea { resize: vertical; min-height: 112px; }
.form-submit-btn {
    background: #1d9ebe;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    align-self: flex-start;
    font-family: inherit;
}
.form-submit-btn:hover { background: #15839f; transform: translateY(-2px); }
.form-success-msg {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    border-radius: 9px;
    padding: 14px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 18px;
}
.form-error-msg {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-radius: 9px;
    padding: 14px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 18px;
}

/* Transfer Request Form (nakil-talebi.php) */
.request-section {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.request-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.wa-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #1d9ebe;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    box-shadow: 0 4px 16px rgba(29, 158, 190, 0.25);
    font-family: inherit;
}

.wa-submit-btn:hover {
    background: #15839f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 158, 190, 0.35);
    color: #ffffff;
}

.form-note-box {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0369a1;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Subpages Responsive */
@media (max-width: 1024px) {
    .svc-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .about-block { grid-template-columns: 140px 1fr; gap: 36px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-col { position: static; }
    .pg-cta-inner { flex-direction: column; text-align: center; gap: 28px; }
    .pg-cta-actions { justify-content: center; }
}

@media (max-width: 768px) {
    .pg-hero { padding: 40px 0 36px; }
    .pg-title { font-size: 2rem; }

    .svc-cards-section { padding: 40px 0 50px; }
    .svc-cards-grid { grid-template-columns: 1fr; gap: 16px; }
    .svc-card { padding: 24px 20px; }
    .svc-card-num { font-size: 2.2rem; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); }
    .stat-item:nth-child(1), .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.2); }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

    .about-section { padding: 40px 0 50px; }
    .about-block { grid-template-columns: 1fr; gap: 14px; }
    .about-block-label { position: static; }
    .about-block-body h2 { font-size: 1.3rem; }
    .about-services-grid { grid-template-columns: 1fr; }
    .values-cards-grid { grid-template-columns: 1fr; }
    .about-divider { margin: 32px 0; }

    .contact-section, .request-section { padding: 40px 0 50px; }
    .contact-form-card, .request-card { padding: 24px 16px; }
    .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
    .form-submit-btn, .wa-submit-btn { width: 100%; align-self: stretch; text-align: center; }

    .pg-cta-section { padding: 36px 0; }
    .pg-cta-text h2 { font-size: 1.25rem; }
    .pg-cta-actions { flex-direction: column; width: 100%; }
    .cta-btn-primary, .cta-btn-outline {
        width: 100%; justify-content: center; text-align: center;
    }
}

/* Contact Map Section */
.contact-map-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.contact-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 18px;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-map-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 220px;
}

.contact-map-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(29, 158, 190, 0.1);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-map-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.contact-map-addr {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.contact-map-btn {
    padding: 10px 20px !important;
    font-size: 0.82rem !important;
    white-space: nowrap !important;
    flex-shrink: 0;
}

.contact-map-frame-wrap {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 640px) {
    .contact-map-header {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 12px 10px 16px;
    }
    .contact-map-info {
        min-width: 100%;
    }
    .contact-map-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        box-sizing: border-box;
    }
    .contact-map-frame-wrap {
        height: 300px;
    }
}

/* ==========================================================================
   ADALAR ISLAND CARDS (With Authentic Photos)
   ========================================================================== */
.island-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.island-card {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.island-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.island-card-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e2e8f0;
}

.island-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.island-card:hover .island-card-img {
    transform: scale(1.08);
}

.island-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.island-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.island-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.island-card-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

.island-card-footer {
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.island-card-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #10b981;
}

.island-card-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 1.8s infinite;
}

.island-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(29, 158, 190, 0.08);
    padding: 6px 14px;
    border-radius: 50px;
    transition: var(--transition);
}

.island-card-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* ==========================================================================
   FAQ ACCORDION SECTION
   ========================================================================== */
.faq-section {
    padding: 70px 0;
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
}

.faq-header-wrap {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.faq-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 1.2px;
    background: rgba(29, 158, 190, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.faq-title {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 10px;
}

.faq-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    border-color: #cbd5e1;
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 10px 28px rgba(29, 158, 190, 0.1);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    user-select: none;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-main);
    transition: color 0.2s;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(29, 158, 190, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s, color 0.3s;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
    padding: 0 24px;
}

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

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 1.6rem;
    }
    .faq-question {
        padding: 16px 18px;
        font-size: 0.96rem;
    }
    .faq-answer {
        padding: 0 18px;
    }
    .faq-item.active .faq-answer {
        padding: 0 18px 18px;
    }
}

/* ==========================================================================
   FULL BACKGROUND HERO SLIDER (Clean, Modern, No Glow Effects)
   ========================================================================== */
.full-hero-slider {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    overflow: hidden;
    padding: 100px 0 90px;
}

.hero-bg-slider-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 6s cubic-bezier(0.1, 0, 0.2, 1);
    transform: scale(1.06);
}

.hero-bg-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.88) 65%, rgba(15, 23, 42, 0.96) 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-fg-container {
    position: relative;
    z-index: 5;
    width: 100%;
}

.hero-content-center {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-kicker {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #38bdf8;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeInDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-title-main {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.6px;
    color: #ffffff;
    margin-bottom: 14px;
    text-transform: none;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-title-main .highlight-cyan {
    color: #1d9ebe;
    display: inline;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: #cbd5e1;
    line-height: 1.55;
    margin-bottom: 28px;
    max-width: 680px;
    font-weight: 400;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    flex-wrap: wrap;
}

.btn-hero-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1d9ebe;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.02rem;
    letter-spacing: 0.3px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-hero-call:hover {
    background: #15839f;
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.02rem;
    letter-spacing: 0.3px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-hero-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    color: #ffffff;
}

.hero-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    color: #94a3b8;
    font-size: 0.88rem;
    font-weight: 500;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e2e8f0;
}

.hero-trust-item svg {
    color: #38bdf8;
}

.hero-trust-dot {
    color: #64748b;
    font-size: 0.75rem;
}

/* Hero Background Navigation Buttons (Clean Minimalist - No Background) */
.hero-bg-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
    opacity: 0.7;
    padding: 0;
}

.hero-bg-nav-btn:hover {
    background: transparent;
    color: #1d9ebe;
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.hero-bg-nav-btn.prev-btn { left: 24px; }
.hero-bg-nav-btn.next-btn { right: 24px; }

/* Hero Slider Footer */
.hero-bg-slider-footer {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Dots / Indicators */
.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

.hero-slider-dot.active {
    width: 28px;
    border-radius: 50px;
    background: #1d9ebe;
}

/* Progress bar (Bottom of Hero) */
.hero-slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 10;
}

.hero-slider-progress-bar {
    height: 100%;
    width: 0%;
    background: #1d9ebe;
    transition: width 0.1s linear;
}

@media (max-width: 1024px) {
    .hero-title-main { font-size: 2.8rem; }
    .hero-bg-nav-btn { display: none; }
}

@media (max-width: 768px) {
    .full-hero-slider {
        min-height: 480px;
        padding: 48px 0 56px;
    }
    .hero-kicker {
        font-size: 0.76rem;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }
    .hero-title-main {
        font-size: 2rem;
        letter-spacing: -0.4px;
        margin-bottom: 12px;
    }
    .hero-subtitle {
        font-size: 0.96rem;
        margin-bottom: 22px;
        line-height: 1.5;
    }
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-bottom: 20px;
    }
    .btn-hero-call, .btn-hero-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
        font-size: 0.95rem;
    }
    .hero-trust-bar {
        font-size: 0.8rem;
        gap: 10px;
    }
    .hero-bg-slider-footer {
        padding: 0 16px;
        bottom: 12px;
    }
}

/* ==========================================================================
   SITE PRELOADER (Clean White Background with Soft Smooth Logo Animation)
   ========================================================================== */
.site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s ease;
    pointer-events: all;
}

.site-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: preloaderLogoEnter 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.preloader-logo {
    max-width: 240px;
    width: 75vw;
    height: auto;
    object-fit: contain;
    display: block;
}

.preloader-bar {
    width: 130px;
    height: 2.5px;
    background: #f1f5f9;
    border-radius: 99px;
    overflow: hidden;
    position: relative;
}

.preloader-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #1d9ebe;
    border-radius: 99px;
    animation: preloaderProgress 0.85s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes preloaderLogoEnter {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes preloaderProgress {
    0% {
        width: 0%;
    }
    60% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

/* ==========================================================================
   MOBILE DRAWER NAVIGATION (Slide-in Panel with Blur Backdrop)
   ========================================================================== */
.mobile-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.mobile-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #ffffff;
    z-index: 10002;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.active {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.drawer-brand-logo img {
    max-height: 32px;
    width: auto;
    display: block;
}

.drawer-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.drawer-close-btn:hover, .drawer-close-btn:active {
    background: #e2e8f0;
    color: #0f172a;
}

.mobile-drawer-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    overflow-y: auto;
}

.drawer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.drawer-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    border-radius: 12px;
    color: #1e293b;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.drawer-nav-link svg {
    color: #94a3b8;
    transition: transform 0.2s;
}

.drawer-nav-link:hover,
.drawer-nav-link.active {
    background: rgba(29, 158, 190, 0.08);
    color: #1d9ebe;
}

.drawer-nav-link.active svg {
    color: #1d9ebe;
}

.drawer-nav-link.drawer-nav-highlight {
    background: #1d9ebe;
    color: #ffffff;
    margin-top: 6px;
}

.drawer-nav-link.drawer-nav-highlight svg {
    color: #ffffff;
}

.drawer-nav-link.drawer-nav-highlight:hover {
    background: #15839f;
}

.drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.drawer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.drawer-btn-call {
    background: #f8fafc;
    color: #0f172a;
    border: 1.5px solid #e2e8f0;
}

.drawer-btn-call svg {
    color: #1d9ebe;
}

.drawer-btn-wa {
    background: #25d366;
    color: #ffffff;
}

.drawer-btn-wa svg {
    fill: #ffffff;
}




