/* =============================================
   Oto Çekici CMS — Premium Design System
   Color Palette: Gold, Navy, Black, White
   ============================================= */

/* =============== CSS VARIABLES =============== */
:root {
    --gold: #FFD700;
    --gold-light: #FFE44D;
    --gold-dark: #C7A600;
    --gold-gradient: linear-gradient(135deg, #FFD700, #FFA500);

    --navy: #0A1128;
    --navy-light: #16213e;
    --navy-mid: #0f1b3d;
    --navy-gradient: linear-gradient(135deg, #0A1128, #16213e);

    --dark: #0d0d0d;
    --dark-light: #1a1a2e;
    --dark-card: #141428;

    --white: #ffffff;
    --light: #f8f9fc;
    --gray: #8892a4;
    --gray-light: #e8ecf1;

    --success: #25D366;
    --danger: #ef4444;

    --font-primary: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.2);
    --shadow-gold: 0 8px 30px rgba(255,215,0,0.25);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============== RESET & BASE =============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
}

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

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

/* =============== LOADING SCREEN =============== */
.loading-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-inner {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-inner i {
    font-size: 36px;
    color: var(--navy);
}

.loader-text {
    color: var(--gold);
    font-family: var(--font-primary);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,215,0,0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255,215,0,0); }
}

/* =============== PAGE TRANSITION =============== */
.page-transition {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--navy);
    z-index: 99998;
    transform: scaleY(0);
    transform-origin: bottom;
    pointer-events: none;
}

/* =============== BUTTONS =============== */
.btn-gold {
    background: var(--gold-gradient);
    color: var(--navy) !important;
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    font-family: var(--font-primary);
    border-radius: var(--radius-xl);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-gold);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
    z-index: -1;
}

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

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255,215,0,0.4);
    color: var(--navy) !important;
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold) !important;
    background: transparent;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--radius-xl);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy) !important;
    transform: translateY(-2px);
}

/* =============== SECTION STYLING =============== */
.section-padding { padding: 100px 0; }

.section-badge {
    display: inline-block;
    background: rgba(255,215,0,0.15);
    color: var(--gold-dark);
    padding: 6px 20px;
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 17px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.bg-dark-section { background: var(--navy); }
.bg-light-section { background: var(--light); }

.bg-gradient-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a1a4e 100%);
}

/* =============== TOP BAR =============== */
.top-bar {
    background: var(--navy);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.top-bar-item:hover { color: var(--gold); }
.top-bar-item i { color: var(--gold); font-size: 14px; }

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.top-bar-phone-btn {
    background: var(--gold-gradient);
    color: var(--navy) !important;
    padding: 6px 18px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,215,0,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255,215,0,0); }
}

/* =============== NAVBAR =============== */
.main-navbar {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    transition: var(--transition-slow);
    box-shadow: none;
    z-index: 1000;
}

.main-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px 0;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.logo-img {
    height: 50px;
    transition: var(--transition);
}

.sticky .logo-img { height: 40px; }

.logo-text {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text i { color: var(--gold); font-size: 28px; }

.nav-link {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    color: rgba(255,255,255,0.85) !important;
    padding: 10px 16px !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after { width: 60%; }
.nav-link:hover, .nav-link.active { color: var(--gold-dark) !important; }

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-toggler { border: none; padding: 8px; }
.navbar-toggler:focus { box-shadow: none; }

/* =============== HERO SLIDER =============== */
.hero-section { position: relative; }

.hero-slide {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10,17,40,0.85), rgba(22,33,62,0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-subtitle {
    display: inline-block;
    background: rgba(255,215,0,0.2);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255,215,0,0.3);
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
    transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 40px;
    border-radius: 7px;
}

.hero-nav.swiper-button-next, .hero-nav.swiper-button-prev {
    color: var(--gold);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
}

.hero-nav::after { font-size: 18px; }

/* =============== QUICK SERVICES =============== */
.quick-services-section {
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.quick-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.quick-service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.quick-service-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.qs-icon {
    width: 60px; height: 60px;
    background: rgba(255,215,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.qs-icon i { font-size: 26px; color: var(--gold-dark); }
.qs-content h3 { font-size: 15px; margin-bottom: 5px; }
.qs-content p { font-size: 13px; color: var(--gray); margin: 0; }

/* =============== ABOUT SECTION =============== */
.about-image-wrapper {
    position: relative;
}

.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold-gradient);
    color: var(--navy);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    border: 5px solid var(--white);
}

.experience-number {
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
}

.experience-text {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

.about-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--navy);
    animation: pulse 2s infinite;
}

.about-text { margin-bottom: 30px; color: #555; }
.about-text p { margin-bottom: 12px; }

.about-counters {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
}

.about-counter-item { text-align: center; }
.about-counter-item i { font-size: 28px; color: var(--gold); margin-bottom: 5px; display: block; }
.about-counter-item .counter { font-size: 32px; font-weight: 800; color: var(--navy); display: block; }
.about-counter-item p { font-size: 13px; color: var(--gray); margin: 0; }

/* =============== SERVICE CARDS =============== */
.service-card {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-slow);
    height: 100%;
    border: 1px solid rgba(255,255,255,0.05);
    perspective: 1000px;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 20px 50px rgba(255,215,0,0.15);
    border-color: rgba(255,215,0,0.2);
}

.service-card-icon {
    padding: 30px 25px 0;
}

.service-card-icon i {
    width: 65px;
    height: 65px;
    background: var(--gold-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--navy);
}

.service-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-body { padding: 25px; }

.service-card-title {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
}

.service-card-desc {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 15px;
}

.service-card-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-card-link:hover { gap: 10px; color: var(--gold-light); }

/* =============== REGIONS GRID =============== */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.region-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    padding: 18px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.region-card i { color: var(--gold); font-size: 18px; }

.region-card:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-gold);
}

/* =============== WHY US CARDS =============== */
.why-us-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    transition: var(--transition-slow);
    height: 100%;
}

.why-us-card:hover {
    background: rgba(255,215,0,0.1);
    border-color: rgba(255,215,0,0.3);
    transform: translateY(-10px);
}

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

.why-us-icon i { font-size: 32px; color: var(--navy); }
.why-us-card h3 { font-size: 20px; color: var(--white); margin-bottom: 10px; }
.why-us-card p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0; }

/* =============== COUNTERS SECTION =============== */
.counters-section {
    padding: 80px 0;
    position: relative;
    background: url('') center/cover fixed;
    background-color: var(--navy);
}

.counter-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,17,40,0.9), rgba(22,33,62,0.85));
}

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

.counter-item { text-align: center; }

.counter-icon {
    width: 70px; height: 70px;
    background: rgba(255,215,0,0.15);
    border: 2px solid rgba(255,215,0,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.counter-icon i { font-size: 28px; color: var(--gold); }

.counter-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    font-family: var(--font-primary);
}

.counter-suffix { font-size: 28px; }
.counter-label { color: rgba(255,255,255,0.8); font-size: 15px; margin: 0; }

/* =============== TESTIMONIALS =============== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    height: 100%;
    transition: var(--transition);
}

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

.testimonial-quote {
    font-size: 48px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.testimonial-stars { margin-bottom: 15px; }
.testimonial-stars .bi { font-size: 18px; }
.text-warning { color: var(--gold) !important; }

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--gray-light);
    padding-top: 15px;
}

.testimonial-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.testimonial-avatar-placeholder {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: var(--navy);
}

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

/* =============== BLOG CARDS =============== */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    height: 100%;
    border: 1px solid var(--gray-light);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    position: relative;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.blog-card-category {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--gold);
    color: var(--navy);
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 700;
}

.blog-card-body { padding: 25px; }

.blog-card-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
}

.blog-card-meta i { color: var(--gold); }

.blog-card-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-card-title a { color: var(--navy); }
.blog-card-title a:hover { color: var(--gold-dark); }

.blog-card-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.blog-card-link {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card-link:hover { gap: 10px; }

/* =============== FAQ ACCORDION =============== */
.faq-accordion .accordion-item {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    color: var(--navy);
    padding: 18px 25px;
    background: var(--white);
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(255,215,0,0.08);
    color: var(--gold-dark);
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: '\F282';
    font-family: 'bootstrap-icons';
    font-size: 18px;
    transition: var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\F286';
    transform: none;
}

.faq-accordion .accordion-body {
    padding: 0 25px 20px;
    color: #fff;
    line-height: 1.8;
}

/* =============== CTA SECTION =============== */
.cta-section {
    padding: 100px 0;
    position: relative;
    background: var(--navy);
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,215,0,0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255,165,0,0.1) 0%, transparent 50%);
}

.cta-content { position: relative; z-index: 2; }

.cta-title {
    font-size: clamp(32px, 5vw, 52px);
    color: var(--white);
    margin-bottom: 15px;
}

.cta-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* =============== FOOTER =============== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
}

.footer-top { padding: 60px 0 40px; }

.footer-title {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-title i { color: var(--gold); }

.footer-widget p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a i { color: var(--gold); font-size: 12px; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.footer-contact { list-style: none; padding: 0; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-contact li i { color: var(--gold); font-size: 16px; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--gold); }

.footer-map { border-radius: var(--radius-md); overflow: hidden; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.5); }

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* =============== WHATSAPP FLOAT =============== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    z-index: 999;
    animation: pulse-wp 2s infinite;
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

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

/* =============== SCROLL TOP =============== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: var(--navy);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover { transform: translateY(-3px); }

/* =============== COOKIE BANNER =============== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 15px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

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

.cookie-content p { margin: 0; color: rgba(255,255,255,0.8); font-size: 14px; }
.cookie-content a { color: var(--gold); text-decoration: underline; }

/* =============== BREADCRUMB =============== */
.breadcrumb-section {
    background: var(--navy);
    padding: 120px 0 40px;
    position: relative;
}

.breadcrumb-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    border-radius: 30px 30px 0 0;
}

.breadcrumb-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--white);
    margin-bottom: 10px;
}

.breadcrumb-nav {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
}

.breadcrumb-nav a { color: var(--gold); }
.breadcrumb-nav span { color: rgba(255,255,255,0.6); }
.breadcrumb-nav .separator { color: rgba(255,255,255,0.3); }

/* =============== RESPONSIVE =============== */
@media (max-width: 1399px) {
    .hero-slide { min-height: 550px; }
}

@media (max-width: 991px) {
    .section-padding { padding: 70px 0; }
    .hero-slide { min-height: 500px; padding: 120px 0 80px; height: 100vh; display: flex; align-items: center; justify-content: center; }
    .hero-title { font-size: 36px; }
    .hero-desc { font-size: 16px; }
    .hero-buttons .btn { padding: 12px 24px; font-size: 16px; }
    .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .top-bar-left span, .top-bar-item span { display: none; }
    .about-experience-badge { width: 110px; height: 110px; right: -10px; bottom: -10px; }
    .experience-number { font-size: 32px; }
    .about-counters { flex-wrap: wrap; gap: 20px; }
    .navbar-cta { display: none !important; }
}

@media (max-width: 767px) {
    .section-padding { padding: 50px 0; }
    .top-bar { display: none; }
    .hero-slide { min-height: 450px; padding: 100px 0 60px; height: 100vh; display: flex; align-items: center; justify-content: center; }
    .hero-title { font-size: 28px; }
    .hero-desc { font-size: 15px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .quick-services-grid { grid-template-columns: repeat(2, 1fr); margin-top: -30px; }
    .regions-grid { grid-template-columns: repeat(2, 1fr); }
    .counters-grid { grid-template-columns: repeat(2, 1fr); }
    .counter-number { font-size: 36px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .cookie-content { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .quick-services-grid { grid-template-columns: 1fr; }
    .regions-grid { grid-template-columns: 1fr 1fr; }
    .about-experience-badge { width: 90px; height: 90px; }
    .experience-number { font-size: 26px; }
    .experience-text { font-size: 10px; }
}

/* =============== 4K SUPPORT =============== */
@media (min-width: 2560px) {
    body { font-size: 18px; }
    .container { max-width: 1600px; }
    .hero-title { font-size: 72px; }
    .section-title { font-size: 52px; }
    .hero-slide { min-height: 800px; }
}

/* =============== STARS =============== */
.stars { display: inline-flex; gap: 2px; }
.stars .bi { font-size: 16px; }

/* =============== GLASSMORPHISM =============== */
.glass {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
}

/* =============== CONTACT FORM OVERRIDES =============== */
.contact-form-wrapper h3, 
.contact-form-wrapper p { 
    color: var(--navy); 
}
.contact-form-wrapper .form-control {
    background: #ffffff;
    border: 1px solid #ced4da;
    color: #333333;
}
.contact-form-wrapper .form-control:focus {
    background: #ffffff;
    border-color: var(--gold);
    color: #333333;
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}
.contact-form-wrapper .form-floating > label {
    color: #555555;
    font-weight: 500;
}
.contact-form-wrapper .form-control::placeholder {
    color: #999999;
}

/* =============== NOSSI SIGNATURE =============== */
.footer-bottom-links a.nossi-signature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #fff !important;
    position: relative;
    padding: 1px 6px;
    border-radius: 20px;
    background: linear-gradient(45deg, #1a2a6c, #b21f1f, #fdbb2d, #1a2a6c);
    background-size: 300% 300%;
    animation: nossiGlow 4s ease infinite;
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
    margin-left: 15px;
    text-decoration: none !important;
    font-family: var(--font-primary);
}

@keyframes nossiGlow {
    0% { background-position: 0% 50%; box-shadow: 0 0 10px rgba(253, 187, 45, 0.6); }
    50% { background-position: 100% 50%; box-shadow: 0 0 20px rgba(178, 31, 31, 0.8); }
    100% { background-position: 0% 50%; box-shadow: 0 0 10px rgba(253, 187, 45, 0.6); }
}

.footer-bottom-links a.nossi-signature i {
    color: #ffd700;
    animation: nossiStar 1.5s ease-in-out infinite alternate;
}

@keyframes nossiStar {
    0% { transform: scale(1) rotate(0deg); text-shadow: 0 0 5px #ffd700; }
    100% { transform: scale(1.3) rotate(20deg); text-shadow: 0 0 15px #ffd700; }
}
