:root {
    --primary: #3b82f6;
    --primary-light: #60a5fa;
    --accent: #93c5fd;
    --accent-hover: #bfdbfe;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --bg-main: #1a1c21; /* Solid Anthracite Gray */
    --bg-darker: #0d121f; /* Deep Midnight Blue */
    --bg-lighter: #24282d; /* Lighter Gray */
    --glass: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(148, 163, 184, 0.12);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main); /* Midnight background */
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 142px; /* 42px top-bar + 100px navbar height approximation */
}

body.sub-page {
    padding-top: 100px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* PREMIUM TOP BAR */
.top-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 42px;
    background: #0f172a !important; /* Deep Navy Top Bar */
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    z-index: 2500 !important;
    display: flex !important;
    align-items: center !important;
}

.top-bar-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
}

.top-bar-left, .top-bar-right {
    display: flex !important;
    align-items: center !important;
    gap: 2.2rem !important;
}

.top-bar span, .top-bar a:not(.top-bar-btn) {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    white-space: nowrap !important;
}

.top-bar i {
    color: var(--accent) !important;
    font-size: 1rem;
}

.top-bar a:not(.top-bar-btn):hover {
    color: var(--accent) !important;
}

.top-bar-btn {
    background: #d4af37 !important; /* Premium Corporate Gold */
    color: #0f172a !important; /* Dark Navy Text for contrast */
    padding: 0.4rem 1.2rem !important;
    font-size: 0.75rem !important;
    border-radius: 4px !important;
    border: 1px solid #d4af37 !important;
    font-weight: 800 !important; /* Increased font weight for legibility */
    letter-spacing: 0.5px;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    transition: var(--transition) !important;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.top-bar-btn:hover {
    background: #b5952f !important; /* Darker Gold on Hover */
    color: #0f172a !important;
    border-color: #b5952f !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

.top-bar-btn i {
    color: inherit !important;
    font-size: 0.9rem !important;
}

.btn-panel {
    background: #d4af37 !important; /* Premium Corporate Gold */
    color: #0f172a !important; /* Dark Navy Text */
    padding: 0.8rem 1.8rem !important;
    border-radius: 6px !important;
    font-weight: 900 !important;
    font-size: 0.85rem !important;
    letter-spacing: 1px !important;
    transition: var(--transition) !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    text-transform: uppercase !important;
    display: inline-block !important;
}

.btn-panel:hover {
    background: #b5952f !important; /* Darker Gold on Hover */
    color: #0f172a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

@media (max-width: 1200px) {
    .top-bar-left, .top-bar-right {
        gap: 1.5rem !important;
    }
}

@media (max-width: 992px) {
    .top-bar {
        height: auto;
        padding: 0.6rem 0;
    }
    .top-bar-content {
        flex-direction: column !important;
        gap: 0.8rem !important;
    }
    .top-bar-left, .top-bar-right {
        gap: 1.2rem !important;
        justify-content: center !important;
    }
    body {
        padding-top: 180px !important;
    }
    .navbar {
        top: auto !important; /* Move navbar down if topbar is multiline */
    }
}

/* PREMIUM NAVIGATION */
.navbar {
    position: fixed;
    top: 42px;
    width: 100%;
    z-index: 2400;
    background: #1e293b; /* Slate Navy Navbar */
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

body.sub-page .navbar {
    background: #1e293b; /* Slate Navy for Subpage Navbar */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.navbar.scrolled {
    background: #1e293b; /* Solid Slate on Scroll */
    backdrop-filter: blur(25px);
    padding: 1rem 0;
    top: 42px;
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 15px 45px rgba(0,0,0,0.5);
}

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

.logo {
    display: flex;
    flex-direction: column;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 0.9;
}

.logo span {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 4px;
    margin-top: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

/* DROPDOWN STYLES */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-item i.fa-chevron-down {
    font-size: 0.7rem;
    transition: var(--transition);
}

.nav-item:hover i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(20px);
    background: var(--bg-main);
    border: 1px solid var(--border-glass);
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    z-index: 2000;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.8rem 2rem;
    text-transform: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    border-left: 2px solid transparent;
}

.dropdown a:hover {
    background: rgba(255, 215, 0, 0.05);
    color: var(--accent);
    border-left: 2px solid var(--accent);
    padding-left: 2.5rem;
}

/* FEATURES & INTERACTIVE CARDS */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-lighter);
    padding: 3rem;
    border: 1px solid var(--border-glass);
    transition: var(--transition);
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card:hover, .service-card:hover, .step-card:hover, .premium-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: #2d343c; 
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(56, 189, 248, 0.1);
    z-index: 10;
}

.service-card {
    background: var(--bg-lighter);
    padding: 3rem;
    display: flex;
    gap: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    transition: var(--transition);
}

.step-card {
    flex: 1;
    background: var(--bg-lighter);
    padding: 4rem;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.feature-card i, .service-card i, .step-card i, .premium-card i {
    font-size: 3rem;
    color: var(--accent);
    transition: var(--transition);
}

.feature-card:hover i, .service-card:hover i, .step-card:hover i, .premium-card:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 15px var(--accent);
}

.btn-premium {
    padding: 1.25rem 3.5rem;
    background: var(--accent);
    color: var(--bg-main);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition);
    display: inline-block;
}

.btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.3);
}

/* Premium Subpage Styles */
.subpage-hero {
    padding: 15rem 0 10rem;
    position: relative;
    background: transparent;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.subpage-hero h1 {
    font-size: 4.5rem;
    font-weight: 950;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 1) !important;
}

.subpage-hero h1 span {
    color: var(--accent) !important;
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
}

.subpage-hero p {
    color: #ffffff !important;
    opacity: 1 !important;
    max-width: 800px;
    margin: 2rem auto;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1) !important;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 4rem 0;
}

.premium-card {
    background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-main) 100%);
    padding: 3.5rem;
    border: 1px solid var(--border-glass);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.premium-card h3, 
.feature-card h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    padding: 10rem 0;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse .split-content {
    direction: ltr;
}

.split-image img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.benefit-list {
    list-style: none;
    margin-top: 3rem;
    padding: 0;
}

.benefit-list li {
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    font-size: 1.1rem;
}

.benefit-list li i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 4px;
}

.section-tag {
    color: var(--accent) !important;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
}

/* Page Top Button */
#backToTop {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    font-size: 1.2rem;
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-5px);
    background: #fff;
}

/* HERO SLIDER */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.slide.active { opacity: 1; }

.blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.4) 0%, rgba(30, 41, 59, 0.8) 100%);
    backdrop-filter: blur(8px) brightness(1.1);
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.4) 100%);
    backdrop-filter: blur(8px);
    z-index: 1;
}

.subpage-hero-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.4) blur(10px);
    pointer-events: none;
}

.slide-content {
    position: relative;
    z-index: 10;
    padding-top: 10rem;
    transform: translateY(30px);
    transition: all 1s ease 0.5s;
    opacity: 0;
}

.swiper-slide-active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
}

.slide h1 span { color: var(--accent); }

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 4rem;
    max-width: 800px;
    line-height: 1.8;
}

/* READY SECTION */
.ready-section {
    padding: 10rem 0;
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('hakkimizda_hero_premium_png_1774650718693.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    border-top: 1px solid var(--border-glass);
}

.ready-content h2 { font-size: 3.5rem; margin-bottom: 2rem; }
.ready-content h2 span { color: var(--accent); }
.ready-content p {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-solid {
    padding: 1.25rem 3rem;
    background: var(--accent);
    color: var(--bg-main);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border: 2px solid var(--accent);
    transition: var(--transition);
}

.btn-solid:hover { background: var(--bg-main); color: var(--accent); }

.btn-outline {
    padding: 1.25rem 3rem;
    background: transparent;
    color: var(--accent);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border: 2px solid var(--accent);
    transition: var(--transition);
}

.btn-outline:hover { background: var(--accent); color: #000; }

/* SUPPORT BANNER */
.support-banner {
    background: linear-gradient(rgba(30, 41, 59, 0.9), rgba(30, 41, 59, 0.9)), url('destek_hero_premium_png_1774650621953.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10rem 0;
    text-align: center;
    border-bottom: 3px solid var(--accent);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-glass);
}

.support-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.05) 50%, transparent 60%);
    animation: shine 8s infinite linear;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.support-banner h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.support-banner .phone-link {
    color: var(--accent);
    margin-left: 2rem;
    font-weight: 950;
    font-size: 2.8rem;
    text-decoration: none;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
    transition: var(--transition);
    display: inline-block;
}

.support-banner .phone-link:hover {
    transform: scale(1.1);
    color: #fff;
    text-shadow: 0 0 40px var(--accent);
}

/* FLOATING CONTACT */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-btn {
    background: #d4af37; /* Premium Corporate Gold */
    color: #0f172a;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: #b5952f; /* Darker Gold on Hover */
    color: #0f172a;
    border-color: #b5952f;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.whatsapp-btn i { font-size: 1.4rem; }

/* PREMIUM FOOTER */
.premium-footer {
    background: #090c14; /* Extra Dark Midnight for Footer */
    padding: 6rem 0 3rem;
    color: var(--text-main);
    border-top: 1px solid var(--border-glass);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-col h4 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: var(--transition); font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }

.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

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

/* PREMIUM CORPORATE MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.modal-content {
    background: var(--bg-lighter);
    width: 95%;
    max-width: 650px;
    padding: 4rem;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    position: relative;
    transform: translateY(-50px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover { color: var(--accent); transform: rotate(90deg); }

.modal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.modal-header h2 {
    font-size: 2.2rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-header h2 span { color: var(--accent); }

.modal-header p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 1rem;
}

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

.form-group { margin-bottom: 1.5rem; }
.form-group.full-width { grid-column: span 2; }

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    border-radius: 4px;
    color: #fff;
    font-family: inherit;
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-group select option {
    background: var(--bg-darker);
    color: #fff;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.07);
    box-shadow: 0 0 20px rgba(229, 179, 35, 0.1);
}

.modal-submit {
    width: 100%;
    margin-top: 2rem;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    padding: 1.5rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .modal-content { padding: 3rem 1.5rem; }
    .corporate-form .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: auto; }
}

/* Logo Slider */
.references-section {
    position: relative !important;
    padding: 6rem 0 !important;
    background: var(--bg-darker) !important;
    border-bottom: 1px solid var(--border-glass);
    overflow: hidden;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    z-index: 10;
}

.references-title-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 1.2rem !important;
    width: 100% !important;
    position: relative !important;
}

.references-title {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.2rem !important;
    padding: 0.8rem 2.8rem !important;
    background: rgba(148, 163, 184, 0.08) !important; /* Slate Tint */
    border: 1px solid rgba(148, 163, 184, 0.3) !important;
    border-radius: 100px !important;
    font-size: 0.78rem !important;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    text-shadow: none !important;
    margin: 0 auto !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap !important; /* Prevent wrapping inside capsule */
}

.references-title i {
    color: var(--accent);
    font-size: 0.9rem;
}

.references-title span { 
    color: var(--accent); 
    margin-left: 5px;
}

.logo-swiper {
    width: 100%;
    margin-top: 0 !important;
}

.logo-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.logo-slide {
    width: auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    transition: all 0.5s ease;
    filter: grayscale(1) brightness(1.5);
    padding: 0 40px;
}

.logo-slide:hover {
    opacity: 1;
    filter: none;
    transform: scale(1.05);
}

.logo-placeholder {
    font-size: 1.2rem;
    font-weight: 950;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}


/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(30, 36, 44, 0.6); /* Anthracite Tint */
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item:hover {
    border-color: rgba(197, 168, 115, 0.3);
    background: rgba(45, 45, 45, 0.6);
}

.faq-item.active {
    border-color: var(--accent);
    background: rgba(30, 41, 59, 0.9);
    transform: scale(1.02);
}

.faq-question {
    padding: 2.2rem 3rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.faq-question i {
    font-size: 1rem;
    color: var(--accent);
    transition: transform 0.4s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: all 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    padding: 0 3rem 2.5rem 3rem;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
}

/* Responsive FAQ Grid */
@media (max-width: 992px) {
    [style*='grid-template-columns: 1fr 1fr'] {
        grid-template-columns: 1fr !important;
    }
}

/* Fine-tuned FAQ spacings */
.faq-question { padding: 1.6rem 2.2rem; font-size: 1rem; }
.faq-answer p { padding: 0 2.2rem 1.8rem 2.2rem; font-size: 0.95rem; }
.faq-item { border-radius: 6px; }

