/* ============================================
   Avrupa Oto Ekspertiz - Stylesheet
   ============================================ */

:root {
    --primary: #0f2c4e;
    --primary-light: #1a3a63;
    --secondary: #e02321;
    --secondary-light: #f03e3e;
    --dark: #0d1b2a;
    --darker: #060e17;
    --light: #f8fafc;
    --white: #ffffff;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.mobile-menu-header {
    display: none;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.main-header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1400px;
    z-index: 1000;
    background: rgba(13, 27, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: var(--transition);
    padding: 10px 24px;
}

.main-header.scrolled {
    background: rgba(13, 27, 42, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 8px 24px;
}

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

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

.main-header.scrolled .logo img {
    height: 40px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-item.active .nav-link {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.has-dropdown {
    position: relative;
}

.has-dropdown .nav-link i {
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.3s;
    opacity: 0.7;
}

.has-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 220px;
    background: rgba(18, 32, 50, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    padding: 8px 0;
    overflow: hidden;
}

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

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SLIDER
   ============================================ */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--dark);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.4));
    z-index: 2;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: var(--container-width);
    padding: 0 20px;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.slide-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.3s;
}

.slide.active .slide-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.slide-content p {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.5s;
}

.slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.slide .btn-primary {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.7s, background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.slide.active .btn-primary {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 104, 36, 0.3);
}

.slide.active .btn-primary:hover {
    transform: translateY(-2px);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    pointer-events: none;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    pointer-events: all;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

/* ============================================
   QUICK ACCESS BOXES
   ============================================ */

.quick-access {
    padding: 60px 0 40px;
    background: var(--light);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.quick-box {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.quick-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.quick-box i {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.quick-box h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.quick-box p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.4;
}

/* ============================================
   KPI / STATS
   ============================================ */

.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(232, 104, 36, 0.1);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 20px;
    color: var(--white);
}

.stat-icon {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span {
    color: var(--secondary);
}

.stat-label {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.9;
}

/* ============================================
   PACKAGES
   ============================================ */

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

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

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

.section-header p {
    font-size: 16px;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.package-card.featured {
    border-color: var(--secondary);
    transform: scale(1.03);
}

.package-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.package-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-bottom-left-radius: var(--radius-md);
}

.package-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.package-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.package-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
}

.package-price small {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
}

.package-list {
    margin-bottom: auto;
    flex: 1;
}

.package-list li:nth-child(n+5) {
    display: none;
}

.package-list.expanded li:nth-child(n+5) {
    display: flex;
}

.package-list li {
    padding: 10px 0;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.package-list li i {
    color: var(--secondary);
    font-size: 13px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 24px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 16px;
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}

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

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

.testimonial-author h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.testimonial-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-light);
    background: var(--white);
    color: var(--primary);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav button:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

/* ============================================
   MAP
   ============================================ */

.map-section {
    width: 100%;
    height: 400px;
    background: #e2e8f0;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.3);
}

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

.main-footer {
    background: var(--darker);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 4fr 2fr 2fr 2fr;
    gap: 32px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-slogan {
    font-size: 15px;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-col ul li a,
.footer-col ul li span {
    font-size: 14px;
    color: var(--gray-light);
    transition: var(--transition);
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: var(--secondary);
    font-size: 14px;
    width: 18px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: var(--gray);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

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

@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-card.featured {
        transform: none;
    }

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

    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }

    .package-card {
        padding: 28px 20px;
    }
}

@media (max-width: 768px) {
    .main-header {
        top: 12px;
        width: calc(100% - 32px);
        border-radius: 14px;
        padding: 14px 20px;
    }

    .main-header.scrolled {
        padding: 12px 20px;
    }

    .nav-container {
        justify-content: center;
        position: relative;
        min-height: 40px;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo img {
        height: 40px;
    }

    .mobile-toggle {
        position: absolute;
        right: 0;
        display: flex;
        gap: 6px;
    }

    .mobile-toggle span {
        width: 28px;
        height: 2.5px;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(160deg, rgba(15,44,78,0.97) 0%, rgba(6,14,23,0.98) 100%);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 0;
        gap: 0;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }

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

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .mobile-menu-header .menu-title {
        color: var(--white);
        font-size: 16px;
        font-weight: 600;
    }

    .mobile-menu-header .menu-close {
        background: none;
        border: none;
        color: var(--white);
        font-size: 20px;
        cursor: pointer;
        padding: 4px;
    }

    .nav-menu .nav-item {
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-link {
        padding: 16px 24px;
        border-bottom: none;
        font-size: 15px;
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-link:hover,
    .nav-item.active .nav-link {
        background: rgba(255,255,255,0.06);
        color: var(--white);
    }

    .main-header.scrolled .nav-link {
        color: var(--white);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.25);
        box-shadow: none;
        margin: 0;
        display: none;
        border-radius: 0;
        border: none;
    }

    .dropdown-menu a {
        color: rgba(255,255,255,0.85);
        padding: 12px 24px 12px 40px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .dropdown-menu a:hover {
        color: var(--secondary);
        background: rgba(255,255,255,0.04);
    }

    .has-dropdown.open .dropdown-menu {
        display: block;
    }

    .has-dropdown .nav-link i {
        transition: transform 0.3s;
        margin-left: 8px;
    }
    
    .slide-content h1 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 16px;
    }

    .slider-arrows {
        top: auto;
        bottom: 70px;
        transform: none;
    }

    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 20px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .hero-slider {
        min-height: 500px;
    }
    
    .slide-content h1 {
        font-size: 26px;
    }
}

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

.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="none"/><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    background-size: 120px;
    opacity: 0.5;
    pointer-events: none;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 40px;
    }
    .page-hero h1 {
        font-size: 28px;
    }
}

/* ============================================
   PAGE CONTENT
   ============================================ */

.page-content {
    padding: 80px 0;
    background: var(--white);
}

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

.content-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.content-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.page-content.alt-bg {
    background: var(--light);
}

.content-wrapper h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.content-wrapper h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 28px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-wrapper h4 i {
    color: var(--secondary);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

@media (max-width: 768px) {
    .page-content {
        padding: 48px 0;
    }

    .content-wrapper h2 {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .content-wrapper h3 {
        font-size: 17px;
    }

    .content-wrapper p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* ============================================
   PACKAGES TABS
   ============================================ */

.packages-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.packages-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    flex-shrink: 0;
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--white);
    color: var(--gray);
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.tab-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 35, 33, 0.1);
}

.tab-btn.active {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 4px 16px rgba(224, 35, 33, 0.25);
}

.tab-btn.featured {
    position: relative;
}

.tab-btn.featured::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    border: 2px solid var(--white);
}

.tab-btn.featured.active::after {
    background: var(--white);
    border-color: var(--secondary);
}

.tab-panels {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeInUp 0.35s ease both;
}

.tab-panel.active {
    display: block;
}

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

.tab-panel-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.tab-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.tab-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
    gap: 16px;
}

.tab-panel-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.tab-panel-header h3 small {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--gray);
    margin-top: 4px;
}

.tab-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 40px;
    list-style: none;
}

.tab-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.tab-features li i {
    color: var(--secondary);
    font-size: 13px;
    margin-top: 3px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .tab-panel-inner {
        padding: 24px;
    }

    .tab-panel-header h3 {
        font-size: 20px;
    }

    .tab-features {
        grid-template-columns: 1fr;
    }

    .packages-tabs {
        gap: 8px;
    }

    .tab-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

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

.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}

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

.contact-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(224, 35, 33, 0.15);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(224, 35, 33, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.contact-icon i {
    color: var(--secondary);
    font-size: 20px;
}

.contact-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.contact-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.contact-card a {
    color: var(--gray);
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--secondary);
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    min-height: 520px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: none;
    display: block;
}

.package-price-sm {
	font-weight: bold;
  	color: #e02322;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 400px;
    }

    .contact-map iframe {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 48px 0;
    }

    .contact-grid {
        gap: 28px;
    }

    .contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .contact-card {
        padding: 18px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

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

    .contact-map {
        min-height: 300px;
    }

    .contact-map iframe {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
}
