/* ==========================================================================
   AYAZ ELEKTRONİK - CHİP TUNİNG &
   Design System - Yellow & Black Racing / High-Performance Theme
   ========================================================================== */

:root {
    /* Color Palette - Yellow & Black High Contrast Theme */
    --bg-dark: #090a0c;
    --bg-surface: #101216;
    --bg-card: #151820;
    --bg-card-hover: #1e222d;
    
    /* Brand Accents - Performance Yellow & Amber */
    --primary-yellow: #f5b000;
    --primary-yellow-bright: #ffcc00;
    --primary-yellow-glow: rgba(245, 176, 0, 0.4);
    --secondary-orange: #ff7700;
    --secondary-orange-glow: rgba(255, 119, 0, 0.4);
    --accent-cyan: #00e5ff;
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-dark: #0a0b0d;
    
    /* Borders & Glassmorphism */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(245, 176, 0, 0.4);
    --glass-bg: rgba(21, 24, 32, 0.75);
    --glass-blur: blur(16px);
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 10px 30px rgba(245, 176, 0, 0.3);
    --shadow-orange-glow: 0 10px 30px rgba(255, 119, 0, 0.3);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(245, 176, 0, 0.07) 0%, transparent 40%),
        radial-gradient(circle at 85% 65%, rgba(255, 119, 0, 0.05) 0%, transparent 40%);
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4rem auto;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: var(--primary-yellow);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-orange));
    color: var(--text-dark);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 176, 0, 0.4);
    background: linear-gradient(135deg, var(--primary-yellow-bright), var(--primary-yellow));
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border-color: var(--border-color);
    backdrop-filter: var(--glass-blur);
}

.btn-outline:hover {
    background: rgba(245, 176, 0, 0.1);
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
    transform: translateY(-3px);
}

.btn-whatsapp-header {
    background: #25d366;
    color: #fff;
    padding: 0.65rem 1.3rem;
    font-size: 0.95rem;
    border-radius: 50px;
}

.btn-whatsapp-header:hover {
    background: #20bd5a;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-whatsapp-full {
    width: 100%;
    background: #25d366;
    color: #fff;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 8px;
}

.btn-whatsapp-full:hover {
    background: #20bd5a;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 0.9rem 0;
    background: #090a0c !important;
    border-bottom: 1px solid rgba(255, 204, 0, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.95);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, padding 0.3s ease;
}

.header.header-hidden {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.header.scrolled {
    background: #07080a !important;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 204, 0, 0.35);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.98);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: nowrap;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-graphic {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 12px rgba(245, 176, 0, 0.45));
    transition: var(--transition);
}

.logo:hover .logo-graphic {
    transform: scale(1.08) rotate(4deg);
    filter: drop-shadow(0 0 20px rgba(245, 176, 0, 0.7));
}

.brand-svg-logo {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-primary);
    line-height: 1;
}

.brand-name .highlight {
    color: var(--primary-yellow);
}

.brand-sub {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--secondary-orange);
    margin-top: 2px;
    line-height: 1.1;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-wrap: nowrap;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 0.3rem 0;
    white-space: nowrap;
}

.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: var(--primary-yellow);
    transition: var(--transition);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(245, 176, 0, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(245, 176, 0, 0.12);
    border: 1px solid rgba(245, 176, 0, 0.35);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-yellow-bright), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-plus, .stat-percent {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-yellow);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Visual ECU Card */
.ecu-visual-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-highlight);
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    position: relative;
}

.ecu-visual-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-yellow), transparent, var(--secondary-orange));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.4;
}

.visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.visual-badge {
    color: #25d366;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.visual-chip-code {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.4);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.visual-display {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gauge-box {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
}

.gauge-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.gauge-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.gauge-value small {
    font-size: 1rem;
    color: var(--text-secondary);
}

.gauge-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0.6rem 0;
}

.gauge-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-orange));
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

.gauge-fill.orange {
    background: linear-gradient(90deg, var(--secondary-orange), #ff9900);
}

.gauge-increase {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.visual-features {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.visual-features span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.visual-features i {
    color: var(--primary-yellow);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border-highlight);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.service-card.featured {
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(245, 176, 0, 0.15);
}

.featured-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--primary-yellow);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 176, 0, 0.12);
    border: 1px solid rgba(245, 176, 0, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-yellow);
    color: var(--text-dark);
    box-shadow: var(--shadow-glow);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.service-list li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-list li i {
    color: var(--primary-yellow);
    font-size: 0.8rem;
}

/* Calculator Section */
.calculator-section {
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-surface), var(--bg-dark));
    position: relative;
}

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

.calc-info .section-title {
    text-align: left;
}

.calc-guarantee-box {
    display: flex;
    gap: 1.2rem;
    background: rgba(245, 176, 0, 0.08);
    border: 1px solid rgba(245, 176, 0, 0.25);
    border-radius: 14px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.calc-guarantee-box i {
    font-size: 2.2rem;
    color: var(--primary-yellow);
}

.calc-guarantee-box h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.calc-guarantee-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.calc-box {
    background: var(--bg-card);
    border: 1px solid var(--border-highlight);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.calc-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.calc-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-primary);
}

.calc-form .form-group {
    margin-bottom: 1.8rem;
}

.calc-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.fuel-options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.fuel-radio {
    cursor: pointer;
}

.fuel-radio input {
    display: none;
}

.fuel-radio span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.fuel-radio input:checked + span {
    background: rgba(245, 176, 0, 0.15);
    border-color: var(--primary-yellow);
    color: var(--text-primary);
    font-weight: 600;
}

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

input[type="range"] {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
    accent-color: var(--primary-yellow);
}

/* Calculator Result Cards */
.calc-result-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin: 2rem 0;
}

.result-card {
    background: rgba(245, 176, 0, 0.08);
    border: 1px solid rgba(245, 176, 0, 0.3);
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
}

.result-card.orange {
    background: rgba(255, 119, 0, 0.08);
    border-color: rgba(255, 119, 0, 0.3);
}

.result-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.result-values {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.old-val {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.new-val {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
}

.result-gain {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.5rem;
}

.brand-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.brand-item i {
    font-size: 2rem;
    color: var(--primary-yellow);
}

.brand-item span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.brand-item:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    background: var(--bg-card-hover);
}

/* Why Choose Us Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-6px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(245, 176, 0, 0.12);
    border: 1px solid rgba(245, 176, 0, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-yellow);
    margin: 0 auto 1.5rem auto;
}

.feature-box h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.feature-box p {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-question {
    width: 100%;
    padding: 1.4rem 1.8rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    color: var(--primary-yellow);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
    padding: 0 1.8rem;
    background: rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.2rem 1.8rem 1.6rem 1.8rem;
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info .section-title {
    text-align: left;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-top: 2.5rem;
}

.c-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.c-icon {
    width: 50px;
    height: 50px;
    background: rgba(245, 176, 0, 0.12);
    border: 1px solid rgba(245, 176, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-yellow);
    flex-shrink: 0;
}

.c-detail-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.c-detail-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.c-detail-item a {
    color: var(--primary-yellow);
    font-weight: 600;
}

.c-detail-item a:hover {
    text-decoration: underline;
}

.social-links-box {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
}

.social-btn.facebook:hover {
    background: #1877f2;
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
}

.contact-form-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-form-box h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-form .form-group {
    margin-bottom: 1.2rem;
}

.contact-form label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.contact-form input, .contact-form select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus, .contact-form select:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 12px rgba(245, 176, 0, 0.25);
}

/* Footer */
.footer {
    background: #050608;
    border-top: 1px solid var(--border-color);
    padding-top: 5rem;
}

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

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 1.2rem;
    max-width: 400px;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social-icon:hover {
    background: var(--primary-yellow);
    color: var(--text-dark);
    border-color: var(--primary-yellow);
    transform: translateY(-3px);
}

.footer-links h4, .footer-services h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links ul, .footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a, .footer-services a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover, .footer-services a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1.8rem 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

/* Sticky WhatsApp Float */
.float-whatsapp {
    position. fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
}

.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
}

.float-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.float-whatsapp:hover .float-tooltip {
    opacity: 1;
    right: 75px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-container, .calculator-wrapper, .contact-wrapper, .footer-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .calc-info .section-title, .contact-info .section-title {
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(9, 10, 12, 0.98);
        backdrop-filter: var(--glass-blur);
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        border-bottom: 1px solid var(--border-color);
    }

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

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .form-row, .calc-result-box {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .btn-text {
        display: none;
    }

    .btn-whatsapp-header {
        padding: 0.6rem 0.8rem;
    }
}

/* ==========================================================================
   GALLERY / COMPLETED WORKS SECTION STYLES
   ========================================================================== */
.gallery {
    background: var(--bg-surface);
    position: relative;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.75rem 1.4rem;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn i {
    color: var(--primary-yellow);
    font-size: 0.95rem;
}

.filter-btn:hover {
    background: rgba(245, 176, 0, 0.12);
    border-color: rgba(245, 176, 0, 0.4);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--text-dark);
    box-shadow: var(--shadow-glow);
}

.filter-btn.active i {
    color: var(--text-dark);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.gallery-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card.hide {
    display: none;
}

.gallery-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(245, 176, 0, 0.15);
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 14, 20, 0.2) 0%, rgba(12, 14, 20, 0.95) 100%);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0.9;
    transition: var(--transition);
}

.gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    align-self: flex-start;
    background: rgba(245, 176, 0, 0.2);
    border: 1px solid rgba(245, 176, 0, 0.4);
    color: var(--primary-yellow);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.gallery-item-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.gallery-item-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-zoom-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.gallery-zoom-btn:hover {
    background: var(--primary-yellow);
    color: var(--text-dark);
    border-color: var(--primary-yellow);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 6, 8, 0.92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    background: var(--bg-card);
    border: 1px solid var(--border-highlight);
    border-radius: 20px;
    max-width: 850px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
    transform: scale(0.9);
    transition: transform 0.35s ease;
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--secondary-orange);
    color: #fff;
    border-color: var(--secondary-orange);
}

.lightbox-body {
    display: grid;
    grid-template-columns: 1fr;
}

.lightbox-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
}

.lightbox-info {
    padding: 1.8rem 2rem;
    background: var(--bg-card);
}

.lightbox-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0.6rem 0;
}

.lightbox-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.82rem;
    }

    .lightbox-modal {
        padding: 1rem;
    }
    
    .lightbox-img {
        max-height: 300px;
    }
}

/* ==========================================================================
   ADMIN PORTAL & ECU FILE ARCHIVE STYLES
   ========================================================================== */
.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-lock-btn {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.admin-lock-btn:hover {
    color: var(--primary-yellow);
    background: rgba(245, 176, 0, 0.2);
    border-color: var(--primary-yellow);
    box-shadow: 0 0 10px rgba(245, 176, 0, 0.3);
}

/* Admin Login Modal */
.admin-login-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(5, 6, 8, 0.95);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.admin-login-modal.active {
    opacity: 1;
    visibility: visible;
}

.admin-login-card {
    background: var(--bg-card);
    border: 1px solid var(--border-highlight);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 440px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), var(--shadow-glow);
    transform: scale(0.9);
    transition: transform 0.35s ease;
}

.admin-login-modal.active .admin-login-card {
    transform: scale(1);
}

.admin-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.admin-modal-close:hover {
    color: var(--secondary-orange);
}

.admin-login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-lock-icon {
    width: 64px;
    height: 64px;
    background: rgba(245, 176, 0, 0.12);
    border: 1px solid rgba(245, 176, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-yellow);
    margin: 0 auto 1rem auto;
}

.admin-login-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.admin-login-header p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.admin-login-form .form-group {
    margin-bottom: 1.5rem;
}

.admin-login-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.admin-login-form input[type="password"] {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.admin-login-form input[type="password"]:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 12px rgba(245, 176, 0, 0.3);
}

.admin-login-options {
    margin-bottom: 1.2rem;
}

.remember-me {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.remember-me input {
    accent-color: var(--primary-yellow);
}

.admin-login-error {
    background: rgba(255, 77, 77, 0.12);
    border: 1px solid rgba(255, 77, 77, 0.4);
    color: #ff6b6b;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.88rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-login-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Fullscreen Dashboard Modal */
.admin-dashboard-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: #090a0c;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.admin-dashboard-modal.active {
    opacity: 1;
    visibility: visible;
}

.admin-dashboard-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem 4rem 2rem;
}

/* Dashboard Top Header */
.admin-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.2rem 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.admin-dash-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-yellow);
    color: var(--text-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.admin-dash-brand h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.admin-badge-status {
    font-size: 0.78rem;
    color: #4cd964;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.admin-badge-status i {
    font-size: 0.5rem;
}

.admin-user-pill {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-yellow);
    background: rgba(245, 176, 0, 0.15);
    border: 1px solid rgba(245, 176, 0, 0.35);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-icon.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.admin-dash-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-stats-pills {
    display: flex;
    gap: 0.6rem;
    margin-right: 1rem;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.stat-pill strong {
    color: var(--primary-yellow);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-outline-yellow {
    background: rgba(245, 176, 0, 0.1);
    border: 1px solid rgba(245, 176, 0, 0.4);
    color: var(--primary-yellow);
}

.btn-outline-yellow:hover {
    background: var(--primary-yellow);
    color: var(--text-dark);
}

.btn-danger {
    background: rgba(255, 77, 77, 0.15);
    border: 1px solid rgba(255, 77, 77, 0.4);
    color: #ff6b6b;
}

.btn-danger:hover {
    background: #ff4d4d;
    color: #fff;
}

/* Toolbar & Search */
.admin-dash-toolbar {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.admin-search-box {
    flex-grow: 1;
    position: relative;
}

.admin-search-box i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-yellow);
    font-size: 1.1rem;
}

.admin-search-box input {
    width: 100%;
    padding: 1rem 1.2rem 1rem 3.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.admin-search-box input:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 15px rgba(245, 176, 0, 0.2);
}

/* Form Container & Inputs */
.admin-form-container {
    margin-bottom: 2.5rem;
    animation: fadeIn 0.4s ease;
}

.admin-form-card {
    background: var(--bg-card);
    border: 1px solid var(--primary-yellow);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.admin-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.admin-form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-yellow);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-close-form {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.3rem;
    cursor: pointer;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.label-heading {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 0.8rem;
}

.ops-checkbox-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    padding: 1.2rem;
    border-radius: 12px;
}

.op-badge-check {
    cursor: pointer;
}

.op-badge-check input {
    display: none;
}

.op-badge-check span {
    display: inline-block;
    padding: 0.5rem 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.op-badge-check input:checked + span {
    background: rgba(245, 176, 0, 0.2);
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
    font-weight: 700;
}

.admin-record-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.95rem;
    outline: none;
    resize: vertical;
}

.admin-file-uploads {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.8rem 0;
}

.file-upload-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px stroke var(--border-color);
    border-style: dashed;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.file-upload-card:hover {
    border-color: var(--primary-yellow);
    background: rgba(245, 176, 0, 0.05);
}

.file-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.file-card-icon.ori {
    background: rgba(76, 217, 100, 0.15);
    color: #4cd964;
}

.file-card-icon.mod {
    background: rgba(245, 176, 0, 0.15);
    color: var(--primary-yellow);
}

.file-card-info h4 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.file-card-info p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.file-input {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.file-selected-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-top: 0.3rem;
}

.admin-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Records List Grid & Cards */
.admin-records-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-color);
}

.admin-records-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.records-found-tag {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.admin-records-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.8rem;
}

.rec-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.8rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.rec-card:hover {
    border-color: var(--border-highlight);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.rec-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

/* Turkish License Plate Badge */
.tr-plate-badge {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #000000;
    border: 2px solid #000000;
    border-radius: 5px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.tr-plate-badge .tr-blue {
    background: #003399;
    color: #ffffff;
    padding: 0.3rem 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.tr-plate-badge .tr-num {
    padding: 0.2rem 0.6rem;
    text-transform: uppercase;
}

.rec-date {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.rec-cust-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.rec-cust-info p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.rec-details-box {
    margin: 1.2rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.88rem;
}

.rec-details-row {
    display: flex;
    justify-content: space-between;
}

.rec-details-row span {
    color: var(--text-secondary);
}

.rec-details-row strong {
    color: var(--text-primary);
}

.rec-ops-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.op-tag {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    background: rgba(245, 176, 0, 0.15);
    color: var(--primary-yellow);
    border: 1px solid rgba(245, 176, 0, 0.3);
}

.rec-notes-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem;
    border-radius: 8px;
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

/* Financial Cost Box */
.rec-financial-box {
    background: rgba(245, 176, 0, 0.06);
    border: 1px solid rgba(245, 176, 0, 0.25);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.rec-cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
}

.rec-cost-row.total {
    border-top: 1px dashed rgba(245, 176, 0, 0.3);
    padding-top: 0.4rem;
    margin-top: 0.2rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-yellow);
}


.rec-file-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.btn-file-dl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-file-dl.ori {
    background: rgba(76, 217, 100, 0.12);
    border: 1px solid rgba(76, 217, 100, 0.3);
    color: #4cd964;
}

.btn-file-dl.ori:hover {
    background: #4cd964;
    color: #000;
}

.btn-file-dl.mod {
    background: rgba(245, 176, 0, 0.12);
    border: 1px solid rgba(245, 176, 0, 0.35);
    color: var(--primary-yellow);
}

.btn-file-dl.mod:hover {
    background: var(--primary-yellow);
    color: var(--text-dark);
}

.rec-card-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--primary-yellow);
    color: var(--text-dark);
    border-color: var(--primary-yellow);
}

.btn-icon.delete:hover {
    background: #ff4d4d;
    color: #fff;
    border-color: #ff4d4d;
}

/* Vehicle Record Photo Thumbnails */
.rec-photos-section {
    margin-bottom: 1.2rem;
}

.rec-photos-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.rec-photos-grid {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.rec-photo-thumb {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.rec-photo-thumb:hover {
    transform: scale(1.08);
    border-color: var(--primary-yellow);
    box-shadow: 0 0 12px rgba(245, 176, 0, 0.5);
}

@media (max-width: 768px) {
    .admin-dash-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admin-file-uploads {
        grid-template-columns: 1fr;
    }
    
    .admin-dash-toolbar {
        flex-direction: column;
    }
    
    .admin-records-grid {
        grid-template-columns: 1fr;
    }
}


