/* ==========================================
   ERDEMLÄ° TAKSÄ° - PROFESSIONAL CSS
   ========================================== */

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FFD400;
    --primary-black: #111111;
    --primary-white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-white);
    overflow-x: hidden;
    padding-top: 80px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: var(--shadow);
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.header-content > .logo {
    flex: 0 0 auto;
    order: 1;
}

.header-content > .nav {
    flex: 1 1 auto;
    order: 2;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.header-content > .header-phone {
    flex: 0 0 auto;
    order: 3;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-yellow);
}

.logo-icon {
    font-size: 2rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--primary-white);
    font-weight: 500;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-yellow);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
}

.phone-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.phone-icon {
    font-size: 1.2rem;
}

.phone-number {
    font-size: 1.1rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--primary-white);
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-white);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 212, 0, 0.3);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--primary-white);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.btn-secondary:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
}

.btn-icon {
    font-size: 1.3rem;
}

/* ==========================================
   HERO FEATURES
   ========================================== */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
    color: var(--primary-yellow);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--primary-white);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.7) 0%, rgba(17, 17, 17, 0.5) 100%);
    z-index: 1;
}

/* ==========================================
   SECTION STYLES
   ========================================== */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
    background-color: var(--primary-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-yellow);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.service-description {
    color: var(--text-light);
    font-size: 1rem;
}

/* ==========================================
   PHONE CTA
   ========================================== */
.phone-cta {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFC000 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--primary-black);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    background-color: var(--primary-black);
    color: var(--primary-yellow);
}

.btn-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   WHY US
   ========================================== */
.why-us {
    background-color: #f8f8f8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.why-description {
    color: var(--text-light);
}

/* ==========================================
   LOCATION INFO
   ========================================== */
.location-info {
    background-color: var(--primary-white);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.location-card {
    display: flex;
    flex-direction: column;
    background: var(--primary-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.location-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.location-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.location-content {
    padding: 2rem;
}

.location-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.location-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-features li {
    color: var(--text-dark);
    font-weight: 500;
}

/* ==========================================
   PRICING
   ========================================== */
.pricing {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border-color: var(--primary-yellow);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.08);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.pricing-info {
    margin-bottom: 1.5rem;
}

.info-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pricing-btn {
    display: inline-block;
    color: var(--primary-white);
    background-color: var(--primary-black);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.pricing-btn:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.pricing-features {
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* ==========================================
   MAP SECTION
   ========================================== */
.map-section {
    background-color: var(--primary-white);
    padding: 3rem 0;
}

.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ==========================================
   REVIEWS
   ========================================== */
.reviews {
    background-color: #f8f8f8;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-rating {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    color: var(--text-light);
    font-weight: bold;
    text-align: right;
}

/* ==========================================
   INSTAGRAM FEED
   ========================================== */
.instagram-feed {
    padding: 4rem 0;
    background-color: var(--primary-white);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.instagram-card {
    background: var(--primary-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.instagram-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.instagram-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #E1306C;
}

.instagram-icon i {
    font-size: 4rem;
}

.instagram-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.instagram-link {
    color: var(--primary-white);
    background-color: var(--primary-black);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    transition: var(--transition);
}

.instagram-link:hover {
    background-color: #E1306C;
    color: var(--primary-white);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary-yellow);
    background-color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: var(--transition);
}

.blog-link:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
    background-color: var(--primary-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 15px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.contact-icon i {
    font-size: 3rem;
}

.contact-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.contact-info {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary-yellow);
    background-color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: var(--transition);
}

.contact-link:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.footer-description {
    color: #cccccc;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #cccccc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* ==========================================
   BLOG
   ========================================== */
.blog {
    background-color: #f8f8f8;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-yellow);
}

.blog-icon {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.blog-icon i {
    font-size: 3rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-date {
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-date i {
    font-size: 0.9rem;
}

.blog-category {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-category i {
    font-size: 0.9rem;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.blog-link {
    color: var(--primary-white);
    background-color: var(--primary-black);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    transition: var(--transition);
}

.blog-link:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}
    
    .nav {
        display: none;
    }
    
    .header-content {
        justify-content: center;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .services-grid,
    .why-grid,
    .pricing-grid,
    .reviews-grid,
    .faq-grid,
    .blog-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-bar {
        display: flex;
        gap: 1rem;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .location-grid {
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .phone-link {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.why-card,
.pricing-card,
.review-card,
.faq-card,
.blog-card,
.contact-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    .header,
    .hero,
    .sticky-bar {
        display: none;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 3px solid var(--primary-yellow);
    outline-offset: 2px;
}

/* ==========================================
   PAGE HERO VARIATIONS
   ========================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: var(--primary-white);
}

.page-hero.airport {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
}

.page-hero.night {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.page-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: 4rem 0;
    background-color: var(--primary-white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* ==========================================
   SERVICES DETAIL
   ========================================== */
.services-detail {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-detail-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-detail-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.service-detail-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-detail-features {
    list-style: none;
    padding: 0;
}

.service-detail-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.service-link {
    color: var(--primary-yellow);
    background-color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: var(--transition);
}

.service-link:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

/* ==========================================
   AREAS SECTION
   ========================================== */
.areas {
    padding: 4rem 0;
    background-color: var(--primary-white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.area-card {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.area-card:hover {
    background: var(--primary-yellow);
    transform: translateY(-3px);
}

.area-card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.area-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ==========================================
   LOCAL PRICING
   ========================================== */
.local-pricing {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.pricing-table {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
    background-color: var(--primary-black);
    color: var(--primary-white);
    font-weight: bold;
}

.pricing-table tr:hover {
    background-color: #f8f8f8;
}

.pricing-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* ==========================================
   ADVANTAGES
   ========================================== */
.advantages {
    padding: 4rem 0;
    background-color: var(--primary-white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.advantage-item p {
    color: var(--text-light);
}

/* ==========================================
   AIRPORT SERVICES
   ========================================== */
.airport-services {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.airport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.airport-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.airport-card h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.airport-card ul {
    list-style: none;
    padding: 0;
}

.airport-card li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

/* ==========================================
   ROUTES
   ========================================== */
.routes {
    padding: 4rem 0;
    background-color: var(--primary-white);
}

.routes-table {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

/* ==========================================
   BOOKING
   ========================================== */
.booking {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.booking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.booking-item {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.booking-item h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.booking-note {
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.booking-note h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.booking-note ul {
    list-style: none;
    padding: 0;
}

.booking-note li {
    padding: 0.5rem 0;
}

/* ==========================================
   SERVICE TIMES
   ========================================== */
.service-times {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.time-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.time-card h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.time-period {
    font-size: 1.2rem;
    color: var(--primary-yellow);
    background-color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin: 1rem 0;
}

.time-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.time-card li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

/* ==========================================
   FEATURES
   ========================================== */
.features {
    padding: 4rem 0;
    background-color: var(--primary-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 15px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.feature-item p {
    color: var(--text-light);
}

/* ==========================================
   SCENARIOS
   ========================================== */
.scenarios {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.scenario-card {
    background: var(--primary-white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.scenario-card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.scenario-card p {
    color: var(--text-light);
}

/* ==========================================
   NIGHT PRICING
   ========================================== */
.night-pricing {
    padding: 4rem 0;
    background-color: var(--primary-white);
}

.pricing-info {
    max-width: 700px;
    margin: 0 auto;
}

.pricing-info p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.example-box {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-yellow);
}

.example-box h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.example-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.example-row.total {
    font-weight: bold;
    font-size: 1.2rem;
    border-bottom: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary-black);
}

/* ==========================================
   PRICING INTRO & SECTIONS
   ========================================== */
.pricing-intro {
    padding: 3rem 0;
    background-color: #f8f8f8;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.price-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.price-table {
    background: var(--primary-white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.price-table h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.airport-pricing,
.touristic-pricing,
.night-fee {
    padding: 4rem 0;
}

.price-includes {
    margin-top: 2rem;
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 10px;
}

.price-includes h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.price-includes ul {
    list-style: none;
    padding: 0;
}

.price-includes li {
    padding: 0.5rem 0;
}

.touristic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.touristic-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.touristic-price {
    margin: 1.5rem 0;
}

.touristic-price .price {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
}

.touristic-price .amount {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-black);
}

.touristic-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 1.5rem;
}

.touristic-card li {
    padding: 0.5rem 0;
}

.touristic-btn {
    color: var(--primary-white);
    background-color: var(--primary-black);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    transition: var(--transition);
}

.touristic-btn:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

/* ==========================================
   BLOG POSTS
   ========================================== */
.blog-posts {
    padding: 4rem 0;
    background-color: var(--primary-white);
}

.blog-post {
    background: #f8f8f8;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.blog-header {
    margin-bottom: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-date {
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.blog-category {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.blog-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-black);
}

.blog-content {
    line-height: 1.8;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 2rem 0 1rem;
    color: var(--primary-black);
}

.blog-content h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 1.5rem 0 1rem;
    color: var(--primary-black);
}

.blog-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-content ul,
.blog-content ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-dark);
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content a {
    color: var(--primary-yellow);
    background-color: var(--primary-black);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
}

.blog-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.blog-cta h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

/* ==========================================
   CONTACT INFO SECTION
   ========================================== */
.contact-info-section {
    padding: 4rem 0;
    background-color: var(--primary-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card-large {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.contact-card-large:hover {
    background: var(--primary-yellow);
    transform: translateY(-5px);
}

.contact-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-title-large {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.contact-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
    color: var(--primary-black);
}

.contact-address {
    font-size: 1.1rem;
    margin: 1rem 0;
    color: var(--text-dark);
}

.contact-handle {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 1rem 0;
    color: var(--primary-black);
}

.contact-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ==========================================
   WORKING HOURS
   ========================================== */
.working-hours {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.hours-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.hours-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.hours-time {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-yellow);
    background-color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin: 1rem 0;
}

/* ==========================================
   MAP SECTION FULL
   ========================================== */
.map-section-full {
    background-color: var(--primary-white);
}

.map-container-full {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ==========================================
   SOCIAL MEDIA
   ========================================== */
.social-media {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    background: var(--primary-white);
    padding: 2rem 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link:hover {
    background: var(--primary-yellow);
    transform: translateY(-5px);
}

.social-icon {
    font-size: 3rem;
}

.social-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-black);
}

.social-handle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ==========================================
   PRICING FAQ
   ========================================== */
.pricing-faq {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.pricing-faq .faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ========================================== */

/* Hide navigation on mobile, show sticky bar */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    
    .header {
        padding: 0.8rem 0;
    }
    
    .header-content {
        gap: 1rem;
    }
    
    /* Hide desktop nav */
    .nav {
        display: none !important;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .phone-link {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .phone-number {
        font-size: 0.9rem;
    }
    
    .phone-icon {
        font-size: 1rem;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .hero-feature {
        padding: 1rem;
        flex: 1 1 45%;
        min-width: 120px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 0.95rem;
    }
    
    .feature-desc {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-info {
        display: none;
    }
    
    /* Sections Mobile */
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Cards Grid Mobile */
    .services-grid,
    .why-grid,
    .pricing-grid,
    .reviews-grid,
    .faq-grid,
    .blog-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Phone CTA Mobile */
    .phone-cta {
        padding: 3rem 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Pricing Cards Mobile */
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
    }
    
    .footer-seo {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Show Sticky Bar on Mobile */
    .sticky-bar {
        display: flex !important;
    }
    
    /* Hide Floating Social on Mobile */
    .floating-social {
        display: none !important;
    }
    
    /* Page Hero Mobile */
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    /* Service Detail Grid Mobile */
    .service-detail-grid,
    .areas-grid,
    .advantages-grid,
    .airport-grid,
    .times-grid,
    .features-grid,
    .scenarios-grid,
    .touristic-grid,
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Blog Post Mobile */
    .blog-post {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.4rem;
    }
    
    .blog-header {
        margin-bottom: 1.5rem;
    }
    
    .blog-content h3 {
        font-size: 1.3rem;
    }
    
    /* Contact Cards Mobile */
    .contact-card-large {
        padding: 1.5rem;
    }
    
    .contact-number {
        font-size: 1.3rem;
    }
    
    /* Social Links Mobile */
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-link {
        padding: 1.5rem 2rem;
    }
    
    /* Booking Info Mobile */
    .booking-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Price Tables Mobile */
    .price-tables {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Pricing Table Mobile */
    .pricing-table {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.85rem;
    }
    
    /* Instagram Card Mobile */
    .instagram-card {
        padding: 2rem 1.5rem;
    }
    
    .instagram-icon {
        font-size: 3rem;
    }
    
    /* Map Mobile */
    .map-container iframe {
        height: 300px !important;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    body {
        padding-top: 65px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo-icon {
        font-size: 1.3rem;
    }
    
    .phone-link {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .phone-number {
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-feature {
        padding: 0.8rem;
        flex: 1 1 42%;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
    
    .feature-title {
        font-size: 0.85rem;
    }
    
    .feature-desc {
        font-size: 0.75rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .service-card,
    .why-card,
    .pricing-card,
    .review-card,
    .faq-card,
    .contact-card {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .contact-number {
        font-size: 1.2rem;
    }
    
    .blog-post {
        padding: 1rem;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    /* Sticky bar adjustments */
    .sticky-bar {
        padding: 0.8rem 0.5rem;
    }
    
    .sticky-icon {
        font-size: 1.3rem;
    }
    
    .sticky-text {
        font-size: 0.7rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        gap: 0.6rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .logo {
        font-size: 0.9rem;
    }
}
/* ==========================================
   FLOATING SOCIAL
   ========================================== */
.floating-social {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 998;
}

.social-btn {
    width: 55px;
    height: 55px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-size: 24px;
    color: var(--primary-black);
}

.social-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.social-btn i {
    font-size: 24px;
}

.social-btn.whatsapp:hover {
    background: #25D366;
    color: var(--primary-white);
}

.social-btn.phone:hover {
    background: var(--primary-black);
    color: var(--primary-white);
}

.social-btn.instagram:hover {
    background: #E1306C;
    color: var(--primary-white);
}

.social-btn.telegram:hover {
    background: #0088cc;
    color: var(--primary-white);
}

@media (max-width: 768px) {
    .floating-social {
        display: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --text-dark: #000000;
    --text-light: #333333;
  }
}

/* ==========================================
   STICKY BAR (MOBILE)
   ========================================== */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-black);
    display: none;
    gap: 1rem;
    padding: 1rem;
    z-index: 997;
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary-white);
    font-size: 0.8rem;
    padding: 0.5rem;
    border-radius: 10px;
    transition: var(--transition);
}

.sticky-btn:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.sticky-icon {
    font-size: 1.5rem;
}

.sticky-text {
    font-weight: bold;
}
  
/* ==========================================  
   FAQ SECTION
   ========================================== */
.faq {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%23ffd400" opacity="0.03"/></svg>') center center;
    background-size: 200px 200px;
    z-index: 0;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, #FFC000 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 212, 0, 0.15);
    border-color: var(--primary-yellow);
}

.faq-card:hover::before {
    transform: scaleX(1);
}

.faq-icon {  
    font-size: 3rem;  
    color: var(--primary-yellow);  
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition);
}

.faq-icon i {
    font-size: 3rem;
}

.faq-card:hover .faq-icon {
    transform: scale(1.1) rotate(5deg);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-black);
    line-height: 1.4;
}

.faq-answer {
    color: var(--text-dark);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--primary-yellow);
    background-color: var(--primary-black);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
}

.faq-answer a:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}
