/**
 * Özduran Kaynak Teknolojileri - Industrial Cinema Theme
 * Modern, unique, text-first storytelling design.
 */

/* ==========================================================================
   VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
    /* Colors */
    --black: #0a0a0a;
    --dark: #111827;
    --dark-surface: #1a1a2e;
    --steel: #374151;
    --smoke: #6b7280;
    --silver: #94a3b8;
    --cloud: #e5e7eb;
    --light: #f7fafc;
    --white: #ffffff;
    --orange: #ff6b00;
    --orange-hover: #e85d00;
    --orange-glow: rgba(255, 107, 0, 0.25);
    --green-whatsapp: #25d366;
    
    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Z-Index */
    --z-base: 1;
    --z-above: 10;
    --z-header: 100;
    --z-overlay: 1000;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0;
    transition: opacity 1s var(--ease);
}

body.loaded {
    opacity: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--smoke);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

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

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.text-silver { color: var(--silver); }
.text-center { text-align: center; }

.bg-black { background-color: var(--black); }
.bg-light { background-color: var(--light); }

.pt-20 { padding-top: 5rem; }
.pb-20 { padding-bottom: 5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    will-change: transform, opacity;
}

.reveal {
    transform: translateY(40px);
    transition: transform 1s var(--ease-out), opacity 1s var(--ease-out);
}

.reveal-left {
    transform: translateX(-40px);
    transition: transform 1s var(--ease-out), opacity 1s var(--ease-out);
}

.reveal-right {
    transform: translateX(40px);
    transition: transform 1s var(--ease-out), opacity 1s var(--ease-out);
}

.reveal.is-visible, .reveal-left.is-visible, .reveal-right.is-visible {
    opacity: 1;
    transform: translate(0);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    padding: 1.5rem 0;
    transition: all 0.4s var(--ease);
}

.site-header.scrolled {
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.phone-link {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.btn-portal {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 99px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s var(--ease);
}

.btn-portal:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: calc(var(--z-overlay) + 1);
}

.mobile-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s var(--ease);
}

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

.mobile-toggle.active span:nth-child(2) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--black);
    z-index: var(--z-overlay);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

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

.mobile-nav-overlay .nav-links {
    flex-direction: column;
    gap: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.mobile-nav-overlay .header-actions {
    flex-direction: column;
    margin-top: 3rem;
}

/* ==========================================================================
   HOMEPAGE: OPENING SECTION (No Slider)
   ========================================================================== */
.hero-opening {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    animation: heroKenBurns 8s ease forwards;
}

@keyframes heroKenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-slide-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.35) 40%,
        rgba(0, 0, 0, 0.5) 70%,
        rgba(0, 0, 0, 0.75) 100%
    );
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-above);
    display: flex;
    gap: 0.75rem;
}

.hero-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    padding: 0;
}

.hero-dot.active {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.2);
}

.hero-dot:hover {
    border-color: var(--white);
}

.hero-opening-content {
    position: relative;
    z-index: var(--z-above);
    text-align: center;
}

.opening-eyebrow {
    font-family: var(--font-display);
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease) 0.5s forwards;
}

.opening-title {
    color: var(--white);
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.opening-title .line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
}

.opening-title .line-1 { animation: fadeUp 1s var(--ease) 1s forwards; }
.opening-title .line-2 { animation: fadeUp 1s var(--ease) 1.3s forwards; }

.opening-subtitle {
    color: var(--silver);
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease) 1.8s forwards;
}

.opening-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease) 2.2s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--orange);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 99px;
    font-weight: 600;
    font-family: var(--font-display);
    transition: all 0.3s var(--ease);
}

.btn-primary:hover {
    background-color: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--orange-glow);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 99px;
    font-weight: 600;
    font-family: var(--font-display);
    transition: all 0.3s var(--ease);
}

.btn-outline:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 3s forwards, bounce 2s infinite 4s;
    z-index: var(--z-above);
}

/* Particles */
.sparks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: var(--z-base);
}

.spark {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--orange);
    border-radius: 50%;
    animation: spark-float 3s ease-in infinite;
    box-shadow: 0 0 6px var(--orange), 0 0 12px rgba(255,107,0,0.3);
}

.spark:nth-child(1) { bottom: 20%; left: 30%; animation-delay: 0s; animation-duration: 4s; }
.spark:nth-child(2) { bottom: 10%; left: 60%; animation-delay: 1.5s; animation-duration: 3.5s; }
.spark:nth-child(3) { bottom: 40%; left: 45%; animation-delay: 0.5s; animation-duration: 4.5s; }
.spark:nth-child(4) { bottom: 30%; left: 75%; animation-delay: 2s; animation-duration: 3s; }
.spark:nth-child(5) { bottom: 15%; left: 20%; animation-delay: 1s; animation-duration: 5s; }
.spark:nth-child(6) { bottom: 5%; left: 50%; animation-delay: 2.5s; animation-duration: 3.8s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

@keyframes spark-float {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-200px) translateX(30px) scale(0); opacity: 0; }
}

/* ==========================================================================
   HOMEPAGE: SHOWCASE STRIPS
   ========================================================================== */
.showcase-section {
    background-color: var(--black);
}

.showcase-strip {
    display: grid;
    grid-template-columns: 60% 40%;
    min-height: 70vh;
    width: 100%;
}

.showcase-strip:nth-child(even) {
    grid-template-columns: 40% 60%;
}

.strip-image-col {
    position: relative;
    overflow: hidden;
}

.showcase-strip:nth-child(even) .strip-image-col {
    order: 2;
}

.strip-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* for parallax room */
    transition: transform 0.1s linear;
}

.strip-text-col {
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10%;
}

.showcase-strip:nth-child(even) .strip-text-col {
    order: 1;
}

.strip-number {
    font-family: var(--font-display);
    color: var(--orange);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.strip-title {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.strip-desc {
    color: var(--silver);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.strip-link {
    color: var(--orange);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.strip-link:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* ==========================================================================
   HOMEPAGE: SERVICE MINI CARDS GRID
   ========================================================================== */
.services-grid-section {
    background-color: var(--light);
    padding: 8rem 0;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 4rem;
}

.services-row {
    display: flex;
    gap: 1.5rem;
    margin: 0 auto;
    padding: 0 5%;
    max-width: 1600px;
}

.service-card-mini {
    flex: 1;
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.service-card-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}

.service-card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: background 0.3s var(--ease);
}

.service-card-title {
    color: var(--white);
    font-size: 1.25rem;
    margin: 0;
    transition: transform 0.3s var(--ease);
}

.service-card-link {
    color: var(--orange);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s var(--ease);
    margin-top: 0.5rem;
}

.service-card-mini:hover .service-card-img {
    transform: scale(1.05);
}

.service-card-mini:hover .service-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 100%);
}

.service-card-mini:hover .service-card-title {
    transform: translateY(-5px);
}

.service-card-mini:hover .service-card-link {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   HOMEPAGE: STATS STORY
   ========================================================================== */
.stats-section {
    padding: 8rem 0;
    background-color: var(--white);
}

.stats-story {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    line-height: 2;
    color: var(--steel);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.stats-story .stat-highlight {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--orange);
    display: inline-block;
    line-height: 1.2;
    vertical-align: baseline;
    margin: 0 0.2rem;
}

/* ==========================================================================
   HOMEPAGE: BRAND WALL
   ========================================================================== */
.brand-wall-section {
    background-color: var(--black);
    padding: 8rem 0;
    text-align: center;
}

.brand-wall-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.brand-wall-subtitle {
    color: var(--silver);
    font-size: 1.125rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-inline: auto;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.brand-item {
    background-color: var(--black);
    aspect-ratio: 3/2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.brand-item img {
    max-height: 100%;
    max-width: 100%;
    filter: grayscale(100%) opacity(50%);
    transition: all 0.4s var(--ease);
    position: relative;
    z-index: 2;
}

.brand-item::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 40px;
    background: var(--orange);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    z-index: 1;
}

.brand-item:hover img {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.05);
}

.brand-item:hover::after {
    opacity: 0.3;
}

/* ==========================================================================
   HOMEPAGE: TWO BIG CARDS
   ========================================================================== */
.two-cards-section {
    padding: 8rem 0;
    background-color: var(--light);
}

.two-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.big-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.big-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.big-card.card-shop::before { background-image: url('../img_external/dukkan/2.jpeg'); }
.big-card.card-portal::before { background-image: url('../img_external/dukkan/15.jpeg'); }

.big-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.big-card:hover::before {
    opacity: 0.08;
}

.big-card i {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.big-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.big-card p {
    color: var(--smoke);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 80%;
}

/* ==========================================================================
   HOMEPAGE: CONTACT CTA
   ========================================================================== */
.cta-section {
    padding: 8rem 0;
    background-color: var(--dark-surface);
    text-align: center;
}

.cta-title {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.cta-subtext {
    color: var(--silver);
    font-size: 1.25rem;
    margin-bottom: 4rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 99px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s var(--ease);
}

.btn-whatsapp {
    background-color: var(--green-whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #1ea952;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-phone {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-phone:hover {
    background-color: var(--white);
    color: var(--dark-surface);
    transform: translateY(-3px);
}

.btn-email {
    background-color: var(--orange);
    color: var(--white);
}

.btn-email:hover {
    background-color: var(--orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--orange-glow);
}

/* ==========================================================================
   SUBPAGE HERO
   ========================================================================== */
.page-hero {
    height: 50vh;
    background-color: var(--black);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
}

.page-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: var(--z-base);
}

.page-hero-content {
    position: relative;
    z-index: var(--z-above);
}

.page-hero-title {
    color: var(--white);
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1rem;
}

.breadcrumb {
    color: var(--silver);
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    color: var(--orange);
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
/* ==========================================================================
   ABOUT PAGE - Dark Theme
   ========================================================================== */

/* Hero */
.ab-hero {
    position: relative;
    height: 45vh;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.ab-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}

.ab-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.75) 100%);
}

.ab-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 3rem;
}

/* About Section */
.ab-about-section {
    background: var(--black);
    padding: 5rem 0;
}

.ab-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ab-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,107,0,0.1);
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255,107,0,0.2);
    margin-bottom: 1.5rem;
}

.ab-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ab-text p {
    font-size: 1.05rem;
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.ab-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.ab-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    transition: all 0.3s var(--ease);
}

.ab-feature:hover {
    background: rgba(255,107,0,0.06);
    border-color: rgba(255,107,0,0.2);
}

.ab-feature i {
    color: var(--orange);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ab-feature span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.ab-image-wrap {
    position: relative;
}

.ab-image {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
}

.ab-experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(255,107,0,0.4);
}

.ab-exp-number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
}

.ab-exp-text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Vision & Mission */
.ab-vm-section {
    background: linear-gradient(180deg, var(--black) 0%, #111827 100%);
    padding: 5rem 0;
}

.ab-vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ab-vm-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border-top: 3px solid var(--orange);
    transition: all 0.4s var(--ease);
}

.ab-vm-card:hover {
    background: rgba(255,107,0,0.04);
    transform: translateY(-4px);
}

.ab-vm-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(255,107,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--orange);
    margin-bottom: 1.25rem;
}

.ab-vm-card h3 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.ab-vm-card p {
    color: var(--silver);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Stats */
.ab-stats-section {
    background: #111827;
    padding: 5rem 0;
}

.ab-section-title {
    font-family: var(--font-display);
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
}

.ab-section-subtitle {
    color: var(--silver);
    text-align: center;
    font-size: 1rem;
    margin-top: -1.5rem;
    margin-bottom: 2.5rem;
}

.ab-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ab-stat {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    transition: all 0.3s;
}

.ab-stat:hover {
    border-color: rgba(255,107,0,0.3);
}

.ab-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.ab-stat-label {
    color: var(--silver);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Gallery */
.ab-gallery-section {
    background: linear-gradient(180deg, #111827 0%, var(--black) 100%);
    padding: 5rem 0;
}

.ab-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.ab-gallery-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.06);
}

.ab-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.ab-gallery-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 1024px) {
    .ab-split { grid-template-columns: 1fr; gap: 2.5rem; }
    .ab-vm-grid { grid-template-columns: 1fr; }
    .ab-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ab-features { grid-template-columns: 1fr; }
    .ab-gallery { grid-template-columns: repeat(2, 1fr); }
    .ab-hero { height: 35vh; min-height: 260px; }
}

@media (max-width: 480px) {
    .ab-gallery { grid-template-columns: 1fr; }
    .ab-stats-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CATALOGS PAGE - Dark Theme
   ========================================================================== */

/* Hero */
.cat-hero {
    position: relative;
    height: 45vh;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.cat-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}

.cat-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
}

.cat-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 3rem;
}

/* Main Section */
.cat-section {
    background: linear-gradient(180deg, var(--black) 0%, #111827 100%);
    padding: 5rem 0 6rem;
}

.cat-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,107,0,0.1);
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255,107,0,0.2);
    margin-bottom: 1.25rem;
}

.cat-title {
    font-family: var(--font-display);
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cat-subtitle {
    color: var(--silver);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 4rem;
}

.cat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease);
}

.cat-card:hover {
    background: rgba(255,107,0,0.04);
    border-color: rgba(255,107,0,0.25);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.cat-thumb-wrap {
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    margin-bottom: 1.5rem;
}

.cat-thumb {
    max-height: 140px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s var(--ease);
}

.cat-card:hover .cat-thumb {
    transform: scale(1.06);
}

.cat-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,107,0,0.15);
    color: var(--orange);
    border: 1px solid rgba(255,107,0,0.3);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    text-transform: uppercase;
}

.cat-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cat-card-title {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cat-card-desc {
    color: var(--silver);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.cat-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.cat-btn {
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

.cat-btn-view {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.12);
}

.cat-btn-view:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    color: var(--white);
}

.cat-btn-dl {
    background: var(--orange);
    color: var(--white);
    border: 1px solid var(--orange);
}

.cat-btn-dl:hover {
    background: #e06000;
    border-color: #e06000;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,107,0,0.3);
}

/* Support Banner */
.cat-support-banner {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2.25rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cat-support-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(255,107,0,0.1);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.cat-support-text {
    flex: 1;
}

.cat-support-text h4 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.cat-support-text p {
    color: var(--silver);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

.cat-support-banner .btn-primary {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 1024px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-support-banner { flex-direction: column; text-align: center; gap: 1.5rem; }
}

@media (max-width: 768px) {
    .cat-hero { height: 35vh; min-height: 260px; }
    .cat-actions { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .cat-grid { grid-template-columns: 1fr; }
    .cat-card { padding: 1.5rem; }
}

.btn-outline-dark {
    border: 1px solid var(--cloud);
    color: var(--dark);
    background: transparent;
}
.btn-outline-dark:hover {
    background: var(--light);
    border-color: var(--smoke);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
/* ==========================================================================
   CONTACT PAGE - Dark Theme
   ========================================================================== */

/* Hero */
.ct-hero {
    position: relative;
    height: 45vh;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.ct-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}

.ct-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.75) 100%);
}

.ct-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 3rem;
}

.ct-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--silver);
    margin-bottom: 1rem;
}

.ct-breadcrumb a { color: var(--orange); text-decoration: none; }
.ct-breadcrumb a:hover { text-decoration: underline; }

.ct-hero-title {
    font-family: var(--font-display);
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ct-hero-desc {
    color: var(--silver);
    font-size: 1.1rem;
}

/* Cards Section */
.ct-cards-section {
    background: var(--black);
    padding: 3rem 0;
    margin-top: -1px;
}

.ct-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.ct-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s var(--ease);
    display: block;
}

a.ct-card:hover {
    background: rgba(255,107,0,0.08);
    border-color: rgba(255,107,0,0.3);
    transform: translateY(-4px);
}

.ct-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(255,107,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--orange);
    transition: all 0.3s;
}

a.ct-card:hover .ct-card-icon {
    background: var(--orange);
    color: var(--white);
}

.ct-card-whatsapp .ct-card-icon {
    background: rgba(37,211,102,0.12);
    color: #25d366;
}

a.ct-card-whatsapp:hover .ct-card-icon {
    background: #25d366;
    color: var(--white);
}

.ct-card h3 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.ct-card p {
    color: var(--silver);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.ct-card-action {
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.ct-card-action-muted { color: var(--smoke); }

/* Main Section */
.ct-main-section {
    background: linear-gradient(180deg, var(--black) 0%, #111827 100%);
    padding: 4rem 0 5rem;
}

.ct-alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ct-alert-success {
    background: rgba(34,197,94,0.12);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.2);
}

.ct-alert-error {
    background: rgba(239,68,68,0.12);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.2);
}

.ct-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Form */
.ct-form-wrap {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 2.5rem;
}

.ct-form-header {
    margin-bottom: 2rem;
}

.ct-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,107,0,0.1);
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255,107,0,0.2);
    margin-bottom: 1rem;
}

.ct-form-header h2 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ct-form-header p {
    color: var(--silver);
    font-size: 0.95rem;
    line-height: 1.6;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ct-form-group {
    margin-bottom: 1.25rem;
}

.ct-form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--silver);
    margin-bottom: 0.5rem;
}

.ct-form-group label i {
    color: var(--orange);
    margin-right: 0.3rem;
}

.ct-form-group input,
.ct-form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease);
}

.ct-form-group input::placeholder,
.ct-form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.ct-form-group input:focus,
.ct-form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255,107,0,0.04);
    box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}

.ct-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s var(--ease);
}

.ct-submit-btn:hover {
    background: #e06000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,0,0.3);
}

/* Sidebar */
.ct-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ct-address-card,
.ct-quick-contact,
.ct-social-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 1.75rem;
}

.ct-address-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(255,107,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

.ct-address-card h3,
.ct-quick-contact h3,
.ct-social-card h3 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.ct-address-card p {
    color: var(--silver);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ct-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.ct-directions-btn:hover { gap: 0.7rem; }

.ct-quick-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s;
    margin-bottom: 0.5rem;
}

.ct-quick-item:hover {
    background: rgba(255,255,255,0.04);
}

.ct-quick-item i {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,107,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ct-quick-whatsapp i {
    background: rgba(37,211,102,0.12);
    color: #25d366;
}

.ct-quick-item div span {
    display: block;
    font-size: 0.75rem;
    color: var(--smoke);
}

.ct-quick-item div strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
}

.ct-social-links {
    display: flex;
    gap: 0.75rem;
}

.ct-social-links a {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.ct-social-links a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* Map */
.ct-map {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

.ct-map iframe {
    filter: grayscale(0.3) brightness(0.85);
}

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

@media (max-width: 768px) {
    .ct-form-row { grid-template-columns: 1fr; }
    .ct-hero { height: 35vh; min-height: 260px; }
}

@media (max-width: 480px) {
    .ct-cards-grid { grid-template-columns: 1fr; }
    .ct-form-wrap { padding: 1.5rem; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--black);
    color: var(--silver);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer-accent {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--silver);
}

.footer-links a:hover {
    color: var(--orange);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.social-icon:hover {
    background-color: var(--orange);
    color: var(--white);
    box-shadow: 0 0 15px var(--orange-glow);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.admin-link {
    color: rgba(255,255,255,0.1); /* hidden visually mostly */
}
.admin-link:hover { color: var(--silver); }

.back-to-top {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--steel);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease);
}
.back-to-top:hover {
    background-color: var(--orange);
}

/* ==========================================================================
   PORTAL LAYOUT (As requested)
   ========================================================================== */
.portal-layout { display: flex; min-height: 100vh; background-color: #f8fafc; }
.portal-sidebar { width: 260px; background-color: #0d1b2a; color: white; flex-shrink: 0; }
.portal-main { flex-grow: 1; padding: 2rem; overflow-x: hidden; }
.portal-card { background: white; border-radius: 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); padding: 1.5rem; margin-bottom: 1.5rem; }
.portal-table { width: 100%; border-collapse: collapse; }
.portal-table th, .portal-table td { padding: 1rem; text-align: left; border-bottom: 1px solid #e2e8f0; }
.portal-table th { background-color: #f8fafc; font-weight: 600; }
.status-badge { padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600; }
.status-bekliyor { background-color: #fef3c7; color: #92400e; }
.status-onaylandi { background-color: #d1fae5; color: #065f46; }
.status-red { background-color: #fee2e2; color: #b91c1c; }
.status-tamamlandi { background-color: #dbeafe; color: #1e40af; }

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
    .showcase-strip, .showcase-strip:nth-child(even) {
        grid-template-columns: 50% 50%;
    }
    .brand-grid { grid-template-columns: repeat(3, 1fr); }
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links, .btn-portal { display: none; }
    .mobile-toggle { display: flex; }
    
    .showcase-strip, .showcase-strip:nth-child(even) {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .showcase-strip:nth-child(even) .strip-image-col { order: unset; }
    .showcase-strip:nth-child(even) .strip-text-col { order: unset; }
    
    .strip-image-col { height: 40vh; }
    .strip-text-col { padding: 3rem 1.5rem; }
    
    .services-row {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }
    .service-card-mini {
        min-width: 280px;
        scroll-snap-align: center;
    }
    
    .two-cards-grid { grid-template-columns: 1fr; }
    .catalog-grid { grid-template-columns: 1fr; }
    
    .cta-buttons { flex-direction: column; }
    .btn-cta { width: 100%; justify-content: center; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    
    .portal-layout { flex-direction: column; }
    .portal-sidebar { width: 100%; }
    .portal-main { padding: 1rem; }
}

@media (max-width: 480px) {
    .brand-grid { grid-template-columns: repeat(2, 1fr); }
    .opening-title { font-size: 3rem; }
}

/* Nav Dropdown Desktop */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-dropdown > a {
    display: flex;
    align-items: center;
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #111827;
    min-width: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #fff;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}
.nav-dropdown-menu a i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    color: #fff;
    transition: color 0.2s ease;
}
.nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ff6b00;
}
.nav-dropdown-menu a:hover i {
    color: #ff6b00;
}

/* Mobile Sub Menu */
.mobile-sub-menu {
    display: flex;
    flex-direction: column;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.mobile-sub-menu a {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
}
.mobile-sub-menu a i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

/* =============================================
   SECTION: Teknik Servis & Tamir Hizmetleri
   ============================================= */
.servis-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111827 50%, #0a0a0a 100%);
}

.servis-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.servis-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 0, 0.12);
    color: var(--orange);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 107, 0, 0.25);
    margin-bottom: 1.5rem;
}

.servis-title {
    font-family: var(--font-display);
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.servis-subtitle {
    color: var(--silver);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.servis-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.servis-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all 0.4s var(--ease);
    cursor: default;
}

.servis-item:hover {
    background: rgba(255, 107, 0, 0.06);
    border-color: rgba(255, 107, 0, 0.25);
    transform: translateY(-4px);
}

.servis-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--orange);
    transition: all 0.4s var(--ease);
}

.servis-item:hover .servis-icon {
    background: var(--orange);
    color: var(--white);
    transform: scale(1.1);
}

.servis-item h3 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.servis-item p {
    color: var(--silver);
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0;
}

.servis-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.servis-cta > p {
    color: var(--silver);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.servis-cta > p i {
    color: #22c55e;
    margin-right: 0.4rem;
}

.servis-cta > p strong {
    color: var(--white);
}

.servis-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.servis-cta-buttons .btn-primary,
.servis-cta-buttons .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

@media (max-width: 768px) {
    .servis-grid { grid-template-columns: repeat(2, 1fr); }
    .servis-section { padding: 4rem 0; }
}

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