/* ========================================
   CHAMELEON STUDIO - Ultimate Premium Design
   SmartSoft-Inspired with Unique Twist
   ======================================== */

/* Google Fonts - Bold & Modern */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Bebas+Neue&display=swap');

/* ========================================
   CSS Variables - Vibrant Premium Palette
   ======================================== */
:root {
    /* Primary Colors - SmartSoft Inspired */
    --color-raspberry: #ED1846;
    --color-teal: #08B89D;
    --color-yellow: #FFD700;
    --color-navy: #1C1C28;

    /* Backgrounds */
    --bg-cream: #FAFAF8;
    --bg-warm: #F5F3EF;
    --bg-dark: #1C1C28;
    --bg-darker: #12121A;

    /* Text */
    --text-dark: #1C1C28;
    --text-medium: #4A4A5A;
    --text-light: #8E8E9A;
    --text-white: #FFFFFF;

    /* Gradients */
    --gradient-main: linear-gradient(135deg, #ED1846 0%, #FF6B6B 100%);
    --gradient-teal: linear-gradient(135deg, #08B89D 0%, #0DD9B7 100%);
    --gradient-warm: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-dark: linear-gradient(135deg, #1C1C28 0%, #2D2D3A 100%);

    /* Cards */
    --card-bg: #FFFFFF;
    --card-border: rgba(0, 0, 0, 0.06);
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.15);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 100px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========================================
   Reset & Base
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Page Transition Wrapper */
.page-transition {
    animation: pageEnter 0.6s var(--ease-out);
}

@keyframes pageEnter {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Links & Images */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s var(--ease-out);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

/* ========================================
   Typography - Bold & Impactful
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.display-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ========================================
   Layout
   ======================================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

/* Slanted Section Divider */
.section-slant {
    position: relative;
}

.section-slant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: inherit;
    transform: skewY(-2deg);
    transform-origin: top left;
}

/* ========================================
   Navigation - Sleek & Modern
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: var(--space-sm) 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.02em;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.logo:hover {
    opacity: 0.8;
}

/* Footer logo specific overrides if needed */
/* Footer logo specific overrides */
.footer .logo {
    background: var(--gradient-main);
    padding: 10px 15px;
    border-radius: 12px;
    display: inline-block;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: initial;
    box-shadow: 0 4px 15px rgba(237, 24, 70, 0.3);
}

.footer .logo img {
    height: 40px;
    /* Kept small as requested */
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    /* Make logo white to contrast with red background */
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-warm);
    padding: 6px;
    border-radius: var(--radius-full);
}

.nav-link {
    position: relative;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-medium);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--text-dark);
}

.nav-link.active {
    background: var(--color-raspberry);
    color: white;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s var(--ease-out);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   Buttons - Bold & Playful
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 18px 40px;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.4s var(--ease-bounce);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 10px 30px rgba(237, 24, 70, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(237, 24, 70, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 3px solid var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-5px);
}

.btn-teal {
    background: var(--gradient-teal);
    color: white;
    box-shadow: 0 10px 30px rgba(8, 184, 157, 0.3);
}

.btn-teal:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(8, 184, 157, 0.4);
}

/* ========================================
   Hero Section - Bold & Dynamic
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px var(--space-lg) var(--space-3xl);
    position: relative;
    overflow: hidden;
    background: var(--bg-cream);
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 24px;
    background: var(--color-teal);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xl);
    animation: slideIn 0.8s var(--ease-out);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h1 {
    margin-bottom: var(--space-lg);
    animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero h1 span {
    display: block;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    max-width: 600px;
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
    animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeUp 0.8s var(--ease-out) 0.6s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 80%;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-main);
    opacity: 0.15;
    top: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-teal);
    opacity: 0.2;
    bottom: 15%;
    right: 30%;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--color-yellow);
    opacity: 0.3;
    top: 30%;
    right: 40%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -30px);
    }
}

/* ========================================
   Services Section - Card Grid
   ======================================== */
.services-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-warm);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--bg-warm);
    transform: skewY(-2deg);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.15rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

/* Service Card - New Unique Style */
.service-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--card-shadow);
    transition: all 0.5s var(--ease-bounce);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border: 3px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-15px) rotate(-1deg);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--color-raspberry);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-size: 2rem;
    transition: all 0.4s var(--ease-bounce);
}

.service-card:hover .service-icon {
    background: var(--gradient-main);
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon svg {
    color: white;
}

.service-icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-raspberry);
    transition: color 0.3s;
}

.service-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.card-arrow {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-raspberry);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: var(--space-lg);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease-out);
}

.service-card:hover .card-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Page Hero - Service Pages
   ======================================== */
.page-hero {
    padding: 200px var(--space-lg) var(--space-3xl);
    background: var(--bg-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--bg-cream);
    transform: skewY(-2deg);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--gradient-main);
    opacity: 0.1;
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.page-hero h1 {
    margin-bottom: var(--space-lg);
    animation: fadeUp 0.6s var(--ease-out);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    font-size: 1.3rem;
    line-height: 1.8;
    animation: fadeUp 0.6s var(--ease-out) 0.2s both;
}

/* ========================================
   Content Sections
   ======================================== */
.content-section {
    padding: var(--space-3xl) 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
    align-items: center;
}

/* ========================================
   Feature Cards - Unique Style
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--card-shadow);
    transition: all 0.5s var(--ease-bounce);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--color-raspberry), var(--color-teal));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-teal);
    box-shadow: var(--card-shadow-hover);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    font-size: 2.5rem;
    transition: all 0.4s var(--ease-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--color-teal);
    color: white;
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   Stats Section - Bold Numbers
   ======================================== */
.stats-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: var(--space-xl);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========================================
   Process Section
   ======================================== */
.process-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-cream);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12%;
    width: 76%;
    height: 4px;
    background: var(--gradient-teal);
    border-radius: 2px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 4px solid var(--color-teal);
    border-radius: 50%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--color-teal);
    position: relative;
    z-index: 1;
    transition: all 0.4s var(--ease-bounce);
    box-shadow: var(--card-shadow);
}

.process-step:hover .process-number {
    background: var(--gradient-teal);
    color: white;
    border-color: transparent;
    transform: scale(1.1);
}

.process-step h3 {
    margin-bottom: var(--space-sm);
}

.process-step p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   Benefits Section
   ======================================== */
.benefits-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-warm);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    transition: all 0.4s var(--ease-bounce);
    border-left: 5px solid transparent;
}

.benefit-item:hover {
    transform: translateX(10px);
    border-left-color: var(--color-raspberry);
    box-shadow: var(--card-shadow-hover);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-main);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.benefit-content h4 {
    margin-bottom: var(--space-xs);
    font-size: 1.1rem;
}

.benefit-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    background: var(--bg-cream);
}

.cta-box {
    background: var(--gradient-main);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.15rem;
}

.cta-content .btn-secondary {
    background: white;
    color: var(--color-raspberry);
    border: none;
}

.cta-content .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-warm);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
}

.contact-info h2 {
    margin-bottom: var(--space-lg);
}

.contact-info>p {
    color: var(--text-medium);
    margin-bottom: var(--space-xl);
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    transition: all 0.4s var(--ease-bounce);
    border-left: 4px solid transparent;
}

.contact-item:hover {
    transform: translateX(10px);
    border-left-color: var(--color-teal);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-teal);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.contact-text h4 {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-text p {
    font-weight: 600;
    font-size: 1.05rem;
}

/* Contact Form */
.contact-form {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-warm);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s var(--ease-out);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-raspberry);
    background: white;
    box-shadow: 0 0 0 4px rgba(237, 24, 70, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

/* ========================================
   Footer - Bold & Clean
   ======================================== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: var(--space-3xl) 0 var(--space-lg);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--bg-dark);
    transform: skewY(-2deg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.footer-brand .logo {
    color: white;
}

.footer-brand .logo img {
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-md);
    max-width: 300px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    color: var(--color-raspberry);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-out);
}

.footer-links a:hover {
    color: white;
    transform: translateX(8px);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-links a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.4s var(--ease-bounce);
}

.social-links a:hover {
    background: var(--color-raspberry);
    transform: translateY(-5px) scale(1.1);
}

/* ========================================
   Animations & Reveal
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s var(--ease-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s var(--ease-out);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s var(--ease-out);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid::before {
        display: none;
    }

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

    .hero-visual {
        display: none;
    }
}

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

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-md);
        transition: right 0.5s var(--ease-out);
        border-radius: 0;
        padding: var(--space-lg);
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

    .stat-number {
        font-size: 3.5rem;
    }

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

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
    }

    .cta-box {
        padding: var(--space-xl);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

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

/* ========================================
   Utilities
   ======================================== */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-medium);
}

.mb-1 {
    margin-bottom: var(--space-sm);
}

.mb-2 {
    margin-bottom: var(--space-md);
}

.mb-3 {
    margin-bottom: var(--space-lg);
}

/* ========================================
   Demo Page - Video Layout
   ======================================== */
.demo-section {
    padding: var(--space-lg) 0;
    /* Reduced padding */
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-wrapper-card {
    background: linear-gradient(145deg, #13131f 0%, #0f0f16 100%);
    /* Subtle gradient */
    border-radius: 30px;
    /* Slightly tighter radius */
    padding: var(--space-lg);
    /* Reduced padding */
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.02);
    max-width: 900px;
    /* Reduced width to force height down */
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Add a decorative glow behind the card */
.demo-wrapper-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(237, 24, 70, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.video-layout {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    /* Reduced gap */
    position: relative;
    z-index: 1;
}

.video-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-frame:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 20px 50px rgba(237, 24, 70, 0.15);
    border-color: rgba(237, 24, 70, 0.5);
}

/* Maintain Aspect Ratio */
.video-frame::before {
    content: "";
    display: block;
    padding-top: 52%;
    /* Slightly wider/shorter than 16:9 to save vertical space */
}

.video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Placeholder Gradient */
.video-placeholder-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1C1C28 0%, #292938 100%);
}

.video-placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.video-frame:hover .video-placeholder-img {
    opacity: 1;
}

/* Play Button Overlay */
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    /* Smaller play button */
    height: 60px;
    background: rgba(237, 24, 70, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    box-shadow: 0 0 0 6px rgba(237, 24, 70, 0.3);
    backdrop-filter: blur(4px);
}

.play-button-overlay:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: #fff;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
}

.play-button-overlay svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    margin-left: 3px;
    transition: fill 0.3s;
}

.play-button-overlay:hover svg {
    fill: var(--color-raspberry);
}

/* Grid for Bottom Videos */
.video-row-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    /* Reduced gap */
}

@media (max-width: 768px) {
    .video-row-bottom {
        grid-template-columns: 1fr;
    }

    .demo-wrapper-card {
        padding: var(--space-md);
        border-radius: 20px;
        margin: 0 var(--space-ms);
    }
}