/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* CSS Variables */
:root {
    --primary-color: #FF8C00;
    --secondary-color: #0B1426;
    --secondary-light: #152A47;
    --secondary-medium: #1E3A5F;
    --accent-color: #F9FAFB;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --border-color: #E5E7EB;
    --white: #FFFFFF;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 10px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    position: relative;
    width: 120px;
    height: 120px;
}

.loading-cube {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    transform: translate(-50%, -50%) rotateX(45deg) rotateY(45deg);
    animation: rotateCube 2s linear infinite;
}

.loading-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.loading-line {
    position: absolute;
    background: #E5B800;
    animation: rotateLines 3s linear infinite;
}

.loading-line:nth-child(1) {
    top: 0;
    left: 20px;
    width: 80px;
    height: 2px;
    transform-origin: 40px 60px;
}

.loading-line:nth-child(2) {
    top: 20px;
    right: 0;
    width: 2px;
    height: 80px;
    transform-origin: -40px 40px;
    animation-delay: -0.75s;
}

.loading-line:nth-child(3) {
    bottom: 0;
    left: 20px;
    width: 80px;
    height: 2px;
    transform-origin: 40px -40px;
    animation-delay: -1.5s;
}

.loading-line:nth-child(4) {
    top: 20px;
    left: 0;
    width: 2px;
    height: 80px;
    transform-origin: 60px 40px;
    animation-delay: -2.25s;
}

@keyframes rotateCube {
    0% { 
        transform: translate(-50%, -50%) rotateX(45deg) rotateY(45deg) rotateZ(0deg);
    }
    100% { 
        transform: translate(-50%, -50%) rotateX(45deg) rotateY(45deg) rotateZ(360deg);
    }
}

@keyframes rotateLines {
    0% { 
        transform: rotate(0deg);
        opacity: 1;
    }
    25% { 
        opacity: 0.7;
    }
    50% { 
        opacity: 0.3;
    }
    75% { 
        opacity: 0.7;
    }
    100% { 
        transform: rotate(360deg);
        opacity: 1;
    }
}

/* Regulatory Compliance Bar */
.compliance-bar {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0B1426 100%);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
    z-index: 1001;
}

.compliance-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.compliance-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    opacity: 0.95;
}

.compliance-text i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 3px 0;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 100vh;
    background: var(--secondary-color);
    z-index: 999;
    transition: top 0.4s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6rem;
    overflow: hidden;
}

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

.mobile-menu-content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-bottom: 10px;
}



.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    text-align: left;
    padding: 0.8rem 0;
    width: 100%;
    border-bottom: none;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-color);
}

.mobile-signin-link {
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    margin-top: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    background: transparent;
}

.mobile-signin-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}





/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #e67e00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
    width: 100%;
    max-width: 100vw;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 20, 38, 0.8) 0%, rgba(20, 35, 60, 0.75) 50%, rgba(8, 16, 24, 0.8) 100%);
    z-index: -1;
    border-radius: 10px;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title-line {
    display: block;
    animation: slideInLeft 1s ease;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeIn 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease 0.8s both;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--accent-color);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.laptop-mockup {
    max-width: 100%;
    margin-bottom: 1rem;
}

.laptop-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.15));
}

.laptop-description {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--accent-color);
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #e67e00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--accent-color);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    background: var(--accent-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Trust Badges Section */
.trust-badges-section {
    background: linear-gradient(135deg, #F8F9FA 0%, rgba(255, 140, 0, 0.05) 50%, rgba(11, 20, 38, 0.05) 100%);
    padding: 4rem 0;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-badge {
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 140, 0, 0.03) 50%, rgba(11, 20, 38, 0.03) 100%);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(11, 20, 38, 0.1);
    transition: var(--transition);
    border: 2px solid rgba(255, 140, 0, 0.1);
}

.trust-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(11, 20, 38, 0.15), 0 5px 15px rgba(255, 140, 0, 0.2);
    border-color: rgba(255, 140, 0, 0.3);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF8C00 30%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.badge-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.badge-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.badge-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--accent-color);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

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

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #e67e00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-availability {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Learn More Section */
.learn-more {
    padding: 5rem 0;
    background: var(--secondary-color);
    color: var(--white);
}

.learn-more .section-title {
    color: var(--white);
}

.learn-more-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.learn-more-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.learn-more-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--white);
}

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

.learn-more-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary-special {
    background: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--white);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-secondary-special:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-secondary-special:hover::before {
    left: 100%;
}

.learn-more-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.couple-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.learn-more-image:hover .couple-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem;
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.learn-more-image:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 2rem 0 1rem;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.footer-logo-text {
    font-size: 1rem;
    font-weight: 600;
}

.footer-compliance {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-badge i {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-section {
    display: none;
}

.footer-bottom {
    display: none;
}

/* Support Widget */
.support-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.support-toggle {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.support-toggle:hover {
    background: #e67e00;
    transform: scale(1.1);
}

.support-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    padding: 1rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.support-widget.active .support-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.support-option {
    margin-bottom: 0.5rem;
}

.support-option:last-child {
    margin-bottom: 0;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.support-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

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

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

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

/* AOS (Animate On Scroll) Custom Styles */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

/* ===== RESPONSIVE DESIGN MEDIA QUERIES ===== */

/* Extra Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 3rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

/* Large Desktop (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-grid,
    .learn-more-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Desktop (1025px - 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
    .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-grid,
    .learn-more-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero {
        padding-top: 100px;
        height: calc(100vh - 100px);
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    
    .btn-large {
        width: auto;
        min-width: 150px;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .about-grid,
    .learn-more-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* Small Tablet / Large Mobile (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .compliance-bar {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }
    
    .header {
        padding: 0.8rem 0;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding-top: 80px;
        height: calc(100vh - 80px);
    }
    
    .hero-background {
        border-radius: 0;
    }
    
    .hero-bg-img {
        border-radius: 0;
        opacity: 1;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(11, 20, 38, 0.7) 0%, rgba(20, 35, 60, 0.65) 50%, rgba(8, 16, 24, 0.7) 100%);
        border-radius: 0;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        max-width: 100%;
        z-index: 2;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 7vw, 2.8rem);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 320px;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-card,
    .service-card {
        padding: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-grid,
    .learn-more-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-text,
    .contact-description {
        font-size: 1rem;
    }
}

/* Fix for all sections on mobile */
@media (max-width: 768px) {
    section, .section {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .hero, .features, .about, .services, .contact, .footer {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .features-grid, .services-grid, .about-grid, .contact-cards-grid {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
    .compliance-bar {
        font-size: 0.7rem;
        padding: 0.4rem 0;
    }
    
    .compliance-text {
        text-align: center;
        line-height: 1.3;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding-top: 70px;
        height: calc(100vh - 70px);
    }
    
    .hero-background {
        border-radius: 0;
    }
    
    .hero-bg-img {
        border-radius: 0;
        opacity: 1;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(11, 20, 38, 0.75) 0%, rgba(20, 35, 60, 0.7) 50%, rgba(8, 16, 24, 0.75) 100%);
        border-radius: 0;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
        max-width: 100%;
        z-index: 2;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card,
    .service-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-grid,
    .learn-more-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text,
    .contact-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .support-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .support-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-badge {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
}

/* Very Small Mobile (280px - 319px) */
@media (max-width: 319px) {
    .container {
        padding: 0 0.8rem;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding: 1rem 0.8rem;
    }
    
    .btn-large {
        max-width: 250px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .feature-card,
    .service-card {
        padding: 1.2rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .compliance-bar {
        font-size: 0.65rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu,
    .support-widget,
    .loading-screen {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-background {
        display: none;
    }
    
    .hero-content {
        color: var(--text-dark);
    }
    
    section {
        page-break-inside: avoid;
        padding: 1rem 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000;
        --secondary-color: #000;
        --text-light: #000;
        --border-color: #000;
    }
    
    .btn-primary {
        background: #000;
        border: 2px solid #000;
    }
    
    .btn-secondary {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}