/* ==========================================================================
   MERSİN ÇİFTLİKKÖY TAKSİ - Premium Custom Design System & Stylesheet
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-yellow: #FFCC00;
    --primary-yellow-rgb: 255, 204, 0;
    --accent-gold: #FBC02D;
    --accent-gold-dark: #F57F17;
    --bg-dark: #0A0B0D;
    --bg-darker: #050506;
    --bg-card: rgba(22, 24, 30, 0.6);
    --border-glass: rgba(255, 204, 0, 0.08);
    --border-glass-hover: rgba(255, 204, 0, 0.25);
    --text-light: #F3F4F6;
    --text-dim: #A1A1AA;
    --text-dark: #0A0A0B;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    --glow-shadow: 0 0 30px rgba(255, 204, 0, 0.15);
    --glow-shadow-strong: 0 0 40px rgba(255, 204, 0, 0.35);
    --glow-green: 0 0 30px rgba(37, 211, 102, 0.3);
}

/* Reset & Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: #1E2028;
    border-radius: 5px;
    border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-yellow);
}

/* Selection Style */
::selection {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
}

/* Typography Utility Classes */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

/* Decorative Background Glows */
.bg-glow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.06) 0%, rgba(255, 204, 0, 0) 70%);
    filter: blur(80px);
}

.bg-glow-1 {
    top: -20%;
    right: -10%;
}

.bg-glow-2 {
    top: 40%;
    left: -20%;
}

.bg-glow-3 {
    bottom: -10%;
    right: -10%;
}

/* Grid & Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 16px 0;
    background: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 204, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.45rem;
    color: var(--text-light);
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.logo span {
    color: var(--primary-yellow);
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-gold) 100%);
    border-radius: 12px;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.35);
    font-size: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dim);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--accent-gold));
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-btn {
    background: linear-gradient(135deg, #1A1C23 0%, #0E1015 100%);
    border: 1px solid var(--border-glass);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-btn:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.25);
    color: var(--primary-yellow);
    transform: translateY(-2px);
}

.nav-btn i {
    color: var(--primary-yellow);
    animation: bouncePhone 2s infinite;
}

/* Mobile Menu Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
    width: 32px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    background-color: var(--primary-yellow);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    background-color: var(--primary-yellow);
}

/* Mobile Navigation Panel */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: rgba(7, 8, 10, 0.99);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 999;
    padding: 120px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-left: 1px solid rgba(255, 204, 0, 0.15);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9);
    transition: var(--transition-smooth);
}

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

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
}

.mobile-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dim);
}

.mobile-link:hover, .mobile-link.active {
    color: var(--primary-yellow);
    padding-left: 8px;
}

.mobile-cta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.mobile-cta-btn.call {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-gold) 100%);
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.3);
}

.mobile-cta-btn.whatsapp {
    background: #25D366;
    color: #FFF;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   HERO AREA (HOME)
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 204, 0, 0.08);
    border: 1px solid rgba(255, 204, 0, 0.18);
    color: var(--primary-yellow);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 28px;
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.08);
}

.badge i {
    font-size: 0.75rem;
    animation: pulse 2.5s infinite;
}

.hero-title {
    font-size: clamp(2.75rem, 5.5vw, 4.75rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #FFF;
}

.hero-title span {
    color: var(--primary-yellow);
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 25px rgba(255, 204, 0, 0.3));
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 700;
    color: #FFF;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 800;
    transition: var(--transition-bounce);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    transition: none;
}

.btn:hover::before {
    transform: translateX(100%);
    transition: all 0.85s ease-in-out;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-gold) 100%);
    color: var(--text-dark);
    box-shadow: 0 8px 30px rgba(255, 204, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 204, 0, 0.55);
}

.btn-secondary {
    background: #25D366;
    color: #FFF;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-light);
}

.btn-outline:hover {
    transform: translateY(-4px);
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
    box-shadow: 0 12px 35px rgba(255, 204, 0, 0.2);
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 204, 0, 0.15);
    padding-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: #FFF;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 4px;
}

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

.stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 600;
}

/* Hero 3D Graphic */
.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-3d-scene {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.taxi-image-wrapper {
    position: relative;
    width: 100%;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 35px rgba(255, 204, 0, 0.25));
}

.taxi-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
}

.graphic-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.28) 0%, rgba(255, 204, 0, 0) 70%);
    z-index: 1;
    filter: blur(35px);
}

.graphic-ring {
    position: absolute;
    border: 2px dashed rgba(255, 204, 0, 0.15);
    border-radius: 50%;
    animation: rotate 24s linear infinite;
}

.ring-1 {
    width: 420px;
    height: 420px;
}

.ring-2 {
    width: 500px;
    height: 500px;
    border-style: dotted;
    border-color: rgba(255, 204, 0, 0.08);
    animation-duration: 40s;
    animation-direction: reverse;
}

/* ==========================================================================
   INNER PAGES HERO HEADER
   ========================================================================== */
.inner-hero {
    padding-top: 180px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid rgba(255, 204, 0, 0.1);
    position: relative;
    text-align: center;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 204, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ==========================================================================
   PAGE / SECTION WRAPPERS
   ========================================================================== */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-bg-darker {
    background-color: var(--bg-darker);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: var(--primary-yellow);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 3.8vw, 2.85rem);
    font-weight: 900;
    color: #FFF;
    letter-spacing: -0.02em;
    max-width: 800px;
    margin: 0 auto 18px auto;
    text-transform: uppercase;
}

.section-title span {
    color: var(--primary-yellow);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   GLASS CARDS (3D / GLOW EFFECTS)
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.08) 0%, rgba(255, 204, 0, 0) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-glass-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.12);
}

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

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 204, 0, 0.08);
    border: 1px solid rgba(255, 204, 0, 0.18);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-yellow);
    margin-bottom: 28px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.1);
}

.glass-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-gold) 100%);
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.4);
    transform: scale(1.05) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Card Button (Internal) */
.card-btn {
    margin-top: auto;
    padding-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-yellow);
    transition: var(--transition-fast);
}

.glass-card:hover .card-btn {
    gap: 12px;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

/* ==========================================================================
   ABOUT PAGE EXCLUSIVES
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    font-size: 1.75rem;
    color: #FFF;
    margin-bottom: 16px;
    font-weight: 800;
}

.about-content p {
    color: var(--text-dim);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.about-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.about-bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
    color: #FFF;
}

.about-bullet-item i {
    color: var(--primary-yellow);
    font-size: 1.25rem;
}

.about-frame {
    position: relative;
    border-radius: 24px;
    border: 1px solid var(--border-glass-hover);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-card);
    box-shadow: 0 20px 45px rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-frame img {
    width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.7));
    animation: float 6s ease-in-out infinite;
}

.about-frame-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.2) 0%, transparent 70%);
    filter: blur(25px);
    pointer-events: none;
}

/* ==========================================================================
   REGIONS SECTION & MAP MOCKUP
   ========================================================================== */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

.region-card {
    background: linear-gradient(135deg, rgba(24, 26, 32, 0.8) 0%, rgba(12, 13, 16, 0.8) 100%);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 24px 28px;
    transition: var(--transition-smooth);
    position: relative;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.region-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: var(--glow-shadow);
}

.region-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 204, 0, 0.06);
    border: 1px solid rgba(255, 204, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 1.3rem;
    transition: var(--transition-fast);
    flex-shrink: 0;
    box-shadow: inset 0 0 10px rgba(255, 204, 0, 0.05);
}

.region-card:hover .region-icon {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-gold) 100%);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
    transform: rotateY(360deg);
}

.region-info h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 4px;
}

.region-info p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Map visual section */
.map-visual-container {
    margin-top: 60px;
    border-radius: 24px;
    border: 1px solid var(--border-glass-hover);
    background: var(--bg-card);
    padding: 30px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.map-visual-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
    top: -50px;
    left: -50px;
    filter: blur(40px);
}

.map-placeholder {
    height: 380px;
    background: linear-gradient(135deg, #121418 0%, #08090C 100%);
    border-radius: 16px;
    border: 1px dashed rgba(255, 204, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Grid lines for map placeholder mockup */
.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(255, 204, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 204, 0, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    transform: rotate(15deg);
    pointer-events: none;
}

.map-icon {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    animation: float 4s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}

.map-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 8px;
}

.map-subtitle {
    font-size: 1rem;
    color: var(--text-dim);
    max-width: 500px;
    margin-bottom: 24px;
}

/* ==========================================================================
   FAQ PAGE EXCLUSIVES
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.faq-item:hover, .faq-item.active {
    border-color: var(--border-glass-hover);
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.05);
}

.faq-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-fast);
}

.faq-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFF;
    transition: var(--transition-fast);
}

.faq-item.active .faq-header h3 {
    color: var(--primary-yellow);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 204, 0, 0.06);
    border: 1px solid rgba(255, 204, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--primary-yellow);
    color: var(--text-dark);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
    padding: 0 30px 24px 30px;
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 20px;
}

/* ==========================================================================
   CONTACT PAGE EXCLUSIVES
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.contact-card-huge {
    background: linear-gradient(135deg, rgba(24, 26, 32, 0.8) 0%, rgba(12, 13, 16, 0.8) 100%);
    border: 1px solid var(--border-glass-hover);
    border-radius: 28px;
    padding: 45px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 204, 0, 0.08);
    border: 1px solid rgba(255, 204, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.1);
}

.contact-info-text h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    margin-bottom: 4px;
}

.contact-info-text p, .contact-info-text a {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFF;
}

.contact-info-text a:hover {
    color: var(--primary-yellow);
}

.phone-number-huge {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--primary-yellow);
    text-shadow: 0 0 25px rgba(255, 204, 0, 0.35);
    display: block;
    margin-top: 8px;
    font-family: var(--font-heading);
}

.phone-number-huge:hover {
    transform: scale(1.02);
}

/* Contact Form */
.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    padding: 45px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background: rgba(10, 11, 13, 0.8);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 16px 20px;
    color: #FFF;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.15);
}

textarea.form-control {
    resize: none;
    height: 120px;
}

/* ==========================================================================
   CALL TO ACTION BANNER
   ========================================================================== */
.cta-banner {
    background: var(--bg-card);
    border: 1px solid var(--border-glass-hover);
    border-radius: 28px;
    padding: 60px 50px;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-banner-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(35px);
    pointer-events: none;
}

.cta-banner-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: #FFF;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.cta-banner-title span {
    color: var(--primary-yellow);
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
}

.cta-banner-desc {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 36px auto;
}

.cta-banner-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   FIXED STICKY BUTTONS (BOTTOM LEFT / BOTTOM RIGHT)
   ========================================================================== */
.fixed-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    pointer-events: none;
    z-index: 998;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fixed-btn {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-bounce);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fixed-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid inherit;
    animation: ripple 2s infinite;
    pointer-events: none;
}

.fixed-btn.call {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-gold) 100%);
    color: var(--text-dark);
    box-shadow: var(--glow-shadow-strong);
    border-color: rgba(255, 204, 0, 0.2);
}

.fixed-btn.call::after {
    border-color: var(--primary-yellow);
}

.fixed-btn.whatsapp {
    background: #25D366;
    color: #FFF;
    box-shadow: var(--glow-green);
    border-color: rgba(37, 211, 102, 0.2);
}

.fixed-btn.whatsapp::after {
    border-color: #25D366;
}

.fixed-btn:hover {
    transform: scale(1.15) translateY(-5px);
}

/* Mobil görünürlük ve bar ekleme */
.fixed-btn-label {
    position: absolute;
    background: rgba(10, 11, 13, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFF;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.fixed-btn.call .fixed-btn-label {
    left: 70px;
}

.fixed-btn.whatsapp .fixed-btn-label {
    right: 70px;
}

.fixed-btn:hover .fixed-btn-label {
    opacity: 1;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255, 204, 0, 0.1);
    padding: 80px 0 40px 0;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-links {
    display: flex;
    gap: 32px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dim);
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--primary-yellow);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 500;
}

.footer-bottom a {
    color: var(--primary-yellow);
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes bouncePhone {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Scroll Reveal Initial States */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .nav-btn {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        width: 100%;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-frame {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-card-huge {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .inner-hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    
    .fixed-actions {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .fixed-btn {
        width: 54px;
        height: 54px;
        font-size: 1.4rem;
    }
    
    .fixed-btn.call .fixed-btn-label,
    .fixed-btn.whatsapp .fixed-btn-label {
        display: none; /* Hide labels on mobile to avoid overlapping */
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-banner {
        padding: 45px 30px;
    }
    
    .faq-header {
        padding: 20px 24px;
    }
    
    .faq-content {
        padding: 0 24px 20px 24px;
    }
    
    .contact-form-container {
        padding: 30px 24px;
    }
    
    .about-bullets {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1 1 40%;
        align-items: center;
    }
}
