/* =========================================
   1. Variables & Reset
   ========================================= */
:root {
    /* Colors - Skyline Theme */
    --color-bg-start: #F8FAFC;
    --color-bg-end: #E0F2FE;
    --color-primary: #2563EB;
    --color-primary-light: #38BDF8;
    --color-accent: #34D399;
    --color-accent-dark: #2DD4BF;
    --color-text-dark: #0F172A;
    --color-text-body: #475569;
    --color-text-light: #94A3B8;
    --color-white: #ffffff;
    --color-white-trans: rgba(255, 255, 255, 0.85);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    --gradient-accent: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    --gradient-skyline: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    --gradient-text: linear-gradient(90deg, #2563EB, #06B6D4);

    /* Spacing */
    --section-padding: 6rem 0;
    --container-width: 1280px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(56, 189, 248, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-body);
    background: linear-gradient(135deg, var(--color-bg-start), var(--color-bg-end));
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Abstract Orbs */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -2;
    opacity: 0.6;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2), rgba(37, 99, 235, 0.1));
    top: -100px;
    right: -100px;
    animation: floatOrb 20s infinite alternate;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.2), rgba(45, 212, 191, 0.1));
    bottom: 10%;
    left: -100px;
    animation: floatOrb 25s infinite alternate-reverse;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48ZmlsdGVyIGlkPSJub2lzZSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuNjUiIG51bU9jdGF2ZXM9IjMiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjbm9pc2UpIiBvcGFjaXR5PSIwLjAzIi8+PC9zdmc+');
    z-index: -1;
    pointer-events: none;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 100px);
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--color-text-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* =========================================
   2. Components
   ========================================= */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-hero);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

.pulse-ring {
    animation: pulseShadow 2s infinite;
}

@keyframes pulseShadow {
    0% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(56, 189, 248, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
    }
}

/* Badge */
.badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.badge-pill .dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    margin-right: 8px;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Glass Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-md);
}

/* =========================================
   3. Header & Nav
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 1.5rem 0;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo-wrapper a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-text-dark);
}

.main-nav {
    display: none;
}

@media (min-width: 992px) {
    .main-nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-text);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

@media (min-width: 992px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-text-dark);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.4s ease;
}

.mobile-menu.active {
    left: 0;
}

.mobile-nav-list {
    text-align: center;
}

.mobile-nav-list li {
    margin: 2rem 0;
}

.mobile-nav-list a {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--color-text-dark);
}

/* =========================================
   4. Hero Section
   ========================================= */
.hero-section {
    padding-top: 180px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-content {
    z-index: 2;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
}

.trust-item {
    font-weight: 600;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item i {
    color: var(--color-accent);
}

/* 3D Cube Animation */
.cube-container {
    width: 200px;
    height: 200px;
    perspective: 1000px;
    margin: 0 auto;
    position: relative;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 15s infinite linear;
}

.face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--color-primary-light);
    line-height: 200px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.9;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.front {
    transform: rotateY(0deg) translateZ(100px);
}

.back {
    transform: rotateY(180deg) translateZ(100px);
}

.right {
    transform: rotateY(90deg) translateZ(100px);
}

.left {
    transform: rotateY(-90deg) translateZ(100px);
}

.top {
    transform: rotateX(90deg) translateZ(100px);
}

.bottom {
    transform: rotateX(-90deg) translateZ(100px);
}

@keyframes rotateCube {
    from {
        transform: rotateX(-15deg) rotateY(0deg);
    }

    to {
        transform: rotateX(-15deg) rotateY(360deg);
    }
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    animation: floatCard 6s ease-in-out infinite;
    z-index: 3;
}

.floating-card i {
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 8px;
    color: white;
}

.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.card-1 i {
    background: var(--gradient-accent);
}

.card-2 {
    bottom: 10%;
    right: 0;
    animation-delay: 2s;
}

.card-2 i {
    background: var(--gradient-hero);
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.wave-separator {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.wave-separator svg {
    width: 100%;
    height: auto;
}

/* =========================================
   5. General Section Styles
   ========================================= */
.section-padding {
    padding: var(--section-padding);
}

.section-label {
    text-transform: uppercase;
    color: var(--color-primary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-heading {
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--color-white);
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.col-half {
    flex: 1;
    min-width: 300px;
}

.align-center {
    align-items: center;
}

/* =========================================
   6. About Section
   ========================================= */
.image-stack-3d {
    position: relative;
    height: 400px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.layer {
    position: absolute;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.layer-1 {
    width: 80%;
    height: 80%;
    background: #e2e8f0;
    top: 0;
    right: 0;
    z-index: 1;
}

.layer-2 {
    width: 80%;
    height: 80%;
    background: #cbd5e1;
    top: 10%;
    right: 10%;
    z-index: 2;
}

.layer-3 {
    width: 80%;
    height: 80%;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
    top: 20%;
    right: 20%;
    z-index: 3;
    display: flex;
    align-items: flex-end;
}

.stat-box {
    background: white;
    padding: 1.5rem;
    border-top-right-radius: var(--border-radius-md);
    border-bottom-left-radius: var(--border-radius-lg);
}

.stat-box h3 {
    color: var(--color-primary);
    margin-bottom: 0;
    font-size: 2.5rem;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.feature-list i {
    color: var(--color-accent);
}

/* =========================================
   7. Services Grid
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #fdfdfd;
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(56, 189, 248, 0.3);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.4s ease;
}

.service-card:hover .card-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
}

.gradient-1 {
    background: var(--gradient-hero);
}

.gradient-2 {
    background: var(--gradient-accent);
}

.gradient-3 {
    background: linear-gradient(135deg, #F472B6, #DB2777);
}

.mini-list {
    margin: 1.5rem 0;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.mini-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.mini-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.text-link {
    color: var(--color-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.text-link i {
    transition: transform 0.2s;
}

.text-link:hover i {
    transform: translateX(5px);
}

/* =========================================
   8. Calculator Section
   ========================================= */
.calculator-section {
    background: #0f172a;
    /* Dark theme contrast */
    color: white;
    position: relative;
}

.calculator-section .text-white {
    color: white;
}

.calculator-section .text-white-dim {
    color: #94a3b8;
}

.calc-instructions {
    margin-top: 2rem;
}

.calc-instructions .step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.calc-instructions .num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
    font-weight: 700;
}

.calculator-card {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

input[type="range"] {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

.range-value {
    margin-top: 0.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: right;
}

.input-text {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
}

.calc-results {
    background: var(--color-bg-start);
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    margin-top: 2rem;
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: var(--color-text-dark);
}

.result-row.highlight {
    border-bottom: none;
    margin-top: 0.5rem;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--color-primary);
}

/* =========================================
   9. Testimonials & Process
   ========================================= */
.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.feedback {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-text-dark);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-primary-light);
    transform: translateX(-50%);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
}

.timeline-item .step-num {
    position: absolute;
    top: 20px;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.timeline-item.left .step-num {
    right: -60px;
}

.timeline-item.right .step-num {
    left: -60px;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        text-align: left;
    }

    .timeline-item.left .step-num,
    .timeline-item.right .step-num {
        left: -50px;
        right: auto;
    }
}

/* =========================================
   10. FAQ & CTA
   ========================================= */
.faq-container {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.cta-container {
    position: relative;
    padding: 4rem;
    text-align: center;
    overflow: hidden;
    margin-bottom: 4rem;
}

.cta-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(52, 211, 153, 0.1));
    z-index: -1;
}

/* =========================================
   11. Footer
   ========================================= */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 2;
    min-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 30px;
}

.footer-nav,
.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-nav h3,
.footer-contact h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-nav ul li,
.footer-contact ul li {
    margin-bottom: 0.8rem;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--color-primary-light);
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--color-primary);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.legal-links a {
    margin-left: 1.5rem;
    font-size: 0.9rem;
}

/* =========================================
   12. Form Styles (Contact Page)
   ========================================= */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info,
.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.main-form {
    padding: 2.5rem;
}

.main-form input,
.main-form select,
.main-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    font-family: inherit;
    background: #f8fafc;
    transition: 0.3s;
}

.main-form input:focus,
.main-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Legal Page Specifics */
.legal-content h2 {
    margin-top: 2rem;
    font-size: 1.5rem;
}

.legal-content p {
    color: var(--color-text-body);
}

.legal-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

/* 404/Empty State if needed */
.error-page {
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}