/* ==========================================
   Trusteon Capital Solutions - Main CSS
   Premium Financial Website Design
   ========================================== */

/* ==========================================
   CSS Variables & Root Styles
   ========================================== */
:root {
    /* Colors */
    --primary-color: #1a2332;
    --secondary-color: #d4af37;
    --accent-color: #008b8b;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --overlay-dark: rgba(26, 35, 50, 0.85);
    --overlay-light: rgba(26, 35, 50, 0.5);
    
    /* Fonts */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
    --shadow-xl: 0 15px 50px rgba(0,0,0,0.25);
}

/* ==========================================
   AOS Animation Fix - CRITICAL
   ========================================== */
/* Ensure all elements are visible by default */
[data-aos] {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Only hide elements before animation if AOS is initialized */
html.aos-initialized [data-aos]:not(.aos-animate) {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s;
    transition-timing-function: ease;
}

/* Fade animations */
html.aos-initialized [data-aos="fade-up"]:not(.aos-animate) {
    transform: translateY(30px);
}

html.aos-initialized [data-aos="fade-down"]:not(.aos-animate) {
    transform: translateY(-30px);
}

html.aos-initialized [data-aos="fade-left"]:not(.aos-animate) {
    transform: translateX(30px);
}

html.aos-initialized [data-aos="fade-right"]:not(.aos-animate) {
    transform: translateX(-30px);
}

html.aos-initialized [data-aos="zoom-in"]:not(.aos-animate) {
    transform: scale(0.95);
}

/* Animated state */
[data-aos].aos-animate {
    opacity: 1 !important;
    transform: none !important;
}

/* ==========================================
   Global Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* ==========================================
   Typography
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-light);
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-full {
    width: 100%;
}

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

/* ==========================================
   Header & Navigation
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-fast);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.logo-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.logo-text .tagline {
    font-size: 0.75rem;
    color: var(--accent-color);
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

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

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

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

.btn-call {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50px;
    font-weight: 600;
}

.btn-call:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

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

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--primary-color);
    padding: 80px 30px;
    transition: var(--transition-medium);
    z-index: 1001;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    color: var(--bg-white);
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    margin-top: 90px;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--bg-white);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.hero-title .highlight {
    color: var(--secondary-color);
    display: block;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Slide Animations */
.slide-left {
    animation: slideFromLeft 1s ease-out;
}

.slide-right {
    animation: slideFromRight 1s ease-out;
}

.slide-bottom {
    animation: slideFromBottom 1s ease-out;
}

.slide-top {
    animation: slideFromTop 1s ease-out;
}

.slide-zoom {
    animation: zoomIn 1s ease-out;
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes slideFromTop {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary-color);
    background: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255,255,255,0.2);
}

.swiper-pagination-bullet {
    background: var(--bg-white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
    opacity: 1;
}

/* ==========================================
   Section Styles
   ========================================== */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-subtitle {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Parallax Sections */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-light);
    z-index: 0;
}

.parallax-section .container {
    position: relative;
    z-index: 1;
}

.parallax-section .section-title,
.parallax-section .section-subtitle,
.parallax-section .section-description {
    color: var(--bg-white);
}

/* ==========================================
   About Section
   ========================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    color: var(--bg-white);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    opacity: 1 !important;
    visibility: visible !important;
}

.feature-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.feature-item h4 {
    font-size: 1.1rem;
    color: var(--bg-white);
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

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

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    opacity: 1 !important;
    visibility: visible !important;
}

.stat-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg-white);
    font-family: var(--font-secondary);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   Offerings Section
   ========================================== */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.offering-card {
    background: rgba(255,255,255,0.95);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-medium);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.offering-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
}

.offering-card:hover .offering-icon {
    transform: rotate(360deg) scale(1.1);
}

.offering-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.offering-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.offering-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.offering-link {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.offering-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* ==========================================
   Loans Section
   ========================================== */
.loans-section {
    background: var(--bg-light);
}

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

.loan-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.loan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.loan-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 30px;
    text-align: center;
    position: relative;
}

.loan-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    backdrop-filter: blur(10px);
}

.loan-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.loan-header h3 {
    color: var(--bg-white);
    margin: 0;
}

.loan-description {
    padding: 25px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.loan-details {
    padding: 0 25px 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.loan-features {
    padding: 0 25px 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: rgba(0, 139, 139, 0.1);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.feature-badge i {
    font-size: 0.75rem;
}

.loan-card .btn {
    margin: 0 25px 25px;
}

/* ==========================================
   How It Works Section
   ========================================== */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
}

.process-step {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    opacity: 1 !important;
    visibility: visible !important;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 30px auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 3rem;
    color: var(--secondary-color);
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.process-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.process-cta h3 {
    color: var(--bg-white);
    font-size: 2rem;
    margin-bottom: 25px;
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials-section {
    background: var(--bg-light);
}

.testimonials-swiper {
    padding: 20px 0 60px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    margin: 20px;
    opacity: 1 !important;
    visibility: visible !important;
}

.testimonial-quote {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-quote i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.testimonial-rating {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================
   Blog Section
   ========================================== */
.blog-section {
    background: var(--bg-light);
    padding: 100px 0;
}

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

.blog-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    cursor: pointer;
    opacity: 1 !important;
    visibility: visible !important;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.blog-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 30px;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-card-meta i {
    color: var(--accent-color);
    margin-right: 5px;
}

.blog-card-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: var(--font-secondary);
}

.blog-card-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.blog-card-link {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.blog-card-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.blog-card-link i {
    font-size: 0.9rem;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.info-card {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-fast);
    opacity: 1 !important;
    visibility: visible !important;
}

.info-card:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateX(10px);
}

.info-card i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.info-card h4 {
    margin-bottom: 8px;
}

.info-card a {
    color: var(--accent-color);
}

.info-card:hover a {
    color: var(--secondary-color);
}

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

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding-top: 80px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-text h3 {
    color: var(--secondary-color);
    margin: 0;
}

.footer-logo .logo-text p {
    color: var(--accent-color);
    font-size: 0.75rem;
    margin: 0;
}

.footer-description {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.license-badge {
    margin-top: 20px;
}

.license-img {
    max-width: 120px;
    filter: brightness(0.9);
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition-fast);
}

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

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.contact-list i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 40px 0;
}

.footer-legal {
    margin-bottom: 25px;
}

.footer-legal p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-legal strong {
    color: var(--secondary-color);
}

.compliance-text {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-copyright a {
    color: var(--accent-color);
    margin: 0 10px;
}

.footer-copyright a:hover {
    color: var(--secondary-color);
}

/* ==========================================
   Scroll to Top & Live Chat Buttons
   ========================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.live-chat-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    padding: 15px 25px;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-fast);
    z-index: 999;
}

.live-chat-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.live-chat-btn i {
    font-size: 1.3rem;
}

/* ==========================================
   Utility Classes
   ========================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }
.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }