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

/* CSS Variables */
:root {
    --primary-blue: #FFD700;
    --accent-orange: #FFA500;
    --white: #FFFFFF;
    --graphite: #222222;
    --light-gray: #F5F5F5;
    --medium-gray: #888888;
    --dark-gray: #444444;
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-accent: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 165, 0, 0.85) 100%);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --section-padding: 100px 20px;
    --container-max: 1400px;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--graphite);
    overflow-x: hidden;
}

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

.section {
    padding: var(--section-padding);
}

/* Navigation Bar */
.navbar {
    background: var(--gradient-primary);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 215, 0, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h2 {
    color: #00008B;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin: 0;
    line-height: 1;
}

.logo h2:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: #00008B;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    padding: 10px 20px;
    display: block;
    border-radius: var(--border-radius-sm);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(0, 0, 0, 0.1);
}

.nav-link.active {
    background: rgba(0, 0, 0, 0.15);
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--graphite);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 50%, #001f3f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 10;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    opacity: 0.3;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.85) 0%, rgba(0, 61, 130, 0.9) 50%, rgba(0, 31, 63, 0.95) 100%);
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: backgroundMove 20s linear infinite;
    z-index: 2;
}

.hero-content {
    color: white;
    position: relative;
    z-index: 3;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-title {
    color: white;
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero-subtitle {
    color: white;
    font-size: 1.5em;
    margin-bottom: 30px;
    opacity: 1;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.2s backwards;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-button {
    background: var(--gradient-accent);
    color: var(--graphite);
    border: none;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-transform: none;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #FF7700 0%, #FF9944 100%);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--graphite);
    color: var(--graphite);
}

.cta-button.secondary:hover {
    background: var(--graphite);
    color: var(--white);
}

/* About Section */
.about-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    transition: background 0.6s ease;
}

.about-section.active-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    animation: slideInLeft 1s ease forwards;
}

.about-text {
    animation: slideInLeft 1s ease 0.2s backwards;
}

.about-text h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #0056b3;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.about-image {
    animation: slideInRight 1s ease 0.4s backwards;
}

.placeholder-image {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: #0056b3;
    font-weight: 600;
    transition: all 0.4s ease;
    border: 2px solid #0056b3;
}

.placeholder-image:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.3);
    background: linear-gradient(135deg, #bbdefb 0%, #90caf9 100%);
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--graphite);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 20px auto 0;
    border-radius: 2px;
    animation: expandWidth 1s ease 0.5s backwards;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    opacity: 0;
    animation: slideInLeft 1s ease 0.3s forwards;
}

.about-text h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #0056b3;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #666;
    line-height: 1.8;
}

.about-image {
    opacity: 0;
    animation: slideInRight 1s ease 0.3s forwards;
}

.placeholder-image {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: #0056b3;
    font-weight: 600;
    transition: all 0.4s ease;
    border: 2px solid #0056b3;
}

.placeholder-image:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.3);
    background: linear-gradient(135deg, #bbdefb 0%, #90caf9 100%);
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* Section transition animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes linkPulse {
    0%, 100% {
        transform: translateY(-2px) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.1);
    }
}

.slide-in {
    animation: slideIn 0.6s ease forwards;
}

.slide-out {
    animation: slideOut 0.3s ease forwards;
}

/* Section color transitions */
section {
    transition: background-color 0.5s ease;
}

.active-section {
    position: relative;
}

/* Navbar transition */
.navbar {
    transition: background 0.6s ease;
}



/* Services Section - Stripe Style */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 50%, #1a1a2e 100%);
    min-height: 100vh;
    position: relative;
    overflow: visible;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(67, 233, 123, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(56, 249, 215, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    font-family: var(--font-body);
    color: var(--dark-gray);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Stripe-style Scroll Container */
.services-scroll-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

@media (max-width: 1024px) {
    .services-scroll-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Left Side: Scrolling Content */
.services-scroll-content {
    display: flex;
    flex-direction: column;
    gap: 300px;
    padding-bottom: 600px;
}

.service-item {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0;
    opacity: 0.4;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item.active {
    opacity: 1;
    transform: translateY(0);
}

.service-item-content {
    max-width: 600px;
}

.service-icon-large {
    font-size: 4em;
    margin-bottom: 24px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.service-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    font-size: 1.2em;
    line-height: 1.8;
    color: white;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: white;
    font-size: 1.1em;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.2em;
}

.service-cta {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #222222;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

/* Right Side: Fixed Visual */
.services-sticky-visual {
    position: relative;
    min-height: 100vh;
}

.sticky-visual-container {
    position: sticky;
    top: 150px;
    width: 100%;
    height: 600px;
}

.visual-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.visual-item.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

/* Flip Card */
.flip-card {
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(67, 233, 123, 0.3);
}

.flip-card-back {
    transform: rotateY(180deg);
}

.visual-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    opacity: 0.9;
    z-index: -1;
}

.gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.visual-icon {
    font-size: 6rem;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.flip-card-front h3,
.flip-card-back h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.flip-card-front p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.flip-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.flip-features li {
    padding: 12px 0;
    color: #fff;
    font-size: 1.2rem;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-sticky-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .service-item {
        min-height: auto;
    }

    .service-title {
        font-size: 2rem;
    }

    .service-description {
        font-size: 1rem;
    }

    .service-features li {
        font-size: 1rem;
    }
}

.service-title {
    font-size: 2.5em;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-description {
    font-size: 1.2em;
    line-height: 1.8;
    color: white;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-features li {
    font-size: 1.1em;
    color: white;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.2em;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #222222;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 102, 0, 0.5);
    background: linear-gradient(135deg, #ff7711 0%, #ff9644 100%);
}

/* Right Side: Sticky Visual Content */
.services-sticky-visual {
    position: relative;
}

@media (max-width: 1024px) {
    .services-sticky-visual {
        display: none;
    }
}

.sticky-visual-container {
    position: sticky;
    top: 100px;
    height: 600px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0;
}

.visual-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.visual-item.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

/* Flip Card Styles */
.flip-card {
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
}

/* Hover to flip the card */
.visual-item.active .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: white;
    overflow: hidden;
}

.flip-card-front {
    z-index: 2;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.flip-card-front h3,
.flip-card-back h3 {
    font-size: 2em;
    font-weight: 700;
    color: #0056b3;
    margin: 20px 0 10px 0;
    z-index: 10;
    position: relative;
}

.flip-card-front p {
    font-size: 1.2em;
    color: #666;
    font-style: italic;
    z-index: 10;
    position: relative;
}

.flip-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    z-index: 10;
    position: relative;
}

.flip-features li {
    font-size: 1.3em;
    color: #333;
    padding: 12px 0;
    font-weight: 500;
}

/* Gradient Backgrounds */
.visual-gradient {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.visual-icon {
    font-size: 5em;
    z-index: 10;
    position: relative;
    animation: float 3s ease-in-out infinite;
    margin-bottom: 20px;
}

.visual-mockup {
    position: relative;
    z-index: 1;
}

/* Phone Mockup */
.mockup-phone {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.4);
    animation: float 6s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 32px;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Chart Mockup */
.mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    height: 300px;
    padding: 40px;
}

.chart-bar {
    width: 60px;
    background: linear-gradient(180deg, #f093fb 0%, #f5576c 100%);
    border-radius: 8px 8px 0 0;
    animation: growBar 2s ease-in-out infinite;
}

.bar-1 {
    height: 60%;
    animation-delay: 0s;
}

.bar-2 {
    height: 85%;
    animation-delay: 0.2s;
}

.bar-3 {
    height: 70%;
    animation-delay: 0.4s;
}

.bar-4 {
    height: 95%;
    animation-delay: 0.6s;
}

/* Growth Line Mockup */
.mockup-growth {
    position: relative;
    width: 400px;
    height: 300px;
}

.growth-line {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: drawLine 3s ease-in-out infinite;
}

.growth-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.growth-dots .dot {
    width: 20px;
    height: 20px;
    background: #00f2fe;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

.growth-dots .dot:nth-child(2) {
    animation-delay: 0.3s;
}

.growth-dots .dot:nth-child(3) {
    animation-delay: 0.6s;
}

/* Support Circle Mockup */
.mockup-support {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(67, 233, 123, 0.4);
}

.support-circle.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.support-text {
    position: absolute;
    font-size: 3em;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    position: relative;
    overflow: hidden;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 86, 179, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 86, 179, 0.25);
    border-color: #0056b3;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
}

.service-icon {
    font-size: 3em;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(360deg);
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #0056b3;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: #333;
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    transition: background 0.6s ease;
}

.contact-section.active-section {
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e7f0 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    opacity: 0;
    animation: slideInLeft 1s ease 0.2s forwards;
}

.contact-info h3 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #0056b3;
    font-weight: 700;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.info-item:hover {
    background: rgba(0, 86, 179, 0.1);
    transform: translateX(10px);
}

.info-item .icon {
    font-size: 1.5em;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.info-item:hover .icon {
    transform: scale(1.3) rotate(15deg);
}

.info-item p {
    font-size: 1.1em;
    color: #666;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: slideInRight 1s ease 0.2s forwards;
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 10px 40px rgba(0, 86, 179, 0.2);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0056b3;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.15);
}

.submit-button {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1em;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:hover::after {
    width: 400px;
    height: 400px;
}

.submit-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.5);
    background: linear-gradient(135deg, #ff7700 0%, #ff9944 100%);
}

.submit-button:active {
    transform: translateY(-1px) scale(0.98);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

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

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes textGlow {
    from {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    }
    to {
        text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 255, 255, 0.3);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

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

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

@keyframes rotateIcon {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Animations for Stripe-style Services */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes growBar {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.1);
    }
}

@keyframes drawLine {
    0% {
        transform: scaleX(0);
    }
    50% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(67, 233, 123, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(67, 233, 123, 0.8);
    }
}

@keyframes flipCard {
    0% {
        transform: rotateY(0deg) scale(1);
    }
    25% {
        transform: rotateY(90deg) scale(0.95);
    }
    50% {
        transform: rotateY(180deg) scale(1);
    }
    75% {
        transform: rotateY(270deg) scale(0.95);
    }
    100% {
        transform: rotateY(360deg) scale(1);
    }
}

@keyframes flipCardOut {
    0% {
        transform: rotateY(0deg) scale(1);
    }
    50% {
        transform: rotateY(90deg) scale(0.95);
    }
    100% {
        transform: rotateY(180deg) scale(1);
    }
}

/* ========== NEW SECTIONS ========== */

/* VERTICALS CARDS */
.verticals-section {
    background: var(--light-gray);
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.vertical-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 48px 32px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.vertical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.vertical-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.vertical-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.vertical-card p {
    color: var(--dark-gray);
    margin-bottom: 24px;
    line-height: 1.8;
}

.vertical-features {
    list-style: none;
    text-align: left;
    margin: 24px 0;
    padding: 0;
}

.vertical-features li {
    padding: 8px 0;
    color: var(--dark-gray);
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.cta-link:hover {
    color: var(--accent-orange);
    gap: 12px;
}

/* WHY CHOOSE US */
.why-choose-section {
    background: var(--white);
}

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

.why-item {
    text-align: center;
    padding: 32px;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    box-shadow: var(--shadow-md);
}

.why-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.why-item p {
    color: var(--dark-gray);
    line-height: 1.8;
}

/* IMPACT COUNTER */
.impact-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--white);
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.impact-item {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.impact-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--accent-orange);
    line-height: 1;
}

.impact-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
    white-space: nowrap;
}

/* TESTIMONIALS */
.testimonials-section {
    background: var(--light-gray);
}

.testimonials-carousel {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    text-align: center;
    display: none;
}

.testimonial-card.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.testimonial-role {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--primary-blue);
    width: 32px;
    border-radius: 6px;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
}

/* FOOTER */
.footer {
    background: var(--graphite);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer i {
    margin-right: 8px;
    color: var(--accent-orange);
    font-size: 1.1em;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-heading);
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--gradient-primary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        width: 100%;
        padding: 16px 0;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .impact-number {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .impact-number {
        font-size: 2.5rem;
    }

    .impact-label {
        font-size: 1rem;
        white-space: normal;
    }
}

