/* Core Font */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #0b1b32;
    --accent-color: #ff6600;
    --bg-color: #0b1426;
    --bg-dark: #0b1426;
    --text-color: #e5ecf8;
    --text-muted: #9fb1c8;
    --text-subtle: #b6c3d8;
    --white: #ffffff;
    --gray-light: #1c2940;
    --footer-bg: linear-gradient(160deg, #0b1426 0%, #0f1e3a 60%, #0a1020 100%);
    --success-color: #1ec28f;
    --container-width: 1200px;
    --border-radius: 16px;
    --transition-speed: 0.3s;
    --box-shadow: 0 18px 38px rgba(0,0,0,0.32);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', 'Manrope', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}
html { overflow-x: hidden; }
h1, h2 { color: #ffffff !important; font-weight: 800; letter-spacing: -0.4px; }
h3, h4 { color: #f2f5ff !important; font-weight: 700; letter-spacing: -0.2px; }
p, li, span { color: var(--text-muted) !important; line-height: 1.7; }
.eyebrow { color: #9ad7ff; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
a { text-decoration: none; color: inherit; transition: all var(--transition-speed) ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }

/* Premium Header */
.ak-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(0px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}
.ak-header::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.ak-header.is-scrolled {
    background: rgba(11, 20, 38, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.ak-header.is-scrolled::after {
    opacity: 1;
}
.ak-header__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: padding 0.3s ease;
    min-height: 80px;
}
.ak-header.is-scrolled .ak-header__inner {
    padding: 12px 30px;
    min-height: 70px;
}
.ak-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    flex-shrink: 0;
    min-width: fit-content;
    margin-right: 30px;
}

/* === LOGO - OPTİMİZE EDİLDİ === */
.ak-logo-img {
    height: 65px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

.ak-header.is-scrolled .ak-logo-img {
    height: 55px;
}

@media (max-width: 768px) {
    .ak-logo {
        margin-right: 20px;
    }
    .ak-logo-img {
        content: url('/assets_main/img/akinlogomobil.png');
        height: auto;
        width: 90px;
        max-width: 90px;
    }
    .ak-header.is-scrolled .ak-logo-img {
        width: 80px;
        max-width: 80px;
    }
    .ak-header__inner {
        padding: 12px 16px;
    }
    .ak-header.is-scrolled .ak-header__inner {
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .ak-logo {
        margin-right: 12px;
    }
    .ak-logo-img {
        content: url('/assets_main/img/akinlogomobil.png');
        width: 75px;
        height: auto;
        max-width: 75px;
    }
    .ak-header.is-scrolled .ak-logo-img {
        width: 65px;
        max-width: 65px;
    }
}

.ak-nav { display: flex; gap: 18px; align-items: center; margin-left: auto; }
.ak-nav__link {
    position: relative;
    padding: 8px 4px;
    color: #e8edf6;
    text-decoration: none;
    transition: color 0.25s ease;
    font-weight: 500;
}
.ak-nav__link::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}
.ak-nav__link:hover { color: #ffffff; }
.ak-nav__link:hover::after { transform: scaleX(1); }
.ak-nav__link.active { color: #ffffff; }
.ak-nav__link.active::after { transform: scaleX(1); }

/* Desktop Dropdown */
.ak-nav__dropdown {
    position: relative;
}
.ak-nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(11, 20, 38, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 100;
}
.ak-nav__dropdown:hover .ak-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ak-nav__dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}
.ak-nav__dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding-left: 20px;
}
.ak-nav__dropdown-menu a.active {
    background: rgba(255,122,26,0.15);
    color: var(--accent-color);
}

/* Overlay */
.ak-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}
.ak-overlay.open {
    opacity: 1;
    visibility: visible;
}

.ak-actions { display: flex; align-items: center; gap: 12px; }

/* Premium Burger Button */
.ak-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px; 
    height: 48px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    z-index: 1002;
}
.ak-burger:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.ak-burger:active {
    transform: translateY(1px);
}
.ak-burger span {
    display: block;
    height: 2px; 
    width: 24px;
    background: #e5ecf8;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
/* Specific Close Button Styles (inside mobile menu) */
.ak-burger--close {
    background: transparent;
    border-color: transparent;
    width: 40px;
    height: 40px;
}
.ak-burger--close:hover {
    background: rgba(255,255,255,0.1);
    transform: rotate(90deg);
}
.ak-burger--close span {
    position: absolute;
    width: 28px;
}
.ak-burger--close span:first-child { 
    transform: rotate(45deg); 
}
.ak-burger--close span:nth-child(2) { 
    opacity: 0; 
    transform: translateX(10px);
}
.ak-burger--close span:last-child { 
    transform: rotate(-45deg); 
}

@media (max-width: 1024px) {
    .ak-nav { display: none; }
    .ak-burger { display: flex; }
}

/* Premium Mobile Menu */
.ak-mobile {
    position: fixed;
    inset: 0 0 0 auto;
    width: 85%;
    max-width: 360px;
    background: rgba(11, 20, 38, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 25px;
}
.ak-mobile.open { transform: translateX(0); }
.ak-mobile__top { 
    display: flex; 
    align-items: center; 
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ak-mobile__top .ak-logo {
    margin-right: auto;
}
.ak-mobile__top .ak-logo-img {
    content: url('/assets_main/img/akinlogomobil.png');
    width: 75px;
    height: auto;
    max-width: 75px;
}
.ak-mobile__links { 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
}
.ak-mobile__link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 12px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    overflow: hidden;
}
.ak-mobile__link:hover, 
.ak-mobile__link.active {
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    padding-left: 26px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.ak-mobile__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--accent-color);
    transition: height 0.3s ease;
    border-radius: 0 4px 4px 0;
}
.ak-mobile__link:hover::before,
.ak-mobile__link.active::before {
    height: 60%;
}

/* Premium Dropdown in Mobile */
.ak-mobile__dropdown-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.ak-mobile__dropdown-toggle:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}
.ak-mobile__dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    margin: 5px 0 10px;
}
.ak-mobile__dropdown.active .ak-mobile__dropdown-menu {
    max-height: 500px;
}
.ak-mobile__dropdown-link {
    display: block;
    padding: 12px 20px 12px 35px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
    border-left: 2px solid transparent;
}
.ak-mobile__dropdown-link:hover {
    color: var(--accent-color);
    border-left-color: var(--accent-color);
    background: rgba(255,255,255,0.02);
}

/* Buttons */
.btn,
.hero-btn,
.cta-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 14px;
    font-weight: 800;
    letter-spacing: 0.2px;
    cursor: pointer;
    border: none;
}
.btn-primary,
.hero-btn,
.cta-button a {
    background: linear-gradient(135deg, #ff7a1a, #ff5c00);
    color: #fff;
    box-shadow: 0 14px 32px rgba(255,92,0,0.25);
}
.btn-primary:hover,
.hero-btn:hover,
.cta-button a:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(255,92,0,0.32); }
.btn-ghost { background: rgba(15,23,42,0.06); color: var(--text-color); border: 1px solid var(--gray-light); }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.8); color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline-light:hover { background: rgba(255,255,255,0.16); }
.cta-button a {
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 14px 32px rgba(255,92,0,0.25);
}

/* Global dark hero/page headers for other pages */
.page-header,
.hero-section {
    background: linear-gradient(135deg, #0b1426 0%, #0f1f3a 100%) !important;
    color: #ffffff !important;
    padding: 90px 0 !important;
    position: relative;
    overflow: hidden;
}
.hero-section {
    min-height: 60vh;
}
.hero {
    min-height: 70vh;
}
.page-header::after,
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,122,26,0.18), transparent 40%), radial-gradient(circle at 80% 10%, rgba(0,180,255,0.14), transparent 45%);
    pointer-events: none;
}
.page-header .container,
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Force light sections to dark mode */
section[style*="background: white"],
section[style*="#f4f4f4"],
section[style*="#ffffff"] {
    background: #0b1426 !important;
    color: #e5ecf8 !important;
}
section[style*="color: #333"],
section[style*="#666"] {
    color: #cbd5e1 !important;
}

/* Generic card fix for legacy pages */
.page-header h1, .hero-section h1,
.page-header h2, .hero-section h2,
.page-header p,  .hero-section p {
    color: #e5ecf8 !important;
}

/* Legacy inline white backgrounds -> dark surfaces */
[style*="background: white"],
[style*="background:#fff"],
[style*="#ffffff"],
[style*="#fff"] {
    background: rgba(16,27,48,0.92) !important;
    color: #e5ecf8 !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    box-shadow: 0 18px 38px rgba(0,0,0,0.35) !important;
}
[style*="color: #333"],
[style*="color: #555"],
[style*="color: #666"] {
    color: #cbd5e1 !important;
}

/* Legacy inline white CTA buttons -> orange gradient */
a[style*="background: white"],
button[style*="background: white"] {
    background: linear-gradient(135deg, #ff7a1a, #ff5c00) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,92,0,0.4) !important;
    box-shadow: 0 14px 32px rgba(255,92,0,0.32) !important;
}

/* Tables dark theme */
table {
    background: rgba(16,27,48,0.92);
    color: #e5ecf8;
    border: 1px solid rgba(255,255,255,0.12);
    border-collapse: collapse;
}
th, td {
    border: 1px solid rgba(255,255,255,0.12);
    padding: 10px;
    color: #cbd5e1;
}


/* ESKİ HEADER KALINTILAR TEMİZLENDİ - ARTIK .ak-header KULLANILIYOR */
.logo { display: flex; align-items: center; gap: 12px; }
.nav-menu { display: flex; align-items: center; }
.nav-menu ul { display: flex; gap: 18px; align-items: center; }
.nav-menu a { color: #e5ecf8; font-weight: 700; padding: 10px 12px; border-radius: 12px; transition: color .2s ease, background .2s ease; }
.nav-menu a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.mobile-menu-toggle { display: none; background: none; border: none; color: #e5ecf8; font-size: 1.5rem; cursor: pointer; }

/* Cards & Surfaces */
.showcase-card,
.pricing-card,
.process-step,
.card-soft {
    background: #ffffff;
    border-radius: var(--border-radius);
    border: 1px solid #e6eaf3;
    box-shadow: var(--box-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}
.showcase-card:hover,
.pricing-card:hover,
.process-step:hover,
.card-soft:hover {
    transform: translateY(-6px);
    border-color: rgba(15,44,89,0.12);
    box-shadow: 0 18px 38px rgba(9,20,46,0.16);
}
.card-gradient-header { background: linear-gradient(135deg, #111c35, #0c2b58); color: #fff; }

.process-step { padding: 26px; text-align: center; }
.step-number { width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; background: #0f2c59; color: #fff; font-weight: 800; box-shadow: 0 10px 22px rgba(15,44,89,0.3); }

.pricing-card { padding: 32px 26px; position: relative; text-align: center; }
.pricing-card.featured { border: 2px solid var(--primary-color); transform: scale(1.02); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent-color); color: #fff; padding: 8px 18px; border-radius: 20px; font-weight: 800; box-shadow: 0 10px 24px rgba(255,92,0,0.25); }
.pricing-price { font-size: 2.2rem; font-weight: 800; color: var(--primary-color); margin: 16px 0; }
.pricing-features { list-style: none; padding: 0; margin: 20px 0; text-align: left; }
.pricing-features li { padding: 10px 0; border-bottom: 1px solid #edf0f5; color: #4b5563; display: flex; align-items: center; gap: 10px; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features i { color: var(--success-color); }

.ak-region-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 640px) { /* tablet */
    .ak-region-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) { /* desktop */
    .ak-region-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.badge-region {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    color: #eef2f7;
    font-weight: 700;
    letter-spacing: 0.1px;
    transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.badge-region:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}
.badge-region::before {
    content: '';
    width: 18px;
    height: 18px;
    display: inline-block;
    background: var(--accent-color);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 22s7-7.2 7-12a7 7 0 10-14 0c0 4.8 7 12 7 12z' stroke='%23fff' stroke-width='1.8' fill='none'/%3E%3Ccircle cx='12' cy='10' r='2.6' fill='%23fff'/%3E%3C/svg%3E") no-repeat center / contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 22s7-7.2 7-12a7 7 0 10-14 0c0 4.8 7 12 7 12z' stroke='%23fff' stroke-width='1.8' fill='none'/%3E%3Ccircle cx='12' cy='10' r='2.6' fill='%23fff'/%3E%3C/svg%3E") no-repeat center / contain;
}
.badge-region__icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    color: var(--accent-color);
    flex-shrink: 0;
}

/* FAQ */
details { background: #fff; border: 1px solid #e6eaf3; border-radius: 12px; margin-bottom: 12px; box-shadow: 0 10px 22px rgba(9,20,46,0.08); }
summary { padding: 18px; cursor: pointer; font-weight: 700; color: var(--text-color); display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--accent-color); transition: transform 0.3s; }
details[open] summary::after { transform: rotate(180deg); }
details > div { padding: 0 18px 18px; color: var(--text-muted); }

/* Mobile Menu */
@media (max-width: 900px) {
    .nav-menu { display: none; position: fixed; top: 0; right: 0; width: 78%; max-width: 340px; height: 100vh; background: rgba(11,18,38,0.98); backdrop-filter: blur(12px); padding: 100px 24px 40px; box-shadow: -8px 0 30px rgba(0,0,0,0.25); }
    .nav-menu ul { flex-direction: column; gap: 12px; }
    .nav-menu a { width: 100%; padding: 12px; color: #e5ecf8; border-radius: 10px; border: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.02); }
    .nav-menu a:hover { background: rgba(255,255,255,0.08); color: #fff; }
    .mobile-menu-toggle { display: block; }
    body.menu-open { overflow: hidden; }
}

/* Footer */
.main-footer {
    background: var(--footer-bg);
    color: #e2e8f0;
    padding: 70px 0 20px;
    position: relative;
    overflow: hidden;
}
.main-footer a { color: inherit; }
.main-footer a:hover { color: var(--accent-color); }

/* Utility */
.text-muted { color: var(--text-muted); }
.gray-surface { background: #f2f4f8; border: 1px solid #e6eaf3; border-radius: 12px; padding: 16px; }

/* Responsive base */
@media (max-width: 768px) {
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.6rem !important; }
    .cta-button a { padding: 12px 16px; font-size: 0.95rem; }
}
[style*="#991b1b"],
[style*="#dc2626"],
[style*="#333;"],
[style*="#666;"],
[style*="#555;"] {
    color: #cbd5e1 !important;
}
[style*="background: #fee2e2"],
[style*="#fef2f2"],
[style*="background:#fee2e2"],
[style*="background:#fef2f2"] {
    background: rgba(16,27,48,0.92) !important;
    color: #e5ecf8 !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
}
.text-contrast-strong { color: #ffffff !important; font-weight: 800; }
.text-contrast-medium { color: #f2f5ff !important; font-weight: 700; }
.text-contrast-soft { color: #cbd5e1 !important; }

/* Force legacy inline headings to light */
[style*="font-size"][style*="color: #3"], 
[style*="font-size"][style*="#000"] {
    color: #ffffff !important;
}
[style*="color: var(--primary-color)"] {
    color: #ff9a3c !important;
}
[style*="color: #dc2626"] {
    color: #ff7a1a !important;
}

/* Sticky Acil Buton - Restored */
.sticky-emergency {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.sticky-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    color: white;
}

.sticky-btn.phone {
    background: linear-gradient(135deg, #ff7a1a, #ff5c00);
}

.sticky-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 8px 24px rgba(255,122,26,0.6), 0 0 0 10px rgba(255,122,26,0.1); }
}

@media (max-width: 768px) {
    .sticky-emergency {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }
    .sticky-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }
}

/* Premium Advantage Cards - Restored */
.advantage-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.25);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.advantage-card h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    font-family: 'Manrope', sans-serif;
}

.advantage-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .advantage-card {
        padding: 30px 20px;
    }
    .advantage-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

