/*
Theme Name: The Credit Lane
Theme URI: #
Author: The Credit Lane
Author URI: #
Description: A professional, custom WordPress theme for The Credit Lane.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thecreditlane
*/

/* style.css */
/* --- Variables --- */
:root {
    /* Professional Light Theme */
    --bg-main: #F8FAFC; /* Soft light slate background */
    --bg-light: #FFFFFF; /* Pure white background */
    --surface: rgba(255, 255, 255, 0.85); /* Light glass surface */
    --surface-solid: #FFFFFF;
    --border: rgba(15, 23, 42, 0.08);
    
    /* Accents - Deep Professional Blue */
    --accent: #1E3A8A; /* Deep Corporate Blue */
    --accent-hover: #1D4ED8; /* Lighter Corporate Blue */
    --accent-gradient: linear-gradient(135deg, #1E3A8A, #3B82F6);
    --primary-blue: #3B82F6; 
    
    /* Text */
    --text-main: #0F172A; /* Slate 900 for high contrast reading */
    --text-light: #475569; /* Slate 600 for secondary text */
    --text-dark: #FFFFFF; /* White text for buttons */
    
    /* Utils */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 8px 16px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 16px 32px rgba(15, 23, 42, 0.08);
    --glow: 0 8px 20px rgba(30, 58, 138, 0.2); /* Subtle blue drop shadow */
    --radius: 12px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* --- Base --- */
*, *::before, *::after {
    box-sizing: border-box;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

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

.text-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.max-w-800 { max-width: 800px; }
.max-w-600 { max-width: 600px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.relative { position: relative; }

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}
.col-md-4 { width: 33.333%; padding: 15px; }
.col-md-5 { width: 41.666%; padding: 15px; }
.col-md-6 { width: 50%; padding: 15px; }
.col-md-7 { width: 58.333%; padding: 15px; }
.align-items-center { align-items: center; }

@media (max-width: 768px) {
    .col-md-4, .col-md-5, .col-md-6, .col-md-7 { width: 100%; }
}

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

h1 { font-size: clamp(3rem, 6vw, 4.5rem); line-height: 1.1; }
h2 { font-size: clamp(2.2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 600; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-main);
}

.section-title {
    margin-bottom: 3.5rem;
}

.section-title .subtitle {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 10px;
    font-size: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-dark);
    box-shadow: var(--glow);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 30px rgba(30, 58, 138, 0.5);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent-gradient);
    color: var(--text-dark);
    border-color: transparent;
    box-shadow: var(--glow);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-group {
    display: flex;
    gap: 15px;
}

/* --- Glassmorphism Panels --- */
.glass-panel {
    background: var(--surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.glass-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 58, 138, 0.3);
    box-shadow: var(--shadow-lg), var(--glow);
}

/* --- Top Bar --- */
.top-bar {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 10px 0;
    font-family: var(--font-body);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    font-family: var(--font-heading);
}

.top-bar-right {
    display: flex;
    gap: 25px;
}

.top-bar-right a {
    color: var(--text-light);
}

.top-bar-right a:hover {
    color: var(--accent);
}

.top-bar i {
    margin-right: 8px;
    color: var(--accent);
}

@media (max-width: 768px) {
    .top-bar { display: none; }
}

/* --- Header / Navigation --- */
.header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

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

.logo h2 {
    margin: 0;
    font-weight: 800;
    font-size: 1.8rem;
    background: var(--text-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links > li > a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 0;
    position: relative;
    font-family: var(--font-heading);
}

.nav-links > li > a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links > li > a:hover:after,
.nav-links > li > a.active:after {
    width: 100%;
    box-shadow: var(--glow);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--accent);
}

/* Dropdown styling */
.dropdown {
    position: relative;
}

.dropdown > a i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: var(--transition);
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface-solid);
    border: 1px solid var(--border);
    min-width: 260px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
}

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

.dropdown-menu li {
    padding: 0;
    position: relative;
}

.dropdown-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: rgba(15, 23, 42, 0.05);
    color: var(--accent);
    padding-left: 30px;
}

.dropdown-submenu .submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: var(--surface-solid);
    border: 1px solid var(--border);
    min-width: 260px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: var(--transition);
}

.dropdown-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--text-main);
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--bg-main);
        flex-direction: column;
        transition: var(--transition);
        overflow-y: auto;
        border-top: 1px solid var(--border);
    }

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

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 10px 20px;
    }

    .nav-links > li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav-links > li > a {
        display: block;
        padding: 10px 0;
        font-size: 1rem;
    }

    .dropdown-menu, .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        background: transparent;
        border: none;
        padding: 0;
    }

    .dropdown-menu a {
        padding: 6px 15px !important;
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
    }

    .submenu a {
        padding: 6px 15px 6px 30px !important;
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
        color: var(--text-light) !important;
    }

    .dropdown.active > a i,
    .dropdown-submenu.active > a i {
        transform: rotate(90deg);
    }

    .dropdown.active > .dropdown-menu,
    .dropdown-submenu.active > .submenu {
        display: block;
        margin-bottom: 5px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-actions .btn {
        display: none;
    }
}

/* --- Hero Section --- */
.hero {
    background-color: var(--bg-main);
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
}

/* Neon Orbs Background */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    flex: 1.2;
    padding-right: 60px;
}

.hero-text .badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(30, 58, 138, 0.1);
    color: var(--accent);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(30, 58, 138, 0.3);
    box-shadow: var(--glow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image .image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    border: 1px solid var(--border);
}

.hero-image .image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(15,23,42,0.1);
    border-radius: 24px;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05);
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-image:hover img {
    transform: scale(1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--surface-solid);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg), var(--glow);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 5s ease-in-out infinite;
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
}

.experience-badge .text {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        padding-right: 0;
        margin-bottom: 60px;
    }
    .hero-btns {
        justify-content: center;
    }
    .experience-badge {
        left: 20px;
        bottom: 20px;
    }
}

/* Floating Shapes */
.shape {
    position: absolute;
    z-index: 1;
    opacity: 0.3;
}
.shape-1 { width: 300px; height: 300px; border: 1px solid rgba(15,23,42,0.05); border-radius: 50%; top: 10%; right: -100px; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 150px; height: 150px; border: 1px dashed rgba(245,158,11,0.2); border-radius: 50%; bottom: 100px; left: 5%; animation: float 6s ease-in-out infinite reverse; }
.shape-3 { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-blue), transparent); border-radius: 12px; top: 30%; left: 45%; transform: rotate(45deg); opacity: 0.1; animation: float 5s ease-in-out infinite; filter: blur(5px); }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* --- Feature List --- */
.feature-list li {
    margin-bottom: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.feature-list li i {
    color: var(--accent);
    font-size: 1.3rem;
    background: rgba(30, 58, 138, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* --- Partners Section --- */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
    margin-top: 50px;
}

.partner-logo {
    padding: 25px 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
    border-color: rgba(15,23,42,0.2);
    box-shadow: var(--shadow-lg);
}
.partner-logo:hover h3 {
    color: var(--text-main);
}

/* --- Why Choose Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(30, 58, 138, 0.3);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08), var(--glow);
}

.feature-card .icon-box {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(30, 58, 138, 0.05));
    border: 1px solid rgba(30, 58, 138, 0.2);
    color: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: var(--accent-gradient);
    color: var(--text-dark);
    box-shadow: var(--glow);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    margin: 0;
    color: var(--text-light);
}

/* --- Products Section --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(30, 58, 138, 0.1);
    transform: translateY(-5px);
}

.product-card .brand-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--surface-solid);
    border: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.65rem;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-card .product-icon {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 25px;
    transition: var(--transition);
}

.product-card:hover .product-icon {
    color: var(--accent);
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(30, 58, 138, 0.4));
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 25px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-link i {
    transition: var(--transition);
}

.product-link:hover i {
    transform: translateX(5px);
}

/* --- Security Banner --- */
.trust-banner {
    background: var(--surface-solid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trust-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.trust-content {
    position: relative;
    z-index: 10;
}

.trust-content .trust-icon {
    font-size: 4rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(30, 58, 138, 0.4));
}

.trust-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.trust-content p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin: 0;
}

/* --- FAQ Section --- */
.accordion-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: rgba(15,23,42,0.15);
}

.accordion-header {
    padding: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover, .accordion-item.active .accordion-header {
    color: var(--accent);
}

.accordion-header .icon {
    transition: transform 0.3s ease;
    color: var(--accent);
    background: rgba(30, 58, 138, 0.1);
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
    background: var(--accent-gradient);
    color: var(--text-dark);
}

.accordion-body {
    padding: 0 25px 25px;
    display: none;
    color: var(--text-light);
}

.accordion-body p {
    margin: 0;
}

.rounded-image {
    border-radius: 24px;
    width: 100%;
    height: auto;
    border: 1px solid var(--border);
}

/* --- Contact CTA --- */
.cta-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.5rem;
    color: var(--text-main);
    flex-wrap: wrap;
}

.cta-icons i {
    background: var(--surface);
    border: 1px solid var(--border);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cta-icons i:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

/* --- Footer --- */
.footer {
    background-color: var(--bg-main);
    border-top: 1px solid var(--border);
    color: var(--text-light);
    padding: 100px 0 30px;
}

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

.footer-logo {
    color: var(--text-main);
    font-size: 2rem;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.brand-col p {
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-gradient);
    color: var(--text-dark);
    border-color: transparent;
    box-shadow: var(--glow);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: var(--text-main);
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.footer-col ul a {
    color: var(--text-light);
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.bni-logo {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 15px 20px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.bni-logo i {
    color: var(--accent);
}

/* SEO Links */
.footer-seo {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 50px 0;
    margin-bottom: 40px;
}

.seo-group {
    margin-bottom: 25px;
}
.seo-group:last-child {
    margin-bottom: 0;
}

.seo-group h4 {
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.seo-group p {
    font-size: 0.85rem;
    line-height: 2;
    color: rgba(148, 163, 184, 0.5);
}

.seo-group a {
    color: rgba(148, 163, 184, 0.7);
    transition: var(--transition);
}

.seo-group a:hover {
    color: var(--accent);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

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

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

/* --- Floating Elements --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

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

/* --- Animations Classes --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* Input Fields Styling for Dark Mode */
input, select, textarea {
    background-color: rgba(15, 23, 42, 0.05) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-main) !important;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.2);
}

input::placeholder, textarea::placeholder {
    color: rgba(15, 23, 42, 0.4) !important;
}

select option {
    background-color: var(--surface-solid) !important;
    color: var(--text-main) !important;
}

/* --- Events Gallery --- */
.events-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--surface);
    border: 1px solid var(--border);
    cursor: pointer;
}
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(30, 58, 138, 0.2);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
