/* Styles for Advenzy Landing Page */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #5A45FF;
    --primary-light: rgba(90, 69, 255, 0.08);
    --primary-hover: #4833E6;
    --secondary: #12C2E9;
    --secondary-light: rgba(18, 194, 233, 0.08);
    --dark-bg: #1B1836;
    --text-main: #1C1934;
    --text-muted: #5C5975;
    --white: #FFFFFF;
    --border-color: rgba(224, 219, 250, 0.6);
    --card-shadow: 0 15px 35px rgba(27, 24, 54, 0.04);
    --transition: all 0.25s ease;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #FAF9FF;
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
}

/* Soft Background Glow Blobs */
.bg-glow-1 {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(90, 69, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
    z-index: -2;
    pointer-events: none;
}

.bg-glow-2 {
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(18, 194, 233, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
    z-index: -2;
    pointer-events: none;
}

.bg-glow-3 {
    position: absolute;
    top: 40%;
    left: 25%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(246, 79, 89, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(100px);
    z-index: -2;
    pointer-events: none;
}

/* Section styling */
section {
    padding: 100px 5% 80px 5%;
    min-height: auto;
    position: relative;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Floating Navbar */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1120px;
    height: 70px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(90, 69, 255, 0.06);
    z-index: 1000;
    padding: 0 28px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    transition: var(--transition);
}

.navbar.scrolled {
    width: 100%;
    max-width: 100%;
    top: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    padding: 0 8%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
}

.logo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

.nav-links a.active::after {
    width: 100%;
}

.nav-cta-btn {
    text-decoration: none;
    padding: 12px 24px;
    background-color: var(--dark-bg);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.nav-cta-btn:hover {
    background-color: var(--primary);
    box-shadow: 0 6px 15px rgba(90, 69, 255, 0.2);
}

/* Sidebar Pagination Indicator */
.side-indicator {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    background: rgba(255, 255, 255, 0.8);
    padding: 16px 8px;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}

.side-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #C3BFDE;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.side-dot:hover {
    background-color: var(--primary);
}

.side-dot.active {
    background-color: var(--primary);
    transform: scale(1.4);
    box-shadow: 0 0 8px var(--primary);
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: var(--transition);
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary);
    box-shadow: 0 8px 24px rgba(90, 69, 255, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--text-main);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background-color: rgba(90, 69, 255, 0.02);
    transform: translateY(-2px);
}

/* Badge style */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 1. Hero Section */
#hero {
    padding-top: 170px;
    padding-bottom: 80px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-size: 58px;
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--text-main);
    margin-bottom: 24px;
}

.hero-content h1 span.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #7b2cbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-underline-svg {
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 12px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 780px;
}

.hero-partners {
    margin-top: 80px;
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.hero-partners p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 600;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 38px;
    opacity: 0.65;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo svg {
    height: 28px;
}

.partner-text {
    font-size: 16px;
    font-weight: 700;
    color: #4a4d5e;
}

/* 2. Trusted Growth Partner (About) */
#about {
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.7));
}

.about-card {
    background: var(--white);
    border-radius: 28px;
    padding: 60px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.about-left h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 24px;
}

.about-left p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-left p:last-child {
    margin-bottom: 0;
}

.about-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-illustration {
    width: 100%;
    max-width: 380px;
    height: auto;
}

/* Stats panel */
.stats-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.stat-badge {
    background: var(--primary-light);
    border: 1px solid rgba(90, 69, 255, 0.15);
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-val {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.stat-lbl {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

/* 3. Services Grid */
#services {
    background: relative;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    background: var(--white);
    border-radius: 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    transition: var(--transition);
}

.service-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-left {
    padding-right: 20px;
}

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

.service-card.reverse .service-left {
    order: 2;
    padding-right: 0;
    padding-left: 20px;
}

.service-card.reverse .service-right {
    order: 1;
}

.service-card h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 16px;
}

.service-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-features-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

.features-col-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-list li {
    font-size: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list li svg {
    color: var(--primary);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.benefits-box {
    background: #FAF9FF;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.benefits-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 12px;
}

.benefits-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.benefit-tag {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
}

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.platform-tag {
    background: rgba(18, 194, 233, 0.08);
    color: #0b9bb8;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* Service illustrations CSS charts */
.mockup-chart-container {
    background: #FAF9FF;
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    max-width: 420px;
    border: 1px solid var(--border-color);
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.02);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mockup-dot-group {
    display: flex;
    gap: 6px;
}

.mockup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E1DFEC;
}

.mockup-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--white);
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.mockup-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.mockup-stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--border-color);
}

.mockup-stat-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

.mockup-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.mockup-stat-label-sec {
    color: #12C2E9;
}

.mockup-graphic {
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.mockup-graphic svg {
    width: 100%;
    height: 120px;
}

/* Grid layout for services list overview in screenshot 3 */
.overview-services-box {
    background: var(--white);
    border-radius: 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    padding: 60px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.overview-radial-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(90, 69, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 1;
}

.overview-services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.overview-service-item {
    display: flex;
    gap: 20px;
}

.overview-service-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.overview-service-icon svg {
    width: 24px;
    height: 24px;
}

.overview-service-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.overview-service-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 4. Why Choose Advenzy */
#why-choose {
    background: linear-gradient(to bottom, rgba(255,255,255,0.7), rgba(255,255,255,0));
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon svg {
    width: 22px;
    height: 22px;
}

.why-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 5. Our Process Section */
#process {
    background: relative;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    margin-top: 40px;
}

.process-step {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.process-number {
    font-size: 32px;
    font-weight: 800;
    color: rgba(90, 69, 255, 0.15);
    margin-bottom: 16px;
    display: block;
}

.process-step h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-main);
}

.process-step p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 6. Industries Section */
#industries {
    text-align: center;
}

.industries-box {
    background: var(--white);
    border-radius: 28px;
    padding: 50px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    max-width: 900px;
    margin: 0 auto;
}

.industries-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.industry-tag {
    background: #FAF9FF;
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
}

.industry-tag:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
}

/* 7. Results that Matter (Stats / Impact) */
#results {
    background: var(--dark-bg);
    color: var(--white);
    border-radius: 40px;
    margin: 60px 5%;
    padding: 80px 6%;
}

.results-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.results-left h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
}

.results-left p {
    font-size: 16px;
    color: #C3BFDE;
    line-height: 1.6;
    margin-bottom: 30px;
}

.results-list-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.results-list-items li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.results-list-items li svg {
    color: var(--secondary);
    width: 20px;
    height: 20px;
}

.results-right-mockup {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
}

.results-bar-chart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bar-item {
    width: 100%;
}

.bar-label-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #C3BFDE;
}

.bar-bg {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

/* 8. FAQ Accordion Section */
#faqs {
    background: relative;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
}

.faq-icon-svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    color: var(--text-muted);
}

.faq-item.active .faq-icon-svg {
    transform: rotate(180deg);
    color: var(--primary);
}

/* 9. CTA Section (Ready to Grow) */
#final-cta {
    text-align: center;
    padding: 100px 5%;
}

.cta-box {
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    border-radius: 32px;
    padding: 70px 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-box p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Footer Section */
footer {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 60px 8% 40px 8%;
}

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

.footer-brand p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 16px;
    max-width: 320px;
}

.footer-links h5 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13.5px;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: #FAF9FF;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

/* Lead Capture Modal Overlays */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 24, 54, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--white);
    border-radius: 28px;
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 520px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #FAF9FF;
    border: 1px solid var(--border-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-muted);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
}

.modal-header {
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-main);
    background: #FAF9FF;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.form-submit-btn:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(90, 69, 255, 0.2);
}

/* Success Alert inside Modal */
.form-success-message {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.form-success-message svg {
    width: 54px;
    height: 54px;
    color: #00B894;
    margin-bottom: 16px;
}

.form-success-message h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-success-message p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Media Queries (Responsive Styling) */
@media (max-width: 991px) {
    section {
        padding: 80px 4% 60px 4%;
    }
    
    .navbar {
        width: 95%;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 46px;
    }
    
    .about-card {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 30px;
    }
    
    .about-right {
        order: -1;
    }
    
    .service-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .service-card.reverse {
        grid-template-columns: 1fr;
    }
    
    .service-card.reverse .service-left {
        order: 1;
        padding-left: 0;
    }
    
    .service-card.reverse .service-right {
        order: 2;
    }
    
    .service-left {
        padding-right: 0;
    }
    
    .overview-services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .results-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .results-right-mockup {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .side-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        border-radius: 20px;
        border: 1px solid var(--border-color);
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        padding: 24px;
        z-index: 100;
    }
    
    .nav-links.mobile-active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 17px;
    }
    
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .partner-logos {
        gap: 30px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .cta-box h2 {
        font-size: 30px;
    }
}

/* Worked On (Portfolio) Styles */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.work-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.work-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(90, 69, 255, 0.08);
}

.work-icon-badge {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.work-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.work-meta-tag {
    font-size: 11px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 16px;
}

.work-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-main);
}

.work-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.btn-work-view {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    transition: var(--transition);
}

.btn-work-view:hover {
    color: var(--primary-hover);
}

.btn-work-view svg {
    transition: transform 0.25s ease;
}

.btn-work-view:hover svg {
    transform: translateX(4px);
}

/* Portfolio Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 24, 54, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--white);
    border-radius: 28px;
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 580px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #FAF9FF;
    border: 1px solid var(--border-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-muted);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    margin-top: 10px;
}

.p-stat-card {
    border: 1px solid rgba(90, 69, 255, 0.15);
    background: #FAF9FF;
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.p-stat-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

.p-stat-lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 4px;
}

.portfolio-details h4 {
    font-size: 15px;
    font-weight: 750;
    color: var(--text-main);
    margin-bottom: 8px;
}

.portfolio-details p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Portfolio mobile styles */
@media (max-width: 991px) {
    .work-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
