:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --secondary: #0f172a;
    --secondary-light: #1e293b;
    --accent: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.4);
    --bg: #f8fafc;
    --bg-alt: #f1f5f9;
    --text: #0f172a;
    --text-light: #64748b;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px -5px rgba(16, 185, 129, 0.15);
    --shadow-glow: 0 0 30px var(--accent-glow);
    --container: 1200px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3 {
    line-height: 1.2;
    color: var(--secondary);
}

h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.5);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.3);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(15, 23, 42, 0.4);
}

.full-width {
    width: 100%;
}

/* Top Contact Bar */
.top-bar {
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
}

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

.top-bar a {
    color: var(--primary-light);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    margin-left: 0.5rem;
    animation: pulse-text 2s infinite;
}

@keyframes pulse-text {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.8;
    }
}

/* Navbar */
.navbar {
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

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

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

/* Nav Menu Desktop Default */
.nav-menu {
    display: flex;
    flex: 1;
    justify-content: center;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
    padding: 0.5rem;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--secondary);
    border-radius: 50px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Navbar & Contact */
nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary);
}

.navbar-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--primary);
}

.phone-icon {
    background: rgba(16, 185, 129, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.phone-text {
    display: none;
}

@media (min-width: 768px) {
    .phone-text {
        display: inline;
    }
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-call:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}


/* Hero */
.hero {
    padding: 14rem 0 10rem;
    position: relative;
    overflow: hidden;
    background-color: var(--bg);
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 70%);
    z-index: 0;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: var(--shadow-soft);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Removed redundant duplicate badge block */

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.main-hero-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: var(--transition);
}

.main-hero-img:hover {
    transform: rotate(0deg) scale(1.02);
}

.glass-float-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow);
}

.stat-item {
    margin-bottom: 2rem;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-desc {
    color: var(--text-light);
    font-weight: 500;
}

/* Services */
.services {
    padding: 10rem 0;
    background-color: var(--bg-alt);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    border-radius: 30px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(16, 185, 129, 0.1);
}

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

.service-card.active {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.3);
}

.service-card.active::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
}

.service-card.active h3,
.service-card.active .icon {
    color: var(--white);
}

.service-card.active p {
    color: rgba(255, 255, 255, 0.7);
}

.icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* About Us */
.about {
    padding: 8rem 0;
    background-color: var(--white);
}

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

.check-list {
    list-style: none;
    margin-top: 2rem;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.chart-mockup {
    background: linear-gradient(135deg, var(--secondary), #1e293b);
    border-radius: 30px;
    padding: 3rem;
    height: 400px;
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.chart-mockup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.chart-mockup .bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-dark), var(--primary));
    border-radius: 10px 10px 0 0;
    transition: height 1s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.chart-mockup .bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 10px 10px 0 0;
}

.chart-mockup p {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: var(--white);
    opacity: 0.9;
    font-weight: 600;
    z-index: 1;
    font-size: 1.1rem;
}


/* Contact */
.contact {
    padding: 8rem 0;
}

.contact-box {
    background: var(--secondary);
    border-radius: 40px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    color: var(--white);
}

.contact-info h2 {
    color: var(--white);
    font-size: 3rem;
}

.glass-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.glass-form input,
.glass-form textarea {
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
}

.glass-form textarea {
    height: 120px;
}

.glass-form input::placeholder,
.glass-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Logos Section */
.logo-strip {
    padding: 3rem 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-strip p {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-grid {
    display: flex;
    justify-content: space-center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: var(--transition);
}

.logo-grid:hover {
    opacity: 0.8;
}

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

/* Process Section */
.process {
    padding: 6rem 0;
    background: var(--bg);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    z-index: 0;
}

@media(max-width: 768px) {
    .process-grid::before {
        display: none;
    }
}

.step-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-soft);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

/* Testimonials */
.testimonials {
    padding: 8rem 0;
    background: var(--secondary);
    color: white;
    text-align: center;
}

.testimonials h2 {
    color: white;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    text-align: left;
}

.testi-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
}

.testi-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-author .avatar {
    width: 50px;
    height: 50px;
    margin: 0;
}

/* FAQ */
.faq-section {
    padding: 6rem 0;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.faq-item h4 {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    color: var(--secondary);
}

.faq-item p {
    margin-top: 1rem;
    color: var(--text-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
}

/* Massive Call Banner */
.call-banner-massive {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.call-banner-massive h2 {
    color: white;
    font-size: 3.5rem;
}

.call-banner-massive p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.call-banner-massive .btn-huge {
    font-size: 2rem;
    padding: 1.5rem 3rem;
    background: white;
    color: var(--primary-dark);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.call-banner-massive .btn-huge:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: var(--bg);
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.grid-4 {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
}

footer h4 {
    margin-bottom: 1.5rem;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 0.8rem;
}

footer ul li a {
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

footer ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    .hero .container,
    .grid-2,
    .contact-box {
        grid-template-columns: 1fr;
    }
}

/* Inner Pages General */
.inner-hero {
    padding: 10rem 0 4rem;
    background: linear-gradient(to bottom, rgba(16, 185, 129, 0.05), transparent);
}

.inner-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

/* Diensten Page */
.service-detail {
    padding: 6rem 0;
}

.bg-light {
    background-color: #f8fafc;
}

.reverse-mobile {
    /* Default normal order */
}

.align-center {
    align-items: center;
}

.icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.full-width-card {
    width: 100%;
    max-width: 100%;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.progress-bar-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    font-size: 1.1rem;
}

.progress-bg {
    width: 100%;
    height: 12px;
    background: #e2e8f0;
    border-radius: 100px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 100px;
}

.mt-4 {
    margin-top: 1.5rem;
}

.text-primary {
    color: var(--primary);
}

.font-bold {
    font-weight: 700;
}

.contract-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contract-header {
    margin-bottom: 2rem;
}

.contract-body {
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.market-chart {
    height: 150px;
    display: flex;
    align-items: flex-end;
}

.sparkline {
    width: 100%;
    height: 100px;
}

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

.service-grid-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.mini-card {
    background: rgba(16, 185, 129, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.mini-card h4 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.mini-card p {
    font-size: 0.95rem;
}

.cta-section {
    padding: 4rem 0 8rem;
}

.cta-card {
    background: var(--secondary);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-card h2 {
    color: var(--white);
}

/* Over Ons Page */
.about-story {
    padding: 4rem 0 6rem;
}

.abstract-shape-container {
    width: 100%;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 30px;
    overflow: hidden;
}

.shape-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.2));
    filter: blur(40px);
}

.shape-rect {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    transform: rotate(45deg);
    border: 1px solid rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(10px);
}

.shape-glass {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 2rem 3rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid white;
    box-shadow: var(--shadow);
}

.team-section {
    padding: 6rem 0;
}

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

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.bg-gradient-1 {
    background: linear-gradient(135deg, #10b981, #059669);
}

.bg-gradient-2 {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.bg-gradient-3 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.bg-gradient-4 {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.role {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.timeline-section {
    padding: 6rem 0;
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: rgba(16, 185, 129, 0.2);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 10px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item.right-align {
    left: 50%;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    position: absolute;
    right: -10px;
    top: 15px;
    background-color: var(--white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 10;
}

.right-align .timeline-dot {
    left: -10px;
}

.timeline-content {
    padding: 1.5rem;
    background-color: white;
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.box-shadow {
    box-shadow: var(--shadow);
}

.box-shadow-xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Contact Page */
.contact-page-section {
    padding: 4rem 0 8rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mt-3 {
    margin-top: 1.5rem;
}

.info-content h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.row-inputs {
    display: flex;
    gap: 1rem;
}

.w-full {
    width: 100%;
}

.form-input {
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #f8fafc;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.row-inputs .form-input {
    flex: 1;
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

.mt-8 {
    margin-top: 4rem;
}

.border-radius-lg {
    border-radius: 24px;
}

.overflow-hidden {
    overflow: hidden;
}

.position-relative {
    position: relative;
}

/* Active Menu Link */
.active-link {
    color: var(--primary) !important;
    font-weight: 700 !important;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testi-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 3.5rem;
    }

    .hero .container,
    .grid-2,
    .contact-box,
    .service-detail .container.grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .navbar .container {
        gap: 1rem;
    }
}

@media (max-width: 768px) {

    .service-grid-mini,
    .service-grid,
    .logo-grid,
    .footer-links,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--glass);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        border-top: 0px solid transparent;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        padding: 2rem;
        max-height: 400px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    nav ul {
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .navbar-contact {
        display: none;
        /* Hidden on mobile header to save space, float button is there */
    }

    .nav-menu .navbar-contact {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 10rem 0 6rem;
    }

    .call-banner-massive h2 {
        font-size: 2.5rem;
    }

    .call-banner-massive .btn-huge {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .top-bar {
        display: none;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.right-align {
        left: 0%;
    }

    .timeline-dot {
        left: 21px !important;
    }

    .row-inputs {
        flex-direction: column;
    }

    .reverse-mobile {
        flex-direction: column-reverse;
    }

    .contact-box {
        padding: 2rem;
    }
}