/* ==========================================================================
   TRADEMASTER STYLE COMPENDIUM (Brand-Aligned Light Corporate Theme)
   ========================================================================== */

/* Design Tokens & System Variables */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #e3e6f1;
    --bg-tertiary: #f4f6fa;
    
    --text-primary: #2f324e;   /* Dark navy headings */
    --text-secondary: #444444; /* Charcoal body text */
    --text-muted: #707590;
    
    --accent-blue: #00349c;    /* Solid deep blue brand color */
    --accent-cyan: #23b8fd;    /* Light blue / cyan accent color */
    --accent-orange: #fc6b00;  /* Bright orange action login color */
    --accent-green: #2ec4b6;
    --accent-red: #d90429;
    --accent-warning: #fc6b00;
    
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: #e5e5e5;
    --glass-shadow: rgba(0, 52, 156, 0.08);
    
    --font-family: 'Raleway', sans-serif;
    --transition-speed: 0.3s;
    --border-radius: 8px;
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--accent-cyan);
}

ul, ol {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

@media (max-width: 576px) {
    .grid-4, .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Live Market Ticker Component (High Contrast Top Bar)
   -------------------------------------------------------------------------- */
.market-ticker-container {
    width: 100%;
    background-color: #0b1a30;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

.market-ticker-wrapper {
    display: flex;
    white-space: nowrap;
    animation: ticker-anim 25s linear infinite;
    width: max-content;
}

.market-ticker-wrapper:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-block;
    padding: 0 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e3e6f1;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-item strong.up {
    color: #00d2ff;
    margin-left: 5px;
}

.ticker-item strong.down {
    color: #ff4d6d;
    margin-left: 5px;
}

@keyframes ticker-anim {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* --------------------------------------------------------------------------
   Navigation Bar & Dropdown System (Clean White Theme with Overhanging Logo & Orange Tab)
   -------------------------------------------------------------------------- */
.navbar-section {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 0; /* Clear padding to align elements perfectly */
    height: 70px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

/* Overhanging Blue Logo Box */
.logo-banner {
    position: absolute;
    top: 0; /* Align with top of screen/navbar */
    left: 20px;
    width: 90px;
    height: 100px;
    background-color: transparent;
    z-index: 1001;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.logo-banner-text-trade {
    color: #ffffff;
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1;
    text-transform: uppercase;
}

.logo-banner-text-master {
    color: #ffffff;
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 1.15rem;
    line-height: 1;
    text-transform: uppercase;
}

.logo-banner-wave {
    width: 45px;
    height: auto;
    margin-top: 8px;
}

/* Align Nav List past the overhanging logo */
.navigation-menu {
    display: flex;
    align-items: center;
    margin-left: 110px; /* Push list past the 90px wide logo banner */
    height: 100%;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
    height: 100%;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 100%;
}

.nav-link:hover, .nav-item:hover > .nav-link {
    color: var(--accent-blue);
}

.caret-icon {
    font-size: 0.7rem;
    transition: transform var(--transition-speed);
}

.nav-item:hover .caret-icon {
    transform: rotate(180deg);
}

/* Dropdown styling */
.nav-dropdown {
    position: absolute;
    top: 70px; /* Align with navbar bottom boundary */
    left: 0;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 4px 4px;
    padding: 10px 0;
    width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--transition-speed), transform var(--transition-speed), visibility var(--transition-speed);
    z-index: 1000;
}

.nav-dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid #f7f7f7;
}

.nav-dropdown li a:last-child {
    border-bottom: none;
}

.nav-dropdown li a:hover {
    background-color: var(--bg-tertiary);
    color: var(--accent-blue);
    padding-left: 25px;
}

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

/* Special warnings link color */
.text-warning-custom {
    color: var(--text-primary) !important;
}

.text-warning-custom:hover {
    color: var(--accent-blue) !important;
}

/* Action Buttons & Protruding Orange Tab */
.nav-action-buttons {
    display: flex;
    align-items: center;
    height: 100%;
}

.btn-orange-protruding {
    background-color: var(--accent-orange);
    color: #ffffff;
    padding: 0 25px;
    height: 78px; /* Protrudes upwards by 8px */
    margin-top: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(252, 107, 0, 0.2);
    transition: background var(--transition-speed);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.btn-orange-protruding:hover {
    background-color: #e05e00;
}

.login-dropdown-wrapper {
    position: relative;
    height: 100%;
}

.login-dropdown-menu {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 4px 4px;
    padding: 10px 0;
    width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--transition-speed), transform var(--transition-speed), visibility var(--transition-speed);
    z-index: 1000;
}

.login-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.login-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid #f7f7f7;
}

.login-dropdown-menu li a:last-child {
    border-bottom: none;
}

.login-dropdown-menu li a:hover {
    background-color: var(--bg-tertiary);
    color: var(--accent-blue);
}

/* Mobile Burger Menu Styles */
.navbar-toggle-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.toggle-bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: transform var(--transition-speed), opacity var(--transition-speed);
}

@media (max-width: 1200px) {
    .navbar-toggle-btn {
        display: flex;
        margin-left: auto; /* Push toggle button to the right edge */
        position: relative;
        z-index: 1002; /* Ensure clickable above logo background if needed */
    }
    
    .logo-banner {
        top: 0;
        height: 80px;
        width: 80px;
    }
    
    .navigation-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 30px;
        transition: left 0.4s ease;
        overflow-y: auto;
        border-right: 1px solid #e5e5e5;
        box-shadow: 5px 0 15px rgba(0,0,0,0.05);
        margin-left: 0;
    }
    
    .navigation-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 5px;
        height: auto;
    }
    
    .nav-item {
        width: 100%;
        height: auto;
    }
    
    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        height: auto;
    }
    
    .nav-dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #fcfcfc;
        display: none;
        padding-left: 20px;
        border: none;
    }
    
    .nav-item.active .nav-dropdown {
        display: block;
    }
    
    .nav-item.active .caret-icon {
        transform: rotate(180deg);
    }
    
    .nav-action-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        height: auto;
    }
    
    .btn-orange-protruding {
        height: 50px;
        margin-top: 0;
        border-radius: 4px;
        justify-content: center;
    }
    
    .login-dropdown-wrapper {
        width: 100%;
        height: auto;
    }
    
    .login-dropdown-menu {
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        background-color: #fcfcfc;
        border: none;
        margin-top: 5px;
    }
    
    .login-dropdown-menu.active {
        display: block;
    }
}

/* --------------------------------------------------------------------------
   Hero Slider Section with subtle ice shape elements
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 90px 0;
    /* Soft light cyan-blue gradient background matching the screenshot */
    background: linear-gradient(180deg, #ffffff 0%, #e2f1fc 100%);
    overflow: hidden;
}

/* Ice-like geometric elements at the bottom of the slider */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    /* Ice peaks background pattern */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23e3e6f1' d='M0,80 L180,110 L360,95 L540,115 L720,85 L900,105 L1080,90 L1260,110 L1440,80 L1440,120 L0,120 Z'/%3E%3Cpath fill='%23ffffff' opacity='0.4' d='M0,90 L200,115 L400,90 L600,110 L800,95 L1000,115 L1200,90 L1400,110 L1440,100 L1440,120 L0,120 Z'/%3E%3C/svg%3E");
    background-size: 100% 120px;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1.2;
}

.hero-heading {
    font-size: 2.3rem;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a2238; /* Dark navy charcoal text */
}

.hero-lead {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 580px;
    line-height: 1.6;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Bullet Dots for slider */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    position: relative;
    z-index: 3;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background-color: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--transition-speed);
}

.slider-dot.active {
    background-color: var(--accent-blue);
}

/* Hero Button styling from the screenshot */
.btn-hero-cyan {
    background-color: var(--accent-blue);
    color: #ffffff !important;
    padding: 12px 25px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.5px;
    transition: background var(--transition-speed), transform var(--transition-speed);
    box-shadow: 0 4px 10px rgba(0, 52, 156, 0.15);
}

.btn-hero-cyan:hover {
    background-color: #002570;
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-heading {
        font-size: 2rem;
    }
}

/* --------------------------------------------------------------------------
   Product Cards Area (Light Gray-Blue Section)
   -------------------------------------------------------------------------- */
.section-padding {
    padding: 70px 0;
}

.section-title-box {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a2238;
    margin-bottom: 10px;
}

/* Product Cards layout (clean borders, transparent backdrops) */
.feature-card {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.feature-card:hover {
    transform: none; /* No hover lift */
    box-shadow: none;
}

.feature-illustration {
    width: 200px;
    height: 130px;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a2238;
    line-height: 1.4;
}

.feature-card p {
    color: #555555;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
    max-width: 320px;
}

.card-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent-cyan) !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.card-link:hover {
    color: var(--accent-blue) !important;
}

/* Large Navy buttons below Cards 2 & 3 */
.btn-large-navy {
    background-color: var(--accent-blue);
    color: #ffffff;
    width: 100%;
    padding: 14px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.5px;
    transition: background var(--transition-speed);
}

.btn-large-navy:hover {
    background-color: #002266;
}

/* --------------------------------------------------------------------------
   Subpage Headers & Overlapping circular CTA button
   -------------------------------------------------------------------------- */
.subpage-header {
    background: linear-gradient(135deg, #e3e6f1 0%, #ffffff 100%);
    border-bottom: 1px solid #e5e5e5;
    padding: 80px 0;
    min-height: 240px;
    display: flex;
    align-items: center;
    position: relative;
}

.subpage-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--accent-cyan);
    max-width: 80%;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--text-secondary);
    font-weight: 600;
}

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

.breadcrumb span.divider {
    color: #abbccd;
}

/* Overlapping Circular CTA Button: "HESAP AÇMAK İSTİYORUM / Nasıl Hesap Açarım" */
.btn-circle {
    position: absolute;
    right: 40px;
    bottom: -78px; /* Overlaps content area divider */
    width: 156px;
    height: 156px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    line-height: 1.3;
    box-shadow: 0 10px 25px rgba(0, 52, 156, 0.25);
    z-index: 100;
    transition: background var(--transition-speed), transform var(--transition-speed);
    cursor: pointer;
    border: none;
}

.btn-circle-title {
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 5px;
    border-bottom: 1px dashed rgba(255,255,255,0.3);
    padding-bottom: 5px;
    width: 100%;
}

.btn-circle-subtitle {
    font-weight: 600;
    font-size: 0.72rem;
    color: var(--accent-cyan);
    display: block;
}

.btn-circle:hover {
    background-color: #002570;
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .btn-circle {
        position: static;
        width: 100%;
        height: auto;
        border-radius: 4px;
        margin-top: 20px;
        box-shadow: none;
        padding: 14px;
    }
    .btn-circle-title {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
        display: inline-block;
        width: auto;
        margin-right: 5px;
    }
    .btn-circle-subtitle {
        display: inline-block;
    }
}

.content-body {
    padding: 60px 0;
}

.content-wrapper {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.content-wrapper h1, .content-wrapper h2, .content-wrapper h3, .content-wrapper h4 {
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

.content-wrapper h1 { font-size: 2rem; }
.content-wrapper h2 { font-size: 1.6rem; margin-top: 30px; border-bottom: 1px solid #f0f0f0; padding-bottom: 10px; }
.content-wrapper h3 { font-size: 1.3rem; margin-top: 25px; }
.content-wrapper h4 { font-size: 1.1rem; margin-top: 20px; }

.content-wrapper p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

.content-wrapper ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.content-wrapper ul li {
    list-style-type: disc;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Table Components
   -------------------------------------------------------------------------- */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

th, td {
    padding: 14px 18px;
    border-bottom: 1px solid #e5e5e5;
}

th {
    background-color: var(--bg-tertiary);
    color: var(--accent-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--accent-cyan);
}

tr:last-child td {
    border-bottom: none;
}

tr:nth-child(even) {
    background-color: #fafbfc;
}

tr:hover td {
    background-color: #f1f5f9;
}

/* --------------------------------------------------------------------------
   Interactive Form Components
   -------------------------------------------------------------------------- */
.form-box {
    background-color: #ffffff;
    border: none; /* Clear card style borders for home page form */
    border-radius: 0;
    padding: 0;
    height: 100%;
    box-shadow: none;
}

.form-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    border-bottom: none;
    padding-bottom: 0;
    color: #1a2238;
}

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

.form-label {
    display: none; /* Hide labels, match placeholders in inputs */
}

.form-control {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 14px 18px;
    color: var(--text-secondary);
    font-family: var(--font-family);
    font-size: 0.95rem;
    transition: border var(--transition-speed);
}

.form-control::placeholder {
    color: #a0aec0;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-blue);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23444444' width='18px' height='18px'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

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

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.form-check-input {
    margin-top: 5px;
    cursor: pointer;
}

.form-check-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.btn-submit {
    width: auto;
    min-width: 180px;
    padding: 12px 35px;
    background-color: var(--accent-blue);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background var(--transition-speed);
}

.btn-submit:hover {
    background-color: #002570;
}

/* Mock reCAPTCHA style container */
.recaptcha-mock-container {
    border: 1px solid #d3d3d3;
    background-color: #f9f9f9;
    border-radius: 3px;
    width: 300px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

.recaptcha-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #2b2b2b;
    font-weight: 500;
    cursor: pointer;
}

.recaptcha-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #c1c1c1;
    background-color: #fff;
    border-radius: 2px;
    display: inline-block;
    cursor: pointer;
}

.recaptcha-logo-side {
    text-align: center;
}

.recaptcha-logo-side img {
    height: 32px;
}

.recaptcha-logo-text {
    font-size: 8px;
    color: #555;
    text-align: center;
    line-height: 1;
}

/* Form Response Notification */
.form-feedback {
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-feedback.success {
    background-color: rgba(46, 196, 182, 0.1);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    display: block;
}

.form-feedback.error {
    background-color: rgba(217, 4, 41, 0.1);
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
    display: block;
}

/* --------------------------------------------------------------------------
   FAQ Accordion Components
   -------------------------------------------------------------------------- */
.faq-item {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 0;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    color: #3c4045;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-trigger:hover {
    color: var(--accent-blue);
}

.faq-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-content {
    padding: 0 0 20px 0;
    max-height: 1000px;
}

.faq-item.active .faq-trigger i {
    transform: rotate(180deg);
    color: var(--accent-blue);
}

.faq-trigger i {
    transition: transform var(--transition-speed);
    color: var(--text-muted);
}

/* SSS FAQ Protruding Sticky Banner on form section */
.faq-sticky-banner {
    position: absolute;
    bottom: -150px; /* Overlaps bottom elements */
    right: 20px;
    width: 160px;
    height: 170px;
    background-color: var(--accent-blue);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 52, 156, 0.2);
    z-index: 50;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transition: background var(--transition-speed);
}

.faq-sticky-banner:hover {
    background-color: #002266;
}

.faq-sticky-banner h4 {
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    border-bottom: 1px dashed rgba(255,255,255,0.3);
    padding-bottom: 8px;
    width: 100%;
}

.faq-sticky-banner span.qmark {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-cyan);
    line-height: 1;
}

@media (max-width: 992px) {
    .faq-sticky-banner {
        position: static;
        width: 100%;
        height: auto;
        border-radius: 4px;
        margin-top: 30px;
        box-shadow: none;
        padding: 20px;
    }
}

/* --------------------------------------------------------------------------
   Footer Layout
   -------------------------------------------------------------------------- */
.footer-section {
    background-color: var(--bg-secondary);
    border-top: 4px solid var(--accent-blue); /* Solid thick brand blue border */
    padding: 60px 0 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.brand-col .logo-svg {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 25px;
    max-width: 320px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: background var(--transition-speed), color var(--transition-speed);
}

.social-icons a:hover {
    background-color: var(--accent-blue);
    color: #ffffff;
    border-color: var(--accent-blue);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-col ul li a:hover {
    color: var(--accent-blue);
    padding-left: 5px;
}

.contact-col p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-col p i {
    color: var(--accent-blue);
    margin-top: 4px;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid #cbd5e1;
    padding: 25px 0;
    background-color: #d8dbe6;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: var(--text-secondary);
    font-weight: 600;
}

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

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}
