/* --- VANTABLACK 2099 THEME --- */
/*
    --bg-color: #000000;
    --primary-color: #00D1FF; (Ion Blue)
    --secondary-color: #FF33A8; (Pulse Pink)
    --text-color: #E0E0E0;
    --text-color-darker: #a0a0a0;
    --border-color: rgba(0, 209, 255, 0.2);
    --glow-color-primary: rgba(0, 209, 255, 0.7);
    --glow-color-secondary: rgba(255, 51, 168, 0.7);
    --card-bg: rgba(10, 25, 47, 0.1);
    --header-bg: rgba(0, 0, 0, 0.7);
*/

:root {
    --bg-color: #000000;
    --primary-color: #00D1FF;
    --secondary-color: #FF33A8;
    --text-color: #E0E0E0;
    --text-color-darker: #a0a0a0;
    --border-color: rgba(0, 209, 255, 0.2);
    --glow-color-primary: rgba(0, 209, 255, 0.7);
    --glow-color-secondary: rgba(255, 51, 168, 0.7);
    --card-bg: rgba(10, 25, 47, 0.15);
    --header-bg: rgba(5, 5, 10, 0.7);
    --header-height: 80px;

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Share Tech Mono', monospace;
}

/* --- BASE STYLES & RESET --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 0 5px var(--glow-color-primary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--glow-color-primary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* --- CUSTOM CURSOR --- */
.cursor,
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px var(--glow-color-primary);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), background-color 0.3s ease, border-color 0.3s ease, width 0.3s ease, height 0.3s ease;
}

body:hover .cursor,
body:hover .cursor-follower {
    opacity: 1;
}

.cursor-follower.active {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(0, 209, 255, 0.1);
    border-color: var(--secondary-color);
}

/* --- ANIMATED BACKGROUND --- */
#stars-bg,
#stars-bg-2,
#stars-bg-3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    background-repeat: repeat;
    background-position: 0 0;
}

#stars-bg {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"><rect width="4" height="4" fill="%23000" /><circle cx="1" cy="1" r="0.4" fill="%2300D1FF" fill-opacity="0.3" /></svg>');
    animation: move-stars 50s linear infinite;
}

#stars-bg-2 {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"><rect width="8" height="8" fill="%23000" /><circle cx="2" cy="5" r="0.5" fill="%23FF33A8" fill-opacity="0.2" /></svg>');
    animation: move-stars 100s linear infinite;
}

#stars-bg-3 {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><rect width="12" height="12" fill="%23000" /><circle cx="10" cy="3" r="0.6" fill="%23fff" fill-opacity="0.1" /></svg>');
    animation: move-stars 150s linear infinite;
}

@keyframes move-stars {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 1000px;
    }
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: top 0.3s ease-in-out, background-color 0.3s ease;
}

.header.scrolled {
    background-color: var(--bg-color);
}

.header.hidden {
    top: -100px;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 10px 0;
}

.logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    font-family: var(--font-secondary);
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    text-shadow: 0 0 8px var(--glow-color-primary);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 150%;
    left: -20px;
    background: var(--header-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    white-space: nowrap;
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.85rem;
}

.dropdown-menu a:hover {
    background-color: var(--border-color);
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ... mobile menu toggle ... */

/* --- UTILITY & SHARED CLASSES --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
    z-index: 1;
}

.btn span {
    z-index: 2;
}

.btn i {
    z-index: 2;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-color);
    font-weight: bold;
    box-shadow: 0 0 15px var(--glow-color-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--glow-color-primary);
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-color-darker);
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 0 15px var(--glow-color-primary);
}

.hero-title span {
    display: block;
    overflow: hidden;
}

.hero-title span>span {
    display: block;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-color-darker);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* --- STATS SECTION --- */
.stats-section {
    padding: 60px 0;
    background: radial-gradient(circle, rgba(0, 209, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--border-color);
}

.stat-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-family: var(--font-secondary);
    color: #fff;
}

.stat-number::after {
    content: '%';
}

.stat-item:nth-child(3) .stat-number::after,
.stat-item:nth-child(4) .stat-number::after {
    content: '+';
}

.stat-label {
    font-family: var(--font-secondary);
    color: var(--text-color-darker);
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* --- SERVICES SECTION --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--primary-color), transparent 30%);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-content {
    position: relative;
    z-index: 2;
    background: var(--bg-color);
    border-radius: 13px;
    /* Slightly smaller than parent to show border */
    padding: 1px;
    /* Hack to make it work inside */
    margin: -1px;
    /* Counter hack */
}

/* Fix for content inside */
.service-card .service-icon,
.service-card .service-title,
.service-card .service-description,
.service-card .service-link {
    position: relative;
    z-index: 3;
    background: transparent;
    padding: 0 38px 0 38px;
    margin: 0 -38px 0 -38px;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--border-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-color-darker);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.service-link {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}


/* --- APPROACH SECTION --- */
.approach-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.approach-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    right: -25px;
    top: 30px;
    background: var(--bg-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 0 15px var(--glow-color-primary);
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -25px;
}

.timeline-content {
    padding: 20px 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    position: relative;
}

.timeline-step {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 10px;
}

.timeline-item:nth-child(odd) .timeline-step {
    right: 20px;
}

.timeline-item:nth-child(even) .timeline-step {
    left: 20px;
}

.timeline-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* --- TESTIMONIALS SECTION --- */
.testimonial-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 20px;
}

.testimonial-text {
    flex-grow: 1;
    color: var(--text-color-darker);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-name {
    font-size: 1.1rem;
    color: #fff;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-color-darker);
}

/* --- CTA SECTION --- */
.cta-section {
    background: linear-gradient(0deg, rgba(0, 209, 255, 0.1), transparent);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-subtitle {
    display: block;
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-description {
    color: var(--text-color-darker);
    margin-bottom: 30px;
}

/* --- FOOTER --- */
.footer {
    padding: 80px 0 30px;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    color: #fff;
}

.footer-about .footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--text-color-darker);
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul a {
    color: var(--text-color-darker);
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-color-darker);
}

.footer-contact ul i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-contact ul a {
    color: var(--text-color-darker);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    color: var(--text-color-darker);
    font-size: 0.9rem;
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 0 15px var(--glow-color-primary);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: scale(1.1);
    color: var(--bg-color);
}

/* --- CONTACT & LEGAL PAGES --- */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 209, 255, 0.1), transparent);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.breadcrumbs a {
    color: var(--text-color-darker);
}

.breadcrumbs span {
    color: var(--primary-color);
}

.main-content {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    min-width: 40px;
    text-align: center;
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-details p,
.contact-details a {
    color: var(--text-color-darker);
    font-size: 0.95rem;
}

.contact-form-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 40px;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 15px 20px;
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--glow-color-primary);
}

.form-label {
    position: absolute;
    top: 15px;
    left: 20px;
    color: var(--text-color-darker);
    pointer-events: none;
    transition: all 0.2s ease;
}

.form-input:focus+.form-label,
.form-input:valid+.form-label,
.form-input:not(:placeholder-shown)+.form-label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    background-color: var(--bg-color);
    padding: 0 5px;
    color: var(--primary-color);
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
}

.input-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--border-color);
}

.form-input:focus~.input-icon {
    color: var(--primary-color);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    accent-color: var(--primary-color);
}

.btn-full {
    width: 100%;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--bg-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 30px var(--glow-color-primary);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-width: 400px;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.popup.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color-darker);
}

.popup-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.popup-content h3 {
    margin-bottom: 10px;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 40px 0 20px;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
}

.legal-content p,
.legal-content li {
    color: var(--text-color-darker);
    margin-bottom: 15px;
}

.legal-content strong {
    color: var(--text-color);
    font-weight: 500;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
    .header-actions .btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 40px;
    }

    .dropdown-menu {
        position: static;
        background: transparent;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 20px 0 0;
        text-align: center;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .approach-timeline::after {
        left: 25px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
        left: 0;
        text-align: left !important;
    }

    .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-step,
    .timeline-item:nth-child(even) .timeline-step {
        left: 20px;
        right: auto;
    }

    .testimonial-carousel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* --- MOBILE MENU --- */
.menu-toggle {
    display: none;
    width: 30px;
    height: 22px;
    cursor: pointer;
    background: transparent;
    border: none;
    position: relative;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    background-color: #fff;
    position: absolute;
    height: 2px;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    top: -10px;
}

.hamburger::after {
    bottom: -10px;
}

.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg) translate(7px, -7px);
}