/* C:\Users\Taner\.gemini\antigravity\scratch\savran-web-tasarim\assets\css\style.css */

/* Core Variables - Fresh Clean Emerald & Teal Light System */
:root {
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    --bg-main: #f8fafc;       /* Fresh Clean Off-White / Slate-50 */
    --bg-card: #ffffff;       /* Pure White Crisp Surface */
    --bg-glass: rgba(255, 255, 255, 0.92);
    --border-glass: rgba(15, 23, 42, 0.08); /* Soft slate borders */
    
    --primary: #10b981;       /* Vibrant Emerald Green */
    --primary-glow: rgba(16, 185, 129, 0.15);
    --secondary: rgba(16, 185, 129, 0.04);
    --secondary-glow: rgba(16, 185, 129, 0.03);
    --cyan: #06b6d4;          /* Vibrant Cyan/Teal */
    --cyan-glow: rgba(6, 182, 212, 0.15);
    
    --text-white: #0f172a;     /* Deep Charcoal Headings */
    --text-primary: #1e293b;   /* Slate-800 Main Body Text */
    --text-secondary: #475569; /* Slate-600 Muted Text */
    --text-muted: #64748b;     /* Slate-500 Captions */
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    --glow-cyan: 0 10px 30px rgba(6, 182, 212, 0.15);
    --glow-purple: 0 10px 30px rgba(16, 185, 129, 0.15);
}

/* ===========================
   DARK MODE THEME OVERRIDES
   =========================== */
[data-theme="dark"] {
    --bg-main: #0b1120;
    --bg-card: #131d2e;
    --bg-glass: rgba(15, 28, 50, 0.95);
    --border-glass: rgba(16, 185, 129, 0.12);

    --text-white: #f1f5f9;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
}

[data-theme="dark"] body {
    background-color: var(--bg-main);
    color: var(--text-primary);
}

[data-theme="dark"] .glass-card {
    background: var(--bg-card) !important;
    border-color: var(--border-glass) !important;
    color: var(--text-primary);
}

[data-theme="dark"] .navbar {
    background: rgba(11, 17, 32, 0.96);
    border-bottom-color: rgba(16, 185, 129, 0.12);
}

[data-theme="dark"] .nav-link {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
    color: #10b981 !important;
}

[data-theme="dark"] .section-title {
    color: var(--text-white) !important;
}

[data-theme="dark"] .section-tag {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
}

[data-theme="dark"] h1, [data-theme="dark"] h2, [data-theme="dark"] h3 {
    color: var(--text-white);
}

[data-theme="dark"] .stat-card {
    background: var(--bg-card) !important;
}

[data-theme="dark"] .service-title, [data-theme="dark"] .service-desc {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .form-control {
    background: rgba(255,255,255,0.05);
    border-color: rgba(16,185,129,0.2);
    color: var(--text-primary);
}

[data-theme="dark"] .form-control:focus {
    background: rgba(255,255,255,0.08);
}

[data-theme="dark"] .blog-card,
[data-theme="dark"] .reference-card {
    background: var(--bg-card) !important;
}

[data-theme="dark"] #darkModeBtn {
    border-color: rgba(16,185,129,0.3) !important;
    color: #10b981 !important;
}

.testimonials-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    gap: 24px !important;
    padding: 10px 4px 24px 4px !important;
    margin-top: 40px;
    -webkit-overflow-scrolling: touch !important;
}

.testimonials-grid::-webkit-scrollbar {
    height: 6px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.2);
    border-radius: 3px;
}
.testimonials-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 185, 129, 0.5);
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    flex: 0 0 360px !important;
    scroll-snap-align: start !important;
    margin: 0 !important;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.1);
}

[data-theme="dark"] .testimonial-card {
    background: var(--bg-card) !important;
    border-color: var(--border-glass);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 14px;
}

.testimonial-content {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(15,23,42,0.06);
    padding-top: 16px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #0f172a;
}

[data-theme="dark"] .testimonial-name { color: var(--text-white); }

.testimonial-title {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 24px;
    color: rgba(16, 185, 129, 0.15);
    font-size: 2.5rem;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.comparison-table th {
    background: #0f172a;
    color: #fff;
    padding: 16px 20px;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-align: center;
}

.comparison-table th:first-child {
    text-align: left;
    background: #064e3b;
}

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(15,23,42,0.06);
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-secondary);
    background: #fff;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #0f172a;
    background: rgba(16, 185, 129, 0.03);
}

[data-theme="dark"] .comparison-table td {
    background: var(--bg-card);
    color: var(--text-secondary);
    border-bottom-color: rgba(255,255,255,0.06);
}

[data-theme="dark"] .comparison-table td:first-child {
    background: rgba(16,185,129,0.05);
    color: var(--text-white);
}

.comparison-table .check { color: #10b981; }
.comparison-table .cross { color: #ef4444; }

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.popup-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.4s cubic-bezier(0.4,0,0.2,1);
}

[data-theme="dark"] .popup-card { background: #131d2e; }

.popup-card .popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.08);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.2s;
}

.popup-card .popup-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Global Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Glow Background Particles - Extremely Subtle Ambient Highlights */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(160px);
    z-index: -1;
    opacity: 0.12;
    pointer-events: none;
}

.glow-1 {
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: -150px;
    left: -200px;
}

.glow-2 {
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    top: 600px;
    right: -250px;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.35);
}

.btn-secondary {
    background: rgba(16, 185, 129, 0.08);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.btn-secondary:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.15);
}

.btn-outline:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    transform: translateY(-1px);
}

/* Glass Card Helper */
.glass-card {
    background: #ffffff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.04), 0 4px 12px -2px rgba(15, 23, 42, 0.02);
    transition: var(--transition-normal);
}

.glass-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.12);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 16px 0;
    transition: var(--transition-fast);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: #10b981;
    border-bottom: 2px solid #10b981;
    padding-bottom: 2px;
}

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

.nav-link {
    color: #475569;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.88rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: #10b981;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #10b981;
    transition: var(--transition-fast);
}

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

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle .bar {
    width: 22px;
    height: 2px;
    background-color: #0f172a;
    border-radius: 1px;
    transition: var(--transition-fast);
}

/* Global Content Layout */
.main-content {
    padding-top: 80px;
    min-height: 100vh;
}

/* Section styling */
.section {
    padding: 60px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-tag {
    font-family: var(--font-secondary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.2);
    background: rgba(16, 185, 129, 0.06);
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 14px auto 0 auto;
    font-size: 0.98rem;
    line-height: 1.6;
}

/* --- Premium Split Hero Section --- */
.hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    padding: 70px 24px 30px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    color: #047857;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.78rem;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    margin-right: 8px;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.4rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.2px;
}

.hero-title span {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-mockup-wrapper {
    margin-top: 0;
    width: 100%;
    max-width: 520px;
    padding: 0;
}

.hero-mockup-frame {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

.frame-header {
    height: 38px;
    background: #f1f5f9;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 6px;
    position: relative;
}

.frame-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.2);
}

.frame-address {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.7rem;
    color: var(--text-muted);
    background: #ffffff;
    padding: 3px 18px;
    border-radius: 4px;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.hero-mockup-img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    padding: 36px 28px;
    text-align: left;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.04);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.12);
}

.service-icon {
    width: 46px;
    height: 46px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #059669;
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: #10b981;
    color: #ffffff;
}

.service-title {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Stats / Why Us --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 2.8rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 8px;
}

.stat-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.stats-section {
    padding-top: 10px;
    padding-bottom: 50px;
}

/* --- Portfolio/References Slider --- */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    color: var(--text-secondary);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
    background: #ffffff;
    color: #09090b;
    border-color: #ffffff;
}

.references-slider-container {
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.slider-viewport {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 32px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    cursor: grab;
}

.slider-track:active {
    cursor: grabbing;
}

.slider-slide {
    flex: 0 0 calc(33.333% - 21.33px);
    min-width: 320px;
    box-sizing: border-box;
}

.slider-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    transition: var(--transition-fast);
    cursor: pointer;
}

.slider-controls button:hover {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 992px) {
    .slider-slide {
        flex: 0 0 calc(50% - 16px);
    }
}

@media (max-width: 600px) {
    .slider-slide {
        flex: 0 0 100%;
    }
    .slider-track {
        gap: 16px;
    }
}

.reference-card {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-glass);
}

.reference-image-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #000;
    border-bottom: 1px solid var(--border-glass);
}

.reference-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.reference-card:hover .reference-image {
    transform: scale(1.03);
    opacity: 0.7;
}

.reference-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 9, 11, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.reference-card:hover .reference-overlay {
    opacity: 1;
}

.reference-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reference-cat {
    font-family: var(--font-secondary);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: inline-block;
}

.reference-title {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.reference-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 16px;
    flex: 1;
    line-height: 1.5;
}

.reference-link {
    color: var(--text-white);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-fast);
}

.reference-link:hover {
    color: var(--text-white);
    border-bottom: 1px solid #ffffff;
}

/* --- Interactive Multi-Step Calculator --- */
.calculator-container {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--border-glass);
}

.calculator-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calc-title {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
}

.calc-steps-indicator {
    display: flex;
    gap: 12px;
}

.calc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: var(--transition-fast);
}

.calc-dot.active {
    background: #ffffff;
}

.calc-dot.completed {
    background: rgba(255, 255, 255, 0.4);
}

/* Progress Bar */
.calc-progress-wrapper {
    height: 2px;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
}

.calc-progress-bar {
    height: 100%;
    width: 20%;
    background: #ffffff;
    transition: var(--transition-normal);
}

.calculator-body {
    padding: 24px;
    display: flex;
    gap: 24px;
}

.calc-left {
    flex: 1.8;
}

.calc-right {
    flex: 1.2;
    border-left: 1px solid var(--border-glass);
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Steps Wrapper */
.calc-step {
    display: none;
    animation: fadeSlide 0.4s ease;
}

.calc-step.active {
    display: block;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.82rem;
    margin-bottom: 18px;
}

/* Choice Option Cards */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.option-card {
    padding: 16px 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--border-radius-md);
    background: #ffffff;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.option-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.02);
}

.option-card.selected {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.04);
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.15);
}

.option-icon {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    transition: var(--transition-fast);
}

.option-card.selected .option-icon {
    color: #10b981;
}

.option-title {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.option-price {
    font-size: 0.8rem;
    color: #059669;
    font-weight: 700;
}

/* Page Slider CSS */
.slider-container {
    padding: 16px 0;
}

.slider-val-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.slider-count {
    font-size: 1.8rem;
    font-weight: 800;
    color: #10b981;
    font-family: var(--font-secondary);
}

.slider-input {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(15, 23, 42, 0.08);
    border-radius: 3px;
    outline: none;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #10b981;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
}

.slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.slider-info-box {
    margin-top: 16px;
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 14px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.slider-info-box i {
    color: #10b981;
    margin-right: 6px;
}

/* Calculator Form Inputs */
.calc-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group-full {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-control {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 10px 12px;
    border-radius: var(--border-radius-sm);
    color: #0f172a;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
    background: #ffffff;
}

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

/* Summary Panel Right */
.summary-title {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.05rem;
    color: #0f172a;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding-bottom: 8px;
}

.summary-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.summary-item span:first-child {
    font-weight: 500;
}

.summary-item span:last-child {
    color: #0f172a;
    font-weight: 600;
}

.summary-total-box {
    margin-top: 24px;
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 16px;
    border-radius: var(--border-radius-md);
    text-align: center;
}

.total-label {
    font-size: 0.72rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.total-value {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    font-weight: 800;
    color: #10b981;
}

.calc-nav-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
}

/* --- FAQ Accordion Styles --- */
/* --- FAQ Accordion Styles --- */
.faq-item {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.02);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    color: #0f172a;
    font-weight: 700;
}

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

.faq-answer {
    display: none;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

/* --- Blog Section & Detail --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.04);
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.12);
}

.blog-image {
    aspect-ratio: 16/10;
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    transition: var(--transition-normal);
}

.blog-card:hover .blog-image {
    transform: scale(1.02);
}

.blog-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-meta {
    display: flex;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-title-link {
    text-decoration: none;
}

.blog-card-title {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.35;
    transition: var(--transition-fast);
}

.blog-card-title:hover {
    color: #10b981;
}

.blog-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 16px;
    flex: 1;
    line-height: 1.5;
}

.blog-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.tag-badge {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.68rem;
    color: #047857;
    font-weight: 600;
}

.blog-readmore {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.8rem;
    color: #10b981;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-fast);
}

.blog-readmore:hover {
    color: #059669;
    transform: translateX(2px);
}

/* Blog Detail Page */
.blog-detail-container {
    max-width: 800px;
    margin: 24px auto;
    padding: 0 24px;
}

.blog-detail-header {
    text-align: center;
    margin-bottom: 32px;
}

.blog-detail-title {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 14px 0;
    letter-spacing: -0.5px;
}

.blog-detail-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.08);
    margin-bottom: 32px;
}

.blog-rich-content {
    color: #334155;
    font-size: 1rem;
    line-height: 1.7;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.blog-rich-content h2, .blog-rich-content h3, .blog-rich-content h4 {
    font-family: var(--font-secondary);
    color: #0f172a;
    font-weight: 700;
    margin: 24px 0 12px 0;
}

.blog-rich-content p {
    margin-bottom: 16px;
    color: #334155;
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #059669;
}

.contact-detail h3 {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.contact-detail p, .contact-detail a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    text-decoration: none;
}

.contact-detail a:hover {
    color: #10b981;
}

/* --- Sticky WhatsApp --- */
.whatsapp-sticky {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 54px;
    height: 54px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
    animation: waBounce 3s ease-in-out infinite;
}

@keyframes waBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.03); }
}

.whatsapp-sticky:hover {
    transform: scale(1.1) !important;
    animation: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 64px;
    background: #0f172a;
    border: 1px solid rgba(16,185,129,0.3);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition-fast);
}

.whatsapp-sticky:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* --- Footer --- */
.footer {
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 24px 32px 24px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff !important;
    text-decoration: none;
    margin-bottom: 12px;
    display: inline-block;
}

.footer-about {
    color: #cbd5e1 !important;
    font-size: 0.88rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.85rem;
}

.social-links a:hover {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
}

.footer-heading {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #94a3b8 !important;
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a i {
    font-size: 0.65rem;
    color: #10b981;
}

.footer-links a:hover {
    color: #ffffff !important;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    font-size: 0.88rem;
    color: #94a3b8 !important;
}

.footer-contact li i {
    color: #10b981;
    font-size: 0.9rem;
    margin-top: 3px;
}

.footer-contact li a {
    color: #94a3b8 !important;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-contact li a:hover {
    color: #ffffff !important;
}

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

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

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* --- Admin Panel Aesthetics --- */
.admin-login-body {
    background: #09090b;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-card {
    width: 100%;
    max-width: 380px;
    padding: 32px;
    border: 1px solid var(--border-glass);
}

.login-logo {
    text-align: center;
    margin-bottom: 24px;
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
    background: var(--bg-main);
}

/* Admin Sidebar */
.admin-sidebar {
    width: 240px;
    background: #09090b;
    border-right: 1px solid var(--border-glass);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.admin-sidebar::-webkit-scrollbar {
    width: 4px;
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

.admin-logo-area {
    padding: 0 20px;
    margin-bottom: 32px;
}

.admin-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 12px;
}

.admin-menu-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    font-size: 0.85rem;
}

.admin-menu-link:hover, .admin-menu-link.active {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
}

.admin-footer-area {
    padding: 0 20px;
    margin-top: 24px;
}

.admin-content-area {
    flex: 1;
    margin-left: 240px;
    padding: 40px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.admin-page-title {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
}

/* Dashboard Cards */
.dash-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.dash-card {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border-glass);
}

.dash-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.dash-card-info h3 {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dash-card-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
}

/* CRUD Tables & Forms */
.admin-table-card {
    overflow: hidden;
    border: 1px solid var(--border-glass);
}

.table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid var(--border-glass);
    padding: 14px 18px;
    color: var(--text-white);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.85rem;
}

.admin-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.003);
}

.badge-lead {
    padding: 3px 8px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
}

.badge-new {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.badge-contacted {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
}

.badge-sold {
    background: rgba(34, 197, 94, 0.08);
    color: #22c55e;
}

/* Alert Boxes */
.alert {
    padding: 12px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 16px;
    font-size: 0.85rem;
    font-weight: 500;
}
.alert-success {
    background: rgba(34, 197, 94, 0.03);
    border: 1px solid rgba(34, 197, 94, 0.1);
    color: #22c55e;
}
.alert-danger {
    background: rgba(239, 68, 68, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .hero-centered {
        padding-top: 100px;
    }
    .hero-title-centered {
        font-size: 2.8rem;
    }
    .hero-desc-centered {
        font-size: 1.05rem;
    }
    .hero-mockup-wrapper {
        margin-top: 50px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculator-body {
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }
    
    .calc-right {
        border-left: none;
        border-top: 1px solid var(--border-glass);
        padding-left: 0;
        padding-top: 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero-title-centered {
        font-size: 2.2rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #09090b;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transition: var(--transition-normal);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        font-size: 1.05rem;
    }
    
    .nav-btn {
        width: 100%;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .calc-form {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .admin-sidebar {
        width: 70px;
    }
    
    .admin-sidebar .admin-menu-link span,
    .admin-sidebar .logo-accent,
    .admin-sidebar .admin-logo-area span:not(.logo-accent),
    .admin-sidebar .admin-footer-area {
        display: none;
    }
    
    .admin-content-area {
        margin-left: 70px;
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Hero Animations & Grid Backgrounds --- */
.hero-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center top;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    z-index: -1;
    animation: gridPulse 12s infinite alternate ease-in-out;
}

@keyframes gridPulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.04); opacity: 0.8; }
}

.floating-badge {
    position: absolute;
    background: rgba(9, 9, 11, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: 10;
    backdrop-filter: blur(8px);
}

.badge-left {
    top: 25%;
    left: -40px;
    animation: floatBadgeY 5s infinite alternate ease-in-out;
}

.badge-right {
    bottom: 25%;
    right: -40px;
    animation: floatBadgeY 5s infinite alternate ease-in-out;
    animation-delay: -2.5s;
}

@keyframes floatBadgeY {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 85px;
    }
    .hero-content {
        align-items: center;
        text-align: center;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

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

/* --- Infinite Scrolling Logo Ticker --- */
.logo-ticker {
    padding: 24px 0;
    background: rgba(34, 197, 94, 0.01);
    border-top: 1px solid rgba(34, 197, 94, 0.05);
    border-bottom: 1px solid rgba(34, 197, 94, 0.05);
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.logo-ticker-track {
    display: flex;
    width: calc(240px * 12);
    animation: scrollTicker 20s linear infinite;
}

.logo-ticker-item {
    width: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    opacity: 0.55;
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    gap: 10px;
    transition: var(--transition-fast);
}

.logo-ticker-item:hover {
    opacity: 0.95;
    color: var(--primary);
}

.logo-ticker-item i {
    font-size: 1.25rem;
    color: var(--primary);
}

@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-240px * 6)); }
}

/* --- Interactive Timeline Process --- */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0 auto;
    padding: 20px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary), var(--cyan), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 24px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 3px solid var(--primary);
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 10px var(--primary);
}

.timeline-item:nth-child(even) .timeline-dot {
    border-color: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    width: 90%;
    margin-right: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: var(--transition-normal);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 30px;
}

.timeline-content:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.1);
}

.timeline-item:nth-child(even) .timeline-content:hover {
    border-color: var(--cyan);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.1);
}

.timeline-step {
    font-family: var(--font-secondary);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: inline-block;
}

.timeline-item:nth-child(even) .timeline-step {
    color: var(--cyan);
}

.timeline-title {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.timeline-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 20px;
    }
    .timeline-item {
        padding-right: 0;
        padding-left: 45px;
        justify-content: flex-start;
        margin-bottom: 36px;
    }
    .timeline-item:nth-child(even) {
        padding-left: 45px;
    }
    .timeline-dot {
        left: 20px;
    }
    .timeline-content {
        margin-right: 0 !important;
        margin-left: 0 !important;
        width: 100%;
    }
}

/* --- Service Detail Page Banner & Sidebar Layout --- */
.detail-banner {
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 65%),
                #f1f5f9;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: 120px 24px 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.detail-layout {
    display: grid;
    grid-template-columns: 2.1fr 0.9fr;
    gap: 40px;
    padding: 60px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.sidebar-widget-title {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding-bottom: 10px;
}

.sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-list-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition-fast);
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    border: 1px solid transparent;
}

.sidebar-list-link:hover, .sidebar-list-link.active {
    color: #10b981;
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.2);
}

.sidebar-list-link.active {
    font-weight: 600;
}

.sidebar-list-link i {
    font-size: 1rem;
    color: var(--primary);
}

.sidebar-list-link.active i {
    color: var(--primary);
}

.sidebar-cta-card {
    background: linear-gradient(135deg, #09100c 0%, #064e3b 100%);
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 28px 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.sidebar-cta-card::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
}

.sidebar-cta-title {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.sidebar-cta-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }
}

/* --- Floating Hero Visual Animation --- */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.25) 0%, transparent 70%);
    z-index: -1;
    animation: heroGlowPulse 8s ease-in-out infinite;
    pointer-events: none;
    filter: blur(20px);
}

.hero-animated-visual {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    animation: heroFloat 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes heroFloat {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.01) rotate(0.5deg); }
    100% { transform: translateY(0px) scale(1); }
}

@keyframes heroGlowPulse {
    0% { 
        background: radial-gradient(circle, rgba(34, 197, 94, 0.25) 0%, transparent 70%);
    }
    50% { 
        background: radial-gradient(circle, rgba(6, 182, 212, 0.35) 0%, transparent 70%);
    }
    100% { 
        background: radial-gradient(circle, rgba(34, 197, 94, 0.25) 0%, transparent 70%);
    }
}

/* --- Mobile Responsive Options Grid Compactness --- */
@media (max-width: 480px) {
    .options-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    
    .option-card {
        padding: 10px 8px !important;
        min-height: auto !important;
    }
    
    .option-card p {
        display: none !important;
    }
    
    .option-icon {
        font-size: 1.15rem !important;
        margin-bottom: 4px !important;
    }
    
    .option-title {
        font-size: 0.78rem !important;
        margin-bottom: 2px !important;
        line-height: 1.2 !important;
    }
    
    .option-price {
        font-size: 0.72rem !important;
    }
}

@media (max-width: 992px) {
    .process-grid-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    .seo-info-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
}


@media (max-width: 600px) {
    .process-grid-container {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

/* ============================================
   DARK MODE — KAPSAMLI SITE SAYFA DÜZELTMELERİ
   ============================================ */

/* Genel metin renkleri */
[data-theme="dark"] .section-desc {
    color: #94a3b8 !important;
}

[data-theme="dark"] p {
    color: #94a3b8;
}

[data-theme="dark"] .hero-badge-text,
[data-theme="dark"] .hero-desc-centered {
    color: #cbd5e1 !important;
}

[data-theme="dark"] .hero-title-centered {
    color: #f1f5f9 !important;
}

/* Stat kartları */
[data-theme="dark"] .stat-card {
    background: rgba(19,29,46,0.9) !important;
    border-color: rgba(16,185,129,0.12) !important;
}

[data-theme="dark"] .stat-number {
    color: #10b981 !important;
}

[data-theme="dark"] .stat-label {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .stat-desc {
    color: #94a3b8 !important;
}

/* Blog kartları */
[data-theme="dark"] .blog-card {
    background: #131d2e !important;
    border-color: rgba(16,185,129,0.1) !important;
}

[data-theme="dark"] .blog-card-title {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .blog-desc {
    color: #94a3b8 !important;
}

[data-theme="dark"] .blog-meta {
    color: #64748b !important;
}

[data-theme="dark"] .tag-badge {
    background: rgba(16,185,129,0.1) !important;
    color: #10b981 !important;
    border-color: rgba(16,185,129,0.2) !important;
}

/* Referans kartları */
[data-theme="dark"] .reference-card {
    background: #131d2e !important;
    border-color: rgba(16,185,129,0.1) !important;
}

[data-theme="dark"] .ref-title {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .ref-desc {
    color: #94a3b8 !important;
}

/* Hizmet kartları */
[data-theme="dark"] .service-card {
    background: #131d2e !important;
    border-color: rgba(16,185,129,0.08) !important;
}

[data-theme="dark"] .service-title {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .service-desc {
    color: #94a3b8 !important;
}

/* Formlar */
[data-theme="dark"] label {
    color: #cbd5e1 !important;
}

[data-theme="dark"] .form-control {
    background: rgba(255,255,255,0.05) !important;
    border-color: rgba(16,185,129,0.2) !important;
    color: #f1f5f9 !important;
}

[data-theme="dark"] .form-control::placeholder {
    color: #475569 !important;
}

[data-theme="dark"] .form-control:focus {
    background: rgba(255,255,255,0.08) !important;
    border-color: #10b981 !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.1) !important;
}

/* İletişim sayfası */
[data-theme="dark"] .contact-info-panel .contact-item {
    border-bottom-color: rgba(255,255,255,0.06) !important;
}

[data-theme="dark"] .contact-detail h3 {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .contact-detail p {
    color: #94a3b8 !important;
}

[data-theme="dark"] .contact-icon {
    background: rgba(16,185,129,0.08) !important;
    border-color: rgba(16,185,129,0.15) !important;
}

/* İletişim formu */
[data-theme="dark"] .glass-card {
    background: #131d2e !important;
    border-color: rgba(255,255,255,0.06) !important;
}

/* Navbar */
[data-theme="dark"] .navbar {
    background: rgba(11,17,32,0.98) !important;
    border-bottom: 1px solid rgba(16,185,129,0.1) !important;
}

[data-theme="dark"] .bar {
    background: #cbd5e1 !important;
}

/* Nav mobil menü */
[data-theme="dark"] .nav-menu {
    background: #0b1120 !important;
}

/* Sayfa genel arkaplan */
[data-theme="dark"] .glow-bg {
    opacity: 0.06;
}

/* Süreç adımları */
[data-theme="dark"] .process-step-card,
[data-theme="dark"] .timeline-content {
    background: #131d2e !important;
    border-color: rgba(16,185,129,0.1) !important;
}

[data-theme="dark"] .timeline-title {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .timeline-desc {
    color: #94a3b8 !important;
}

/* FAQ */
[data-theme="dark"] .faq-item {
    background: #131d2e !important;
    border-color: rgba(16,185,129,0.1) !important;
}

[data-theme="dark"] .faq-question {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .faq-answer {
    color: #94a3b8 !important;
}

/* Müşteri yorumları */
[data-theme="dark"] .testimonial-card {
    background: #131d2e !important;
    border-color: rgba(16,185,129,0.1) !important;
}

[data-theme="dark"] .testimonial-content {
    color: #94a3b8 !important;
}

[data-theme="dark"] .testimonial-name {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .testimonial-author {
    border-top-color: rgba(255,255,255,0.06) !important;
}

/* Hesap makinesi */
[data-theme="dark"] .calculator-container {
    background: #131d2e !important;
    border-color: rgba(16,185,129,0.12) !important;
}

[data-theme="dark"] .option-card {
    background: rgba(255,255,255,0.04) !important;
    border-color: rgba(255,255,255,0.06) !important;
}

[data-theme="dark"] .option-card:hover {
    border-color: rgba(16,185,129,0.3) !important;
}

[data-theme="dark"] .option-title {
    color: #e2e8f0 !important;
}

[data-theme="dark"] .option-price {
    color: #10b981 !important;
}

[data-theme="dark"] .calc-right {
    border-left-color: rgba(255,255,255,0.06) !important;
}

[data-theme="dark"] .summary-row {
    border-bottom-color: rgba(255,255,255,0.06) !important;
    color: #94a3b8 !important;
}

[data-theme="dark"] .summary-label {
    color: #64748b !important;
}

/* Dark mode toggle butonu */
#darkModeBtn {
    background: none;
    border: 1px solid rgba(15,23,42,0.2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 1rem;
    transition: all 0.3s;
    flex-shrink: 0;
}

[data-theme="dark"] #darkModeBtn {
    border-color: rgba(16,185,129,0.3) !important;
    color: #10b981 !important;
}

#darkModeBtn:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #10b981;
}

.cta-banner-card {
    padding: 60px;
}

/* Mobile CSS Scroll Snapping for Grids */
@media (max-width: 768px) {
    .section {
        padding: 40px 16px !important;
    }
    
    .section-header {
        margin-bottom: 24px !important;
    }

    .services-grid, .testimonials-grid, .blog-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        gap: 16px !important;
        padding: 0 4px 16px 4px !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* Pixel-perfect snapping for mobile references slider */
    .slider-viewport {
        overflow: visible !important;
    }
    
    .slider-track {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        gap: 16px !important;
        transform: none !important; /* Disable JS translate on mobile */
        padding: 0 4px 16px 4px !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .slider-slide {
        flex: 0 0 82% !important;
        scroll-snap-align: start !important;
        margin: 0 !important;
    }
    
    .services-grid::-webkit-scrollbar,
    .testimonials-grid::-webkit-scrollbar,
    .blog-grid::-webkit-scrollbar,
    .slider-track::-webkit-scrollbar {
        height: 4px;
    }
    
    .services-grid::-webkit-scrollbar-thumb,
    .testimonials-grid::-webkit-scrollbar-thumb,
    .blog-grid::-webkit-scrollbar-thumb,
    .slider-track::-webkit-scrollbar-thumb {
        background: rgba(16, 185, 129, 0.2);
        border-radius: 2px;
    }

    .service-card, .testimonial-card, .blog-card {
        flex: 0 0 82% !important;
        scroll-snap-align: start !important;
        margin: 0 !important;
    }
    
    /* Spacings */
    .hero {
        padding-top: 40px !important;
        padding-bottom: 20px !important;
    }
    
    /* CTA Banner card squish fix */
    .cta-banner-card {
        padding: 30px 20px !important;
    }
    
    .cta-banner-title {
        font-size: 1.45rem !important;
        line-height: 1.3 !important;
    }
    
    /* Mobile Cookie Banner Override */
    .cookie-banner {
        left: 16px !important;
        right: 16px !important;
        bottom: 16px !important;
        padding: 14px 20px !important;
    }
    
    /* Button sizing overrides for mobile */
    .btn {
        padding: 10px 20px !important;
        font-size: 0.82rem !important;
    }
    
    /* WhatsApp & AI Assistant floating buttons size optimization on mobile */
    .whatsapp-sticky {
        width: 46px !important;
        height: 46px !important;
        font-size: 1.35rem !important;
    }
    
    .savran-ai-trigger {
        width: 48px !important;
        height: 48px !important;
    }
    
    .savran-ai-trigger i {
        font-size: 1.25rem !important;
    }
    
    /* Responsive About Us optimizations */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        margin-bottom: 40px !important;
    }
    
    .about-img {
        height: 220px !important;
    }
    
    .about-cta {
        padding: 24px 16px !important;
    }
}

/* --- Cookie Banner Desktop Base Style --- */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 110px;
    right: 110px;
    max-width: 980px;
    margin: 0 auto;
    z-index: 99999;
    background: linear-gradient(135deg, #0f172a, #064e3b);
    padding: 16px 24px;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Reference card hover overlay button styling for proper contrast */
.reference-overlay .btn-outline {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    background: transparent !important;
}

.reference-overlay .btn-outline:hover {
    color: #0f172a !important;
    background: #ffffff !important;
    border-color: #ffffff !important;
}

/* Logo visibility rules for dark/light themes */
.logo-light-img {
    display: none;
}
.logo-dark-img {
    display: inline-block;
}

.dark-mode .logo-light-img {
    display: inline-block;
}
.dark-mode .logo-dark-img {
    display: none;
}

/* --- About Us Page Layout Optimization --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
}

.about-cta {
    padding: 48px;
    text-align: center;
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--border-radius-lg);
}
