:root {
    /* Brand Colors */
    --color-primary: #00ff00;    /* Bright green */
    --color-secondary: #191919;  /* Dark gray/black */
    
    /* Background Colors */
    --bg-light: #c6c6c6;
    --bg-dark: #191919;
    
    /* Text Colors */
    --text-on-light: #191919;  /* Dark text for light backgrounds */
    --text-on-dark: #c6c6c6;  /* Light text for dark backgrounds */
    
    /* Gradient */
    --gradient-primary: linear-gradient(to right top, #caff00, #00ff00);
    
    /* Utility */
    --shadow-default: 0 2px 5px rgba(0,0,0,0.1);
    --primary-rgb: 202, 255, 0;
    --color-rating: #FFD700;     /* Gold color for ratings */
    --bg-light-rgb: 198, 198, 198; /* RGB values for bg-light for opacity uses */
}

/* Base Section Controls */
.section-full-width,
section,
[class*="-content"] {  /* This will catch all content containers */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.section-full-height {
    min-height: 100vh;
    height: auto;
}

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

.section-content {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}

/* Responsive Section Controls */
@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-content {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 2rem 0;
    }
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    max-width: 100vw;
    overflow-x: hidden;
    background: var(--bg-dark);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: transparent;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
    top: 0;
}

nav.scrolled {
    background-color: #1a1a1a; /* Or your preferred dark color */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo a {
    text-decoration: none;
    color: var(--text-on-light);
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px; /* Adjust this value to match your desired logo size */
    width: auto;
    object-fit: contain;
}

.nav-center {
    background: rgba(var(--bg-light-rgb), 0.9); /* Light grey background only for the center pill */
    padding: 0.8rem 2rem;
    border-radius: 100px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding: 5px 0;
    overflow: hidden;
    height: 1.5em;
}

.nav-links a span {
    display: block;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
}

.nav-links a span:nth-child(1) {
    color: var(--text-on-light);
    background: none;
    -webkit-text-fill-color: initial;
}

.nav-links a span:nth-child(2) {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.5)); /* Reduced blur radius from 2px to 1px */
}

.nav-links a:hover span {
    transform: translateY(-100%);
}

.nav-links a:hover span:nth-child(2) {
    transform: translateY(-100%);
}

.become-client-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../images/main-site-images/hero-3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
}

.hero .section-content {
    position: relative;
    z-index: 1;
    padding: 0 5%;
}

.hero-text {
    max-width: 800px;
}

.hero h1 {
    font-size: 7rem;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--text-on-dark);
}

.hero p {
    font-size: 2.2rem;
    color: var(--text-on-dark);
    opacity: 0.8;
    line-height: 1.1;
}

/* Hero Reviews Badge */
.reviews-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    color: var(--color-rating);
}

.review-text {
    color: var(--text-on-light);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Hero Prompt */
.hero-prompt {
    position: relative;
    margin-top: 4rem;
    padding: 1.5rem 2rem;
    background: #252525;
    border-radius: 0.3rem;
    width: fit-content;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.hero-prompt::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--color-primary);
    border-radius: 0.3rem;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
    pointer-events: none;
    z-index: 6;
}

.hero-prompt p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-on-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 7;
    text-shadow: none;
}

.hero-prompt .highlight-text {
    color: var(--color-primary);
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: none;
}

.hero-prompt:hover {
    transform: scale(1.1);
    background: var(--gradient-primary);
}

.hero-prompt:hover::before {
    transform: scale(1.2);
    opacity: 0.8;
}

.hero-prompt:hover .highlight-text {
    color: var(--text-on-light);
}

/* Hero Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem;     /* Set to 2.4rem as requested */
        line-height: 0.85;     /* Keeping tight line height */
        margin-bottom: 0.75rem; 
    }
    
    .hero p {
        font-size: 1.4rem;     /* Let me know if you want to adjust this */
        line-height: 0.9;      
    }

    /* Keeping existing hero-prompt styles */
    .hero-prompt {
        margin-top: 20px;
        padding: 1.2rem 1.8rem;
    }

    .hero-prompt p {
        font-size: 1rem;
    }
}

/* Services Section - ALL styles consolidated */
.services {
    padding: 4rem 2.5%;
    background: var(--bg-dark);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

/* Services Grid */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 3rem;
    width: 100%;
    box-sizing: border-box;
}

/* Individual Service Cards */
.service-card {
    background: #252525;  /* Slightly lighter than --bg-dark (#191919) */
    padding: 1.2rem;
    border-radius: 0.3rem;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-card h4 {
    color: var(--text-on-dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.2;
}

.service-card p {
    color: var(--text-on-dark);
    opacity: 0.7;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-size: 1rem;
}

/* Services Mobile Responsiveness */
@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .service-card:last-child {
        border-bottom: none;
    }

    .service-card h4 {
        font-size: 1.6rem;
        line-height: 0.9;
    }

    .service-card h3 {
        margin-bottom: 0.25rem;
        line-height: 0.9;
    }
}

/* Innovation Section */
.innovation {
    padding: 5rem 5%;
    background: var(--background-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Smart Development Section */
.smart-dev {
    padding: 5rem 5%;
    background: #000;
    color: white;
    text-align: center;
}

.smart-dev h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 4.2rem; /* Reduced from 7rem to ~60% */
        line-height: 1;  /* Tighter line height for mobile */
    }
    
    .hero p {
        font-size: 1.8rem; /* Reduced from 2.5rem to ~60% */
        line-height: 1.2; /* Tighter line height for subheader */
    }
    
    .nav-links {
        display: none;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .service-card:last-child {
        border-bottom: none;
    }
} 

.keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 1.2rem;
}

.keywords span {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-on-dark);
    padding: 0.2rem 0.6rem;
    border-radius: 0.3rem;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Logo Hover Effect */
.logo a:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Nav Links Hover Effect */
.nav-links a:hover {
    color: var(--color-primary);
    transition: color 0.3s ease;
}

/* Become a Client Button Hover Effect */
.become-client-btn:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.highlight {
    color: var(--color-primary); /* Use primary color */
}

/* About Section - ALL styles consolidated */
.about {
    padding: 4rem 2.5%;
    background: var(--bg-dark);
}

/* About Typography */
.about .section-subtitle,
.about h2,
.about-content {
    position: relative;
}

.about h2 {
    color: var(--text-on-dark);
    opacity: 0.6;
    font-size: 2rem;
    line-height: 1;
    font-weight: 300;
    max-width: 90%;
    margin-bottom: 3rem;
}

/* About Content Grid */
.about-content {
    padding: 2rem;
    border-radius: 0.3rem;
    color: var(--text-on-dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 100%;
    box-sizing: border-box;
}

/* About Text Content */
.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    color: var(--text-on-dark);
}

/* About Highlights */
.about-highlights ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1.5rem;
}

.about-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    padding: 1rem;
    border-radius: 0.3rem;
    transition: all 0.3s ease;
    background: #252525;
}

/* Ring effect */
.about-highlights li::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--color-primary);
    border-radius: 0.3rem;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
    pointer-events: none;
}

/* Hover effects */
.about-highlights li:hover {
    transform: scale(1.05);
    background: var(--gradient-primary);
}

.about-highlights li:hover::before {
    transform: scale(1.1);
    opacity: 0.8;
}

/* About Icons */
.about .highlight-icon {
    background: transparent;
    transition: all 0.3s ease;
}

.about .highlight-icon i {
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.about-highlights li:hover .highlight-icon i {
    color: rgba(25, 25, 25, 0.8);
}

/* About Content Typography */
.about .highlight-content h4 {
    color: var(--text-on-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.about .highlight-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
    color: var(--text-on-dark);
    transition: color 0.3s ease;
}

/* Hover Text Effects */
.about-highlights li:hover .highlight-content h4,
.about-highlights li:hover .highlight-content p {
    color: var(--text-on-light);
}

/* About Mobile Responsiveness */
@media (max-width: 768px) {
    .about h2 {
        font-size: 2rem;
    }
    
    .about h2 br {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100% !important;
       
    }
    
    .about-text p {
        width: 100% !important;
        
    }
    
    .about-highlights ul {
        gap: 1rem;
    }
}

.mobile-showcase {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding: 1rem 0;
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.mobile-showcase .section-subtitle {
    color: var(--text-on-dark);
    opacity: 0.6;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    padding-left: 5%;
}

.mobile-showcase .section-description {
    color: var(--text-on-dark);
    opacity: 0.6;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 300;
    max-width: 90%;
    margin-bottom: 3rem;
    padding-left: 5%;
}

.mobile-showcase h3,
.mobile-showcase h4,
.mobile-showcase p,
.mobile-showcase .feature-text,
.mobile-showcase .feature-item p {
    color: var(--text-on-dark);
}

.mobile-showcase .feature-item {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-showcase .feature-item i {
    color: var(--color-primary);
}

.showcase-content {
    width: 100%;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 0;
    padding: 0;
    align-items: start;
}

.content-left {
    padding-left: 5%;
    padding-right: 0;
    margin-top: -14rem;
    margin-right: -5%;
}

.content-left h3 {
    font-size: 1.75rem;
    margin-bottom: 0.1rem;
    color: var(--text-on-dark);
    line-height: 1.1;
}

.content-left .feature-text {
    margin-top: 0.5rem;
}

.feature-text {
    font-size: 1.2rem;
    color: var(--text-on-dark);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    transition: transform 0.3s ease;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--color-primary);
    min-width: 2rem;
    margin-top: 0.2rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-on-dark);
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-on-dark);
    opacity: 0.8;
    line-height: 1.4;
}

.feature-item:hover {
    transform: none;
}

.content-right {
    width: 100%;
    box-sizing: border-box;
    padding: 0 3%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.phone-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.phone-frame {
    width: 100%;
    position: relative;
}

.frame-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 3;
}

.phone-screen {
    position: absolute;
    top: 4%;
    left: 4%;
    right: 4%;
    bottom: 4%;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
}

.website-content {
    width: 102%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 2;
    margin-left: -1%;
}

.site-image {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-content {
    min-height: 100vh;
    position: relative;
    padding: 10vh 0;
}

/* Custom scrollbar styling */
.website-content::-webkit-scrollbar {
    width: 3px;
}

.website-content::-webkit-scrollbar-track {
    background: transparent;
}

.website-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* Mobile responsiveness */
@media (max-width: 992px) {
    .phone-container {
        width: 80%;
    }
}

@media (max-width: 576px) {
    .phone-container {
        width: 90%;
    }
}

/* Global constraints */
body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Section constraints */
section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Container constraints */
.showcase-content,
.service-cards,
.hero,
.data-content,
nav {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Mobile showcase specific adjustments */
.mobile-showcase {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding: 4rem 0;
    background: var(--bg-dark);
}

.showcase-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    padding: 0;
    align-items: center;
}

.content-left {
    padding-left: 5%;
    padding-right: 0;
    width: 100%;
    box-sizing: border-box;
}

.content-right {
    width: 100%;
    box-sizing: border-box;
    padding: 0 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

/* Ensure all images don't cause overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Media queries */
@media (max-width: 992px) {
    .showcase-content {
        grid-template-columns: 1fr;
    }
    
    .content-left,
    .content-right {
        padding: 2rem 5%;
    }
}

.demo-prompt {
    position: relative;
    margin-top: 4rem;
    padding: 1.5rem;
    background: #252525;
    border-radius: 0.3rem;
    width: fit-content;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}

/* Ring effect on hover */
.demo-prompt::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--color-primary);
    border-radius: 0.3rem;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
    pointer-events: none;
}

.demo-prompt p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-on-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.demo-prompt .highlight-text {
    color: var(--color-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Hover effects */
.demo-prompt:hover {
    transform: scale(1.1);
    background: var(--gradient-primary);
}

.demo-prompt:hover::before {
    transform: scale(1.2);
    opacity: 0.8;
}

.demo-prompt:hover .highlight-text {
    color: var(--text-on-light);
}

/* Mobile responsiveness */
@media (max-width: 992px) {
    .demo-prompt {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .demo-prompt {
        margin-top: 2rem;
    }
}

.scroll-activate-btn {
    position: absolute;
    top: 2rem;
    left: -2rem;
    background:var(--gradient-primary);
    border: none;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    color: var(--text-on-light);
    font-weight: 500;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ring effect */
.scroll-activate-btn::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
    pointer-events: none;
}

/* Hover effects */
.scroll-activate-btn:hover {
    transform: scale(1.1);
    background: var(--gradient-primary);
    color: var(--text-on-light);
}

.scroll-activate-btn:hover::before {
    transform: scale(1.2);
    opacity: 0.8;
}

/* Active state */
.scroll-activate-btn.active {
    background: var(--gradient-primary);
    color: var(--text-on-light);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .scroll-activate-btn {
        width: 5rem;
        height: 5rem;
        font-size: 0.9rem;
        left: 1rem;
        top: 1.5rem;
    }
}

/* Scroll behavior */
.website-content {
    scroll-behavior: smooth;
    pointer-events: none; /* Disable scrolling by default */
}

.website-content.scroll-enabled {
    pointer-events: auto; /* Enable scrolling when class is added */
}

/* Prevent scroll events from bubbling when disabled */
.phone-container {
    pointer-events: none;
}

.phone-container .scroll-activate-btn {
    pointer-events: auto; /* Always allow button clicks */
}

.website-content.scroll-enabled ~ .phone-container {
    pointer-events: auto;
}

/* Mobile Styles (for screens 768px and below) */
@media screen and (max-width: 768px) {
    /* Header/Nav adjustments */
    #main-nav {
        padding: 10px 15px;
    }

    #main-nav .logo img {
        max-width: 120px;
    }

    .nav-center {
        display: none;
    }

    .nav-right .become-client-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    /* Hero Section adjustments */
    .hero h1 {
        font-size: 3.2rem;
        line-height: 0.85;
        margin-bottom: 0.75rem;
    }
    
    .hero p {
        font-size: 1.4rem;
        line-height: 1.1;
    }

    .hero-prompt {
        margin-top: 20px;
        padding: 1.2rem 1.8rem;
    }

    .hero-prompt p {
        font-size: 1rem;
    }
}

/* Standard section styling - identical for all sections */
.section-subtitle {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-on-dark);
}

.section-subtitle .section-number {
    color: var(--text-on-dark);
    opacity: 0.6;
    margin-right: 0.5rem;
}

.section-subtitle span:not(.section-number) {
    color: var(--color-primary);
}

.section-description {
    color: var(--text-on-dark);
    opacity: 0.6;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 300;
    max-width: 90%;
    margin-bottom: 3rem;
}

/* Remove ALL section-specific overrides */
.services .section-subtitle,
.about .section-subtitle,
.mobile-showcase .section-subtitle,
.contact .section-subtitle,
.services .section-description,
.about .section-description,
.mobile-showcase .section-description,
.contact .section-description {
    padding-left: 0;
    opacity: 0.6;
    margin-bottom: inherit;
    color: var(--text-on-dark);
}

/* Then add a more specific mobile media query */
@media screen and (max-width: 768px) {
    .section-content .section-description,
    .services .section-description,
    .about .section-description,
    .mobile-showcase .section-description,
    .contact .section-description {
        font-size: 1.6rem !important;
        line-height: 1.2;
        margin-bottom: 2rem;
    }

    /* Add service card h4 styles */
    .service-card h4 {
        font-size: 1.6rem !important;
        line-height: 0.9;
    }

    /* Adjust spacing between h3 and h4 */
    .service-card h3 {
        margin-bottom: 0.25rem;
        line-height: 0.9;
    }
}

@media (max-width: 768px) {
    /* Main section container */
    .about.section-full-width {
        width: 100% !important;
        padding: 4rem 0 !important;
    }

    /* Match the width to services section */
    .about .section-content {
        width: 90% !important;  /* Changed back to 95% to match services */
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 2.5% !important;  /* Add padding to match service cards */
    }

    /* Second container */
    .about .about-content {
        width: 100% !important;
        padding: 0 !important;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-text {
        width: 100% !important;
    }

    .about-text p {
        width: 100% !important;
    }
}

/* Mobile Design Section */
@media (max-width: 768px) {
    .mobile-showcase {
        width: 100% !important;
        padding: 4rem 0 !important;
        min-height: auto !important;  /* Remove fixed height */
    }

    .mobile-showcase .section-content {
        width: 90% !important;  /* Match services width */
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 2.5% !important;
    }

    .showcase-content {
        width: 100% !important;
        min-height: auto !important;  /* Remove fixed height */
        padding: 0 !important;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-left {
        margin-top: 0 !important;  /* Remove negative margin */
        padding: 0 !important;
    }

    .feature-item {
        padding: 1rem;
        margin-bottom: 1rem;
        background: #252525;
        border-radius: 0.3rem;
    }

    .content-right {
        padding: 2rem 0 !important;
    }
}

@media (max-width: 768px) {
    .mobile-showcase {
        width: 100% !important;
        padding: 4rem 0 !important;
    }

    .showcase-content {
        width: 100% !important;
        gap: 1rem !important;  /* Reduced from 2rem */
    }

    .feature-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem !important;  /* Reduced gap between feature items */
    }

    .feature-item {
        padding: 0.75rem;  /* Slightly reduced padding */
        margin-bottom: 0.5rem !important;  /* Reduced margin between items */
        background: #252525;
        border-radius: 0.3rem;
    }

    /* Adjust text spacing if needed */
    .feature-item h4 {
        margin-bottom: 0.25rem !important;  /* Tighter spacing between heading and paragraph */
    }
}

/* Hide demo prompt on mobile */
@media (max-width: 768px) {
    .demo-prompt {
        display: none;  /* Hide completely on mobile */
    }
}

/* Add this to your existing CSS */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Adjust this value based on your navbar height */
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 60px 2rem 1rem;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
}

.mobile-nav-links li {
    margin: 0.75rem 0;
}

.mobile-nav-links a {
    color: var(--text-on-dark);
    text-decoration: none;
    font-size: 1.3rem;
    display: block;
    padding: 0.3rem 0;
}

/* Hide mobile menu elements on desktop */
@media (min-width: 769px) {
    .menu-toggle,
    .mobile-menu {
        display: none;
    }
}

/* Contact Section Background */
.contact {
    background: var(--bg-dark);
}

/* Contact Form Container */
.contact-form-container {
    background: rgba(37, 37, 37, 0.5);
    border-radius: 10px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

/* Form Grid Layout */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 2rem;
}

.form-group.full-width {
    grid-column: span 2;
}

/* Form Fields */
.contact-form input,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-light); /* Light background */
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    color: var(--text-on-light); /* Dark text */
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23191919' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Labels */
.contact-form label {
    color: var(--text-on-dark);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

/* Focus States */
.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
}

/* Placeholder Styling */
.contact-form input::placeholder {
    color: rgba(198, 198, 198, 0.5);
}

/* Submit Button Styling */
.submit-btn {
    background: var(--color-primary);
    color: var(--bg-dark);
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateX(5px);
    background: #00cc00;
}

/* Required Field Indicator */
.contact-form label {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* What is Dealer Fusion - Updated Design */
#what-is {
    padding: 4rem 2.5%;
    background: var(--bg-dark);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.key-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
    width: 100%;
    box-sizing: border-box;
}

.benefit-highlight {
    background: #252525;
    padding: 1.2rem;
    border-radius: 0.3rem;
    transition: all 0.3s ease;
    position: relative;
}

/* Add ring effect */
.benefit-highlight::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--color-primary);
    border-radius: 0.3rem;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
    pointer-events: none;
}

/* Hover effects */
.benefit-highlight:hover {
    transform: scale(1.05);
    background: var(--gradient-primary);
}

.benefit-highlight:hover::before {
    transform: scale(1.1);
    opacity: 0.8;
}

.benefit-highlight p {
    color: var(--text-on-dark);
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
}

.benefit-highlight i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Keep the hover effect for the whole card */
.benefit-highlight:hover {
    transform: translateY(-10px);
    background: var(--gradient-primary);
}

/* Make text white on hover */
.benefit-highlight:hover p,
.benefit-highlight:hover i {
    color: var(--text-on-light);
    -webkit-text-fill-color: var(--text-on-light);
}

#what-is h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #what-is h2 {
        font-size: 2rem;
    }
}

.accent-text strong {
    font-weight: 700;  /* Extra bold weight */
}

/* Desktop Form Grid Layout (default) */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 2rem;
}

.form-group.full-width {
    grid-column: span 2;
}

/* Mobile Form Grid Layout */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;  /* Single column on mobile */
        gap: 16px;  /* Slightly reduced gap for mobile */
    }

    .form-group.full-width {
        grid-column: span 1;  /* Single column span on mobile */
    }
    
    /* Adjust padding for mobile */
    .contact-form-container {
        padding: 1.5rem;
    }
}

.detailed-description {
    color: var(--text-on-dark);
}

.feature-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.feature-block {
    color: var(--text-on-dark);
}

.feature-block h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.closing-statement {
    color: var(--text-on-dark);
    margin-top: 2rem;
}

/* For better readability on light text */
.detailed-description p {
    line-height: 1.6;
    font-weight: 300;
    color: var(--text-on-dark);
}

.answer-type {
    color: var(--color-primary);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Adjust spacing for the first "Short Answer" title */
.key-benefits {
    margin-top: 1rem;
}

/* Add more space before the "Long Answer" section */
.answer-type + .detailed-description {
    margin-top: 1rem;
}

/* For text elements that were using primary color */
.highlight,
.section-subtitle span:not(.section-number),
.about .highlight-icon i,
.feature-block h3,
.answer-type {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* For background elements that were using primary color */
.scroll-activate-btn,
.submit-btn,
.about-highlights li:hover,
.demo-prompt:hover,
.benefit-highlight:hover {
    background: var(--gradient-primary);
}

/* For border colors that were using primary color */
.scroll-activate-btn::before,
.demo-prompt::before,
.about-highlights li::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: var(--gradient-primary);
    border-radius: inherit;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
    pointer-events: none;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 0.5px; /* Reduced from 1px to 0.5px for an even thinner ring */
}

/* Ensure hover states maintain gradient */
.nav-links a:hover,
.mobile-nav-links a:hover {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Add gradient line break */
.answer-type.long-answer {
    position: relative;
    margin-top: 4rem; /* Space above the long answer section */
}

.answer-type.long-answer::before {
    content: '';
    position: absolute;
    top: -2rem; /* Position above the "Long Answer" title */
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.5; /* Makes it a bit subtle */
}

@media (max-width: 768px) {
    #what-is .detailed-description p,
    #what-is .feature-block p,
    #what-is .closing-statement,
    #what-is .benefit-highlight p {
        color: var(--text-on-dark);
    }
}

/* Mobile adjustments for key benefits */
@media (max-width: 768px) {
    .key-benefits {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .benefit-highlight {
        width: 100%;
    }
}

/* Demo Page Styles */
.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.demo-card {
    background: #252525;
    border-radius: 0.3rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-10px);
}

.demo-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.demo-image img {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 15px);
    object-fit: contain;
    transition: transform 0.3s ease;
}

.demo-card:hover .demo-image img {
    transform: scale(1.02); /* Reduced from 1.05 to 1.02 for subtler zoom */
}

.demo-content {
    padding: 1.5rem;
}

.demo-content h3 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.demo-content p {
    color: var(--text-on-dark);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--text-on-light);
    text-decoration: none;
    border-radius: 0.3rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.demo-btn:hover {
    transform: translateX(5px);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .demo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

#demo-header {
    padding-top: 120px; /* Adjust this value based on your navbar height */
    background: var(--bg-dark);
}

#demo-header p {
    color: var(--text-on-dark);
}

/* Hamburger Menu Styles */
.menu-toggle {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-on-dark);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;  /* Ensure alignment */
    width: 100%;
    height: 100%;
    background: var(--text-on-dark);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;  /* Changed from transform to top */
}

.hamburger::after {
    top: 8px;   /* Changed from transform to top */
}

/* Active state */
.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    top: 0;  /* Reset position before rotation */
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
    top: 0;  /* Reset position before rotation */
    transform: rotate(-45deg);
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    padding-top: 60px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 1rem;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
}

.mobile-nav-links li {
    margin: 0.75rem 0;
}

.mobile-nav-links a {
    color: var(--text-on-dark);
    text-decoration: none;
    font-size: 1.3rem;
    display: block;
    padding: 0.3rem 0;
}

/* Mobile Media Query */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show hamburger on mobile */
    }

    .nav-center {
        display: none; /* Hide desktop nav */
    }
}

.form-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    transform: translateX(150%);
    transition: transform 0.3s ease-in-out;
}

.form-notification.show {
    transform: translateX(0);
}

.notification-content {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
}

.notification-icon {
    font-size: 24px;
}

.notification-icon .success-icon {
    color: #4CAF50;
    display: none;
}

.notification-icon .error-icon {
    color: #f44336;
    display: none;
}

.form-notification.success .success-icon {
    display: block;
}

.form-notification.error .error-icon {
    display: block;
}

.notification-message {
    flex-grow: 1;
    margin: 0;
    font-size: 16px;
    color: #333;
}

.notification-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
    transition: color 0.2s;
}

.notification-close:hover {
    color: #333;
}

/* Pricing Section Styles */
#pricing {
    padding-top: 120px; /* Space for fixed header */
    background: var(--bg-dark);
}

/* Pricing Toggle Styles */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    color: var(--text-on-dark);
    font-size: 1rem;
}

/* Switch styling */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    transition: .3s;
    border-radius: 34px;
    border: 2px solid var(--text-on-dark);
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: var(--text-on-dark);
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

input:checked + .slider:before {
    transform: translateX(22px);
    background-color: #191919;
}

/* Toggle text styling */
.pricing-toggle span {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    color: var(--text-on-dark);
}

.pricing-toggle span.active {
    opacity: 1;
    color: var(--text-on-dark);
}

/* Save badge styling */
.pricing-toggle span.save-badge {
    background: var(--color-primary);
    color: #191919;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 8px;
    white-space: nowrap;
}

/* Pricing Section Header */
#pricing .section-subtitle {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-on-dark);
}

#pricing .section-subtitle .section-number {
    color: var(--text-on-dark);
    opacity: 0.6;
    margin-right: 0.5rem;
}

#pricing .section-subtitle span:not(.section-number) {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#pricing h2 {
    color: var(--text-on-dark);
    opacity: 0.6;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 300;
    max-width: 90%;
    margin-bottom: 3rem;
}

/* Single Package Pricing Grid */
.pricing-grid {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.pricing-card {
    background: #252525;
    border-radius: 10px;
    padding: 2.5rem;
    width: 100%;
    max-width: 800px; /* Increased from 500px for wider card */
    transition: transform 0.3s ease;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--text-on-dark);
    opacity: 0.8;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    color: var(--text-on-dark);
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 600;
}

.price .period {
    font-size: 1.1rem;
    opacity: 0.8;
}

.price.hidden {
    display: none;
}

.pricing-features {
    margin: 2rem 0;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: 8px;
}

.feature-content h4 {
    color: var(--text-on-dark);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-content h4 i {
    color: var(--color-primary);
    font-size: 1rem;
}

.feature-content p {
    color: var(--text-on-dark);
    opacity: 0.7;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feature-content p:last-child {
    margin-bottom: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .pricing-features ul {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 1rem;
    }
}

/* Get Started Button Styling */
.pricing-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #00ff00; /* Bright green */
    color: var(--text-on-light);
    text-align: center;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.pricing-cta:hover {
    transform: translateY(-3px);
    background: var(--gradient-primary);
}

/* Promo Banner Styles */
.promo-banner {
    background: var(--gradient-primary);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.promo-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.promo-label {
    color: var(--text-on-light);
    font-weight: 700;
    font-size: 1.1rem;
}

.promo-details {
    color: var(--text-on-light);
    font-weight: 500;
}

.promo-expires {
    color: var(--text-on-light);
    font-size: 0.9rem;
    opacity: 0.8;
}

.promo-price {
    text-align: right;
}

.promo-price .price {
    color: var(--text-on-light);
    font-weight: 700;
    font-size: 1.2rem;
}

.promo-price .price.hidden {
    display: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .promo-content {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-price {
        text-align: center;
    }
}

/* Add to existing JavaScript */
document.getElementById('billing-toggle').addEventListener('change', function() {
    const monthlyPrices = document.querySelectorAll('.price.monthly');
    const annualPrices = document.querySelectorAll('.price.annual');
    
    monthlyPrices.forEach(price => price.classList.toggle('hidden'));
    annualPrices.forEach(price => price.classList.toggle('hidden'));
});
