:root {
    --primary: #eac841;
    --primary-light: #faf5d1;
    --secondary: #000000;
    --accent: #f5d76e;
    --light: #ffffff;
    --dark: #333333;
    --text: #444444;
    --light-gray: #f5f7fa;
    --medium-gray: #e0e6ed;
    --border: #d1d9e6;
    --success: #4caf50;
    --warning: #ff9800;
    --danger: #f44336;
    --info: #00bcd4;
    --card-bg: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

/* Add font variables to :root */
:root {
    --primary: #eac841;
    --primary-light: #faf5d1;
    --secondary: #000000;
    --accent: #f5d76e;
    --light: #ffffff;
    --dark: #333333;
    --text: #444444;
    --light-gray: #f5f7fa;
    --medium-gray: #e0e6ed;
    --border: #d1d9e6;
    --success: #4caf50;
    --warning: #ff9800;
    --danger: #f44336;
    --info: #00bcd4;
    --card-bg: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    
    /* Font family variables */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-regular: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

/* Global overflow and scrollbar fixes */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    max-width: 100vw;
    width: 100%;
    font-family: var(--font-family);
}

body {
    background-color: var(--light-gray);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
    max-width: 100vw;
    width: 100%;
    font-family: var(--font-family);
    font-weight: var(--font-weight-regular);
}

/* Logo font weight update */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold); /* Changed from 700 */
    color: var(--secondary);
    text-decoration: none;
    height: 80px;
    min-height: 60px;
    margin-right: 120px;
}

/* Navigation font weight */
.desktop-nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: var(--font-weight-regular); /* Changed from 500 to 400 or use 600 for semibold */
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
    white-space: nowrap;
}

/* Button font weight */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: var(--font-weight-semibold); /* Changed from 600 */
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
}

/* Hero content font weights */
.hero-content h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: var(--font-weight-regular); /* Changed from 500 to 400 */
    color: var(--secondary);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.static-text {
    color: var(--primary) !important;
    font-weight: var(--font-weight-semibold); /* Changed from 600 */
}

.typing-text {
    color: #000000 !important;
    font-size: 0.65em;
    min-height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 15px;
    font-weight: var(--font-weight-regular); /* Changed from 400 */
}

.hero-content p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: var(--font-weight-regular); /* Changed from 400 */
}

.hero-btns .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold); /* Changed from 600 */
}

/* Prevent any element from causing horizontal scroll */
*, *::before, *::after {
    box-sizing: border-box;
    max-width: 100%;
    font-family: inherit;
}

/* Universal container constraints */
.container, .hero-container, .section, .pricing-section,
.showcase-section, .main-content, .page-wrapper {
    max-width: 100%;
    overflow-x: hidden;
}

/* Specific elements that might cause overflow */
.pricing-cards, .features, .testimonials {
    max-width: 100%;
    overflow: visible;
}

.pricing-card.popular {
    overflow: visible;
}

.pricing-card.popular::before {
    white-space: nowrap;
}

/* Page wrapper for proper layout */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    padding-top: 40px;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Override container for hero section */
.hero .container,
.hero-container {
    max-width: 100%;
    width: 100%;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--light);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem 5%;
    min-height: 90px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    height: 80px;
    min-height: 60px;
    z-index: 2;
}

/* Desktop Navigation */
.desktop-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.desktop-nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
    white-space: nowrap;
}

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

.desktop-nav a:hover::after {
    width: 100%;
}

.logo:hover {
    text-decoration: none;
    color: var(--primary);
}

.logo:visited {
    color: inherit;
}

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

.logo img {
    max-height: 32px;
    width: auto;
}

/* Logo image specific styling */
.logo-image {
    height: 70px !important;
    width: auto !important;
    max-width: 400px;
    min-width: 120px;
    min-height: 50px;
    object-fit: contain;
    display: block;
}

/* When logo image is present, ensure proper spacing */
.logo:has(.logo-image) {
    gap: 0;
    justify-content: center;
    height: 80px;
}

/* For older browsers that don't support :has() */
.logo .logo-image {
    margin: 0;
}

/* Mobile Toggle Button Styles */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 1003;
    position: relative;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1001;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

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

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

.mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav.active .mobile-nav-overlay {
    opacity: 1;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--light);
    padding: 70px 20px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active .mobile-nav-content {
    transform: translateX(0);
}

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

.mobile-nav-list li {
    border-bottom: 1px solid var(--border);
}

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-list a {
    display: block;
    padding: 15px 0;
    color: var(--dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-list a:hover {
    color: var(--primary);
    padding-left: 15px;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
    width: 100%;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 200, 65, 0.3);
}

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

.btn-outline:hover {
    background: var(--primary-light);
}

/* HERO SECTION - FULL WIDTH */
.hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, #f8fafd 100%);
    padding: 90px 0 100px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Background video for desktop only */
@media (min-width: 769px) {
    .hero-background-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        opacity: 0.6;
    }
    
    .hero {
        background: linear-gradient(135deg, rgba(250, 245, 209, 0.8) 0%, rgba(248, 250, 253, 0.8) 100%);
    }
}

/* Ensure video is hidden on mobile */
@media (max-width: 768px) {
    .hero-background-video {
        display: none;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 500;
    color: var(--secondary);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    color: var(--primary);
}

/* Typing Animation Styles */
.typing-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.typing-text {
    color: #000000 !important;
    font-size: 0.65em;
    min-height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 15px;
    font-weight: 400;
}

.typing-text::after {
    content: '|';
    color: #000000;
    animation: blink 1s infinite;
    margin-left: 5px;
}

.static-text {
    color: var(--primary) !important;
    font-weight: 600;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.typing-text.typing {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 2s ease-in-out;
}

.hero-content p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 30px;
}

.hero-btns .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* SHOWCASE SLIDER SECTION */
.showcase-section {
    padding: 80px 0 100px 0;
    background: linear-gradient(135deg, #f8fafd 0%, #ffffff 100%);
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.showcase-slider {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
    padding: 0 80px;
}

.showcase-slides {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    min-height: 400px;
    perspective: 1200px;
}

.showcase-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.8s ease;
    z-index: 1;
    min-height: 400px;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

.showcase-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.showcase-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.showcase-slide.next {
    transform: translateX(100%);
    opacity: 0;
}

.showcase-slide.slide-in-right {
    transform: translateX(0);
    opacity: 1;
}

.showcase-slide.slide-in-left {
    transform: translateX(0);
    opacity: 1;
}

.showcase-slide.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
}

.showcase-slide.slide-out-right {
    transform: translateX(100%);
    opacity: 0;
}

.showcase-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.showcase-description {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.5;
}

.showcase-text {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
}

.showcase-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.showcase-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.showcase-image:hover {
    transform: scale(1.02);
}

.showcase-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.placeholder-image {
    background: var(--light-gray);
    border: 2px dashed var(--border);
    border-radius: 15px;
    padding: 60px 30px;
    text-align: center;
    color: var(--text);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.placeholder-image i {
    font-size: 4rem;
    color: var(--border);
    margin-bottom: 20px;
}

/* Slider Controls - ARROWS HIDDEN */
.showcase-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    right: 0;
    display: none !important;
    justify-content: space-between;
    pointer-events: none;
    z-index: 50;
    padding: 0 -20px; /* Adjusted padding */
}

.showcase-prev,
.showcase-next {
    background: rgba(255, 255, 255, 0.98);
    border: 3px solid var(--primary);
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: none !important;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    position: absolute;
    animation: arrowPulse 3s ease-in-out infinite;
    z-index: 100;
    font-weight: 900;
}

.showcase-prev {
    left: -32px; /* Adjusted to ensure visibility */
    transform: translateY(-50%);
}

.showcase-next {
    right: -32px; /* Adjusted to ensure visibility */
    transform: translateY(-50%);
}

.showcase-next {
    right: -32px; /* Adjusted to ensure visibility */
    transform: translateY(-50%);
}

.showcase-prev:hover,
.showcase-next:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(234, 200, 65, 0.6);
    animation: none;
    opacity: 1;
}

.showcase-prev:active,
.showcase-next:active {
    transform: translateY(-50%) scale(1.05);
}

/* Enhanced arrow visibility */
.showcase-prev i,
.showcase-next i {
    position: relative;
    z-index: 20;
    font-weight: 900;
}

.showcase-prev:hover i,
.showcase-next:hover i {
    transform: scale(1.1);
}

/* Ensure arrows are always visible on larger screens */
@media (min-width: 1200px) {
    .showcase-slider {
        padding: 0 80px;
    }
    
    .showcase-controls {
        padding: 0 -60px;
    }
    
    .showcase-prev {
        left: -60px;
    }
    
    .showcase-next {
        right: -60px;
    }
    
    .showcase-prev,
    .showcase-next {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }
}

/* Medium screens adjustment */
@media (min-width: 992px) and (max-width: 1199px) {
    .showcase-slider {
        padding: 0 60px;
    }
    
    .showcase-prev {
        left: -40px;
    }
    
    .showcase-next {
        right: -40px;
    }
}

/* Tablet screens */
@media (min-width: 769px) and (max-width: 991px) {
    .showcase-slider {
        padding: 0 50px;
    }
    
    .showcase-prev {
        left: -27px;
    }
    
    .showcase-next {
        right: -27px;
    }
    
    .showcase-prev,
    .showcase-next {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

/* Mobile screens - Hide controls */
@media (max-width: 768px) {
    .showcase-controls {
        display: none !important;
        padding: 0 10px;
    }
    
    .showcase-prev {
        left: 10px;
    }
    
    .showcase-next {
        right: 10px;
    }
    
    .showcase-prev,
    .showcase-next {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        border-width: 2px;
    }
}

.showcase-prev:hover,
.showcase-next:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(234, 200, 65, 0.6);
    animation: none;
    opacity: 1;
}

.showcase-prev:active,
.showcase-next:active {
    transform: translateY(-50%) scale(1.05);
}

/* Enhanced arrow visibility */
.showcase-prev i,
.showcase-next i {
    position: relative;
    z-index: 20;
    font-weight: 900;
}

.showcase-prev:hover i,
.showcase-next:hover i {
    transform: scale(1.1);
}

/* Ensure arrows are always visible on larger screens */
@media (min-width: 1200px) {
    .showcase-slider {
        padding: 0 80px;
    }
    
    .showcase-controls {
        width: calc(100% + 200px);
        left: -100px;
    }
    
    .showcase-prev,
    .showcase-next {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }
}

/* Medium screens adjustment */
@media (min-width: 992px) and (max-width: 1199px) {
    .showcase-slider {
        padding: 0 60px;
    }
    
    .showcase-controls {
        width: calc(100% + 160px);
        left: -80px;
    }
}

/* Tablet screens */
@media (min-width: 769px) and (max-width: 991px) {
    .showcase-slider {
        padding: 0 50px;
    }
    
    .showcase-controls {
        width: calc(100% + 120px);
        left: -60px;
    }
    
    .showcase-prev,
    .showcase-next {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

/* Slider Dots */
.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
    padding: 10px 0;
}

.showcase-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.showcase-dot.active {
    background: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 0 2px rgba(234, 200, 65, 0.3);
}

.showcase-dot:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* Smooth Slide Animations */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutToLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

@keyframes slideOutToRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

/* Sections */
.section {
    padding: 100px 5%;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.3rem);
    margin-bottom: 1rem;
    color: var(--secondary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text);
}

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

.feature-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.feature-card i {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    background: var(--primary-light);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.feature-card p {
    color: var(--text);
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(to bottom, #f8fafd, #ffffff);
    padding: 100px 5%;
    overflow: hidden !important;
    position: relative;
    width: 100% !important;
    max-width: 100vw !important;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.toggle-container {
    background: var(--light);
    border-radius: 50px;
    padding: 5px;
    display: inline-flex;
    border: 1px solid var(--border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.toggle-btn {
    padding: 10px 30px;
    border-radius: 50px;
    background: transparent;
    border: none;
    color: var(--dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-btn.active {
    background: var(--primary);
    color: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    max-width: 1150px !important;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden !important;
    position: relative;
    padding: 20px 10px;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: visible;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: none;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(234, 200, 65, 0.3);
    margin: -2px;
}

.pricing-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 15px;
    right: -20px;
    background: var(--primary);
    color: white;
    padding: 4px 20px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 3;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--secondary);
    margin-top: 0;
}

.price {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
    line-height: 1;
}

.price span {
    font-size: 1rem;
    color: var(--text);
    font-weight: normal;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    padding: 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--success);
    min-width: 20px;
    font-size: 0.9rem;
}

/* Ensure pricing section container is contained */
.pricing-section .container {
    max-width: 100% !important;
    overflow: hidden !important;
    padding: 0 !important;
}

/* Responsive adjustments */
@media (min-width: 1200px) {
    .pricing-cards {
        max-width: 1200px !important;
        gap: 22px;
        padding: 20px 5px;
    }
    
    .pricing-card {
        padding: 35px 22px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pricing-cards {
        gap: 18px;
        max-width: 100%;
    }
    
    .pricing-card {
        padding: 30px 20px;
        font-size: 0.95rem;
        min-height: 520px;
    }
    
    .pricing-card h3 {
        font-size: 1.4rem;
    }
    
    .price {
        font-size: 2.4rem;
    }
    
    .pricing-card.popular::before {
        right: -25px;
        padding: 4px 25px;
        font-size: 0.7rem;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 100%;
    }
    
    .pricing-card.popular::before {
        right: -28px;
        padding: 5px 28px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 40px 5%;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .pricing-card {
        margin: 0 auto;
        max-width: 350px;
        min-height: auto;
        padding: 35px 25px;
    }
    
    .pricing-card.popular {
        transform: none;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .pricing-card.popular::before {
        right: -20px;
        padding: 4px 20px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 30px 3%;
    }
    
    .pricing-cards {
        gap: 20px;
    }
    
    .pricing-card {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .pricing-card h3 {
        font-size: 1.4rem;
    }
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--border);
   box-shadow: var(--shadow);
}

.testimonial-header {
   display: flex;
   align-items: center;
   gap: 15px;
   margin-bottom: 20px;
}

.testimonial-avatar {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   overflow: hidden;
   background: var(--primary);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   font-weight: bold;
   color: white;
}

.testimonial-rating {
   color: var(--warning);
   margin: 10px 0;
}

.testimonial-card p {
   color: var(--text);
   font-style: italic;
   border-left: 3px solid var(--primary);
   padding-left: 15px;
}

/* FAQ Section */
.faq-section {
   background: #f8fafd;
   padding: 80px 0;
}

.faq-container {
   max-width: 900px;
   margin: 0 auto;
}

.faq-item {
   background: white;
   margin-bottom: 15px;
   border-radius: 12px;
   box-shadow: 0 2px 10px rgba(0,0,0,0.08);
   border: 1px solid #e0e6ed;
   overflow: hidden;
   transition: all 0.3s ease;
}

.faq-item:hover {
   box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.faq-item[open] {
   box-shadow: 0 4px 20px rgba(30, 136, 229, 0.15);
   border-color: #1e88e5;
}

.faq-question {
   padding: 25px 30px;
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: white;
   font-size: 1.1rem;
   font-weight: 600;
   color: #333;
   transition: all 0.3s ease;
   list-style: none;
   outline: none;
   position: relative;
}

.faq-question::-webkit-details-marker {
   display: none;
}

.faq-question:hover {
   background: #f8fafd;
   color: #1e88e5;
}

.faq-icon {
   color: #1e88e5;
   font-size: 1rem;
   transition: transform 0.3s ease;
   margin-left: 20px;
}

.faq-item[open] .faq-question {
   background: #f8fafd;
   color: #1e88e5;
   border-bottom: 1px solid #e0e6ed;
}

.faq-item[open] .faq-icon {
   transform: rotate(180deg);
}

.faq-answer {
   background: #f8fafd;
   animation: slideDown 0.3s ease-out;
   max-height: 400px;
   overflow-y: auto;
}

.faq-answer p {
   padding: 25px 30px;
   margin: 0;
   color: #666;
   line-height: 1.6;
   font-size: 1rem;
}

.faq-answer::-webkit-scrollbar {
   width: 4px;
}

.faq-answer::-webkit-scrollbar-track {
   background: #f1f1f1;
}

.faq-answer::-webkit-scrollbar-thumb {
   background: #1e88e5;
   border-radius: 2px;
}

.faq-answer::-webkit-scrollbar-thumb:hover {
   background: #1565c0;
}

@keyframes slideDown {
   from {
       opacity: 0;
       transform: translateY(-10px);
   }
   to {
       opacity: 1;
       transform: translateY(0);
   }
}

/* Contact */
.contact-container {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 50px;
}

.contact-info {
   display: flex;
   flex-direction: column;
   gap: 30px;
}

.contact-method {
   display: flex;
   gap: 15px;
   align-items: flex-start;
}

.contact-method i {
   font-size: 1.5rem;
   color: var(--primary);
   margin-top: 5px;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
   width: 100%;
   padding: 15px;
   border-radius: 8px;
   background: var(--light);
   border: 1px solid var(--border);
   color: var(--text);
   font-size: 1rem;
   transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
   border-color: var(--primary);
   outline: none;
   box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2);
}

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

.whatsapp-btn {
   background: #25D366;
   color: white;
   display: flex;
   align-items: center;
   gap: 10px;
   justify-content: center;
   width: 100%;
   margin-top: 15px;
}

.whatsapp-btn:hover {
   background: #128C7E;
}

/* Mobile Input Styling */
.mobile-input-group {
   display: flex;
   align-items: center;
   border: 1px solid var(--border);
   border-radius: 8px;
   overflow: hidden;
   background: var(--light);
   transition: var(--transition);
}

.mobile-input-group:focus-within {
   border-color: var(--primary);
   box-shadow: 0 0 0 3px rgba(234, 200, 65, 0.2);
}

.country-code {
   background: var(--primary-light);
   color: var(--secondary);
   padding: 15px 12px;
   font-weight: 600;
   border-right: 1px solid var(--border);
   font-size: 1rem;
}

.mobile-input-group input {
   border: none;
   outline: none;
   flex: 1;
   padding: 15px;
   font-size: 1rem;
   background: transparent;
   box-shadow: none;
}

.mobile-input-group input:focus {
   border: none;
   box-shadow: none;
}

.form-help {
   display: block;
   color: #666;
   font-size: 0.85rem;
   margin-top: 5px;
   font-style: italic;
}

/* Captcha Styling */
.captcha-container {
   display: flex;
   align-items: center;
   gap: 10px;
   flex-wrap: wrap;
}

.captcha-question {
   background: var(--primary-light);
   border: 2px solid var(--primary);
   border-radius: 8px;
   padding: 15px 20px;
   font-weight: 600;
   font-size: 1.1rem;
   color: var(--secondary);
   min-width: 120px;
   text-align: center;
}

.captcha-container input {
   flex: 1;
   min-width: 100px;
   max-width: 150px;
}

.captcha-refresh {
   background: var(--primary);
   color: white;
   border: none;
   border-radius: 8px;
   padding: 15px;
   cursor: pointer;
   transition: var(--transition);
   display: flex;
   align-items: center;
   justify-content: center;
}

.captcha-refresh:hover {
   background: var(--secondary);
   transform: rotate(180deg);
}

/* Form Messages */
.form-messages {
   margin-bottom: 20px;
}

.alert {
   padding: 15px 20px;
   border-radius: 8px;
   margin-bottom: 15px;
   border: 1px solid;
   display: flex;
   align-items: center;
   gap: 10px;
   position: relative;
   animation: slideDown 0.3s ease-out;
}

.alert-success {
   background: rgba(76, 175, 80, 0.1);
   color: #2e7d32;
   border-color: rgba(76, 175, 80, 0.3);
}

.alert-error {
   background: rgba(244, 67, 54, 0.1);
   color: #c62828;
   border-color: rgba(244, 67, 54, 0.3);
}

.alert i {
   font-size: 1.2rem;
   flex-shrink: 0;
}

.alert-close {
   position: absolute;
   top: 10px;
   right: 15px;
   background: none;
   border: none;
   font-size: 1.5rem;
   cursor: pointer;
   color: inherit;
   opacity: 0.7;
   transition: opacity 0.3s ease;
}

.alert-close:hover {
   opacity: 1;
}

/* Loading button state */
.btn-loading {
   display: none;
}

.btn.loading .btn-text {
   display: none;
}

.btn.loading .btn-loading {
   display: inline-flex;
   align-items: center;
   gap: 8px;
}

.btn.loading {
   opacity: 0.8;
   cursor: not-allowed;
}

/* Footer */
footer {
   background: var(--secondary);
   padding: 70px 5% 30px;
   margin-top: auto;
   color: white;
}

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

.footer-section h3 {
   font-size: 1.3rem;
   margin-bottom: 20px;
   color: var(--light);
}

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

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

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

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

.social-links {
   display: flex;
   gap: 15px;
   margin-top: 20px;
}

.social-links a {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.1);
   color: var(--light);
   transition: var(--transition);
}

.social-links a:hover {
   background: var(--light);
   color: var(--primary);
   transform: translateY(-3px);
}

.footer-bottom {
   text-align: center;
   padding-top: 30px;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   color: rgba(255, 255, 255, 0.8);
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   gap: 15px;
}

/* Dashboard Section */
.dashboard-section {
   background: white;
   padding: 80px 0;
   width: 100%;
   border-top: 1px solid var(--border);
}

.dashboard-preview {
   background: white;
   border-radius: 16px;
   box-shadow: 0 20px 60px rgba(0,0,0,0.1);
   border: 1px solid #e0e6ed;
   position: relative;
   overflow: hidden;
   width: 100%;
   max-width: 1000px;
   margin: 0 auto;
   padding: 30px;
}

.dashboard-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 25px;
   padding-bottom: 15px;
   border-bottom: 1px solid #f0f0f0;
}

.dashboard-title {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 1.2rem;
   font-weight: 600;
   color: var(--secondary);
}

.dashboard-title i {
   color: var(--primary);
}

.dashboard-period {
   background: var(--primary-light);
   color: var(--secondary);
   padding: 6px 12px;
   border-radius: 20px;
   font-size: 0.85rem;
   font-weight: 500;
}

.dashboard-stats {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
   margin-bottom: 30px;
}

.stat-card {
   background: #f8fafd;
   padding: 20px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   gap: 15px;
   transition: all 0.3s ease;
}

.stat-card:hover {
   background: var(--primary-light);
   transform: translateY(-2px);
}

.stat-icon {
   background: var(--primary);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   width: 50px;
   height: 50px;
   font-size: 1.2rem;
}

.stat-info h3 {
   font-weight: 700;
   color: var(--secondary);
   margin: 0 0 5px 0;
   font-size: 1.8rem;
   line-height: 1;
}

.stat-info p {
   color: var(--text);
   margin: 0;
   font-weight: 500;
   font-size: 0.9rem;
}

.dashboard-charts {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
   margin-bottom: 25px;
}

.chart-section h4 {
   color: var(--secondary);
   margin-bottom: 10px;
   font-weight: 600;
}

.chart-container {
   background: #f8fafd;
   border-radius: 8px;
   padding: 10px;
   height: 200px;
}

.dashboard-footer {
   display: flex;
   justify-content: space-between;
   padding-top: 20px;
   border-top: 1px solid #f0f0f0;
}

.dashboard-metric {
   text-align: center;
   flex: 1;
}

.metric-label {
   display: block;
   color: var(--text);
   margin-bottom: 5px;
   font-size: 0.9rem;
}

.metric-value {
   font-weight: 600;
   color: var(--primary);
   font-size: 1.1rem;
}

/* Additional utility classes */
.text-center {
   text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.d-flex { display: flex; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }

/* Customer Carousel Section */
.customer-carousel-section {
   background: #f8fafd;
   padding: 80px 0;
   overflow: hidden;
}

.customer-carousel {
   max-width: 100%;
   overflow: hidden;
   position: relative;
}

/* Ensure no horizontal scroll on any screen size */
@media (max-width: 768px) {
    .customer-carousel {
        overflow-x: hidden !important;
    }
}

.carousel-track {
   display: flex;
   animation: scroll 20s linear infinite;
   width: calc(200% + 40px);
}

/* Enable touch scrolling and faster animation on mobile */
@media (max-width: 768px) {
    .customer-carousel {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
        scroll-behavior: smooth;
    }
    
    .carousel-track {
        animation: scroll 12s linear infinite;
    }
    
    .carousel-track:hover {
        animation-play-state: running; /* Don't pause on mobile hover/touch */
    }
}

@media (max-width: 480px) {
    .carousel-track {
        animation: scroll 10s linear infinite;
    }
}



.customer-logo:hover {
   transform: translateY(-5px);
}

.customer-logo {
   flex: 0 0 auto;
   margin-right: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: white;
   border-radius: 12px;
   padding: 25px;
   box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
   min-width: 280px;  /* Increased from 200px */
   height: 140px;     /* Increased from 100px */
}

.customer-logo img {
   max-width: 220px;  /* Increased from 160px */
   max-height: 90px;  /* Increased from 60px */
   object-fit: contain;
   filter: grayscale(100%);
   transition: filter 0.3s ease;
}

.customer-logo:hover img {
   filter: grayscale(0%);
}

@keyframes scroll {
   0% {
       transform: translateX(0);
   }
   100% {
       transform: translateX(-50%);
   }
}

.carousel-track:hover {
   animation-play-state: paused;
}

/* Faster scrolling for mobile devices */
@media (max-width: 768px) {
    .carousel-track {
        animation: scroll 10s linear infinite;
    }
}

@media (max-width: 480px) {
    .carousel-track {
        animation: scroll 8s linear infinite;
    }
}

/* Demo Modal Styles - IMPROVED FOR IPHONE */
.demo-modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999999;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.demo-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    margin: 5px auto;
    position: relative;
    z-index: 1000000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
    max-height: 98vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.gst-text {
    font-size: 0.85rem;
    color: var(--text);
    margin-top: -18px;
    margin-bottom: 22px;
    font-weight: 500;
}
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.demo-modal-header {
    padding: 15px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-light);
    border-radius: 15px 15px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.demo-modal-header h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.3;
}

.demo-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text);
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 15px;
}

.demo-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.demo-modal-body {
    padding: 12px;
    flex-grow: 1;
    overflow-y: auto;
    max-height: calc(98vh - 120px);
}

.demo-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.demo-form-group {
    margin-bottom: 8px;
    position: relative;
}

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

.demo-form-group label {
    display: block;
    margin-bottom: 3px;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1.2;
}

.demo-form-group input,
.demo-form-group select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.85rem;
    transition: var(--transition);
    background: white;
    appearance: none;
    -webkit-appearance: none;
    height: 32px;
    box-sizing: border-box;
}

.demo-form-group input:focus,
.demo-form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(234, 200, 65, 0.2);
}

.demo-form-group select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
}

.demo-form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.demo-form-actions .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Mobile Input Styling */


.mobile-input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(234, 200, 65, 0.2);
}

.mobile-input-group {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    background: var(--light);
    transition: var(--transition);
    height: 32px;
}

.country-code {
    background: var(--primary-light);
    color: var(--secondary);
    padding: 8px 8px;
    font-weight: 600;
    border-right: 1px solid var(--border);
    font-size: 0.8rem;
    min-width: 50px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-input-group input {
    border: none;
    outline: none;
    flex: 1;
    padding: 8px 10px;
    font-size: 0.85rem;
    background: transparent;
    box-shadow: none;
    height: 100%;
}

.mobile-input-group input:focus {
    border: none;
    box-shadow: none;
}

.form-help {
    display: block;
    color: #666;
    font-size: 0.65rem;
    margin-top: 2px;
    font-style: italic;
    line-height: 1.2;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .demo-modal {
        padding: 5px;
        align-items: flex-start;
        padding-top: 10px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .demo-modal-content {
        max-height: calc(100vh - 20px);
        width: calc(100% - 10px);
        margin: 0 auto;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
    }
    
    .demo-modal-header {
        padding: 8px 12px;
        flex-shrink: 0;
    }
    
    .demo-modal-header h3 {
        font-size: 1rem;
    }
    
    .demo-modal-body {
        padding: 10px;
        flex-grow: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        max-height: calc(100vh - 140px);
    }
    
    .demo-form-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .demo-form-group.full-width {
        grid-column: span 1;
    }
    
    .demo-form-actions {
        flex-direction: row;
        gap: 8px;
        margin-top: 8px;
        padding-top: 8px;
        flex-shrink: 0;
    }
    
    .demo-form-actions .btn {
        flex: 1;
        padding: 8px;
        font-size: 0.85rem;
    }
    
    .demo-form-group {
        margin-bottom: 6px;
    }
    
    .demo-form-group input,
.demo-form-group select {
    padding: 8px 10px;
    font-size: 0.85rem;
    height: auto; /* Allow height to adjust based on content */
    min-height: 32px; /* Ensure minimum height for consistency */
    width: 100%; /* Ensure full width within the grid */
    box-sizing: border-box; /* Include padding in width/height calculations */
}

.demo-form-group select {
    -webkit-appearance: none; /* Reset default appearance */
    appearance: none;
    background: transparent; /* Remove default background */
    position: relative; /* Allow custom arrow positioning */
    cursor: pointer;
    border: 1px solid var(--border); /* Match input border */
    border-radius: 6px; /* Match input styling */
}

.demo-form-group select::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--text); /* Custom arrow */
    pointer-events: none; /* Prevent interaction with pseudo-element */
}

.demo-form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(234, 200, 65, 0.2);
}

@media (max-width: 768px) {
    .demo-form-group select {
        padding-right: 30px; /* Extra space for custom arrow */
        font-size: 0.9rem; /* Slightly larger text for readability */
    }
}
    
    .demo-form-group label {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }
    
    .mobile-input-group {
        height: 32px;
    }
    
    .country-code {
        padding: 8px 6px;
        font-size: 0.8rem;
        min-width: 45px;
    }
    
    .mobile-input-group input {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .form-help {
        font-size: 0.65rem;
        margin-top: 1px;
    }
    
    /* Ensure proper scrolling for mobile modal */
    .mobile-form-header {
        padding: 8px 12px 5px;
        text-align: center;
        background: white;
        border-bottom: 1px solid var(--border);
        flex-shrink: 0;
    }
    
    .mobile-form-header h3 {
        margin: 0 0 2px 0;
        color: var(--secondary);
        font-size: 1rem;
    }
    
    .mobile-form-header p {
        margin: 0;
        color: var(--text);
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .demo-modal {
        padding: 10px;
        padding-top: 20px;
    }
    
    .demo-modal-content {
        width: calc(100% - 20px);
        max-height: calc(100vh - 40px);
    }
    
    .demo-modal-header {
        padding: 16px 18px;
    }
    
    .demo-modal-body {
        padding: 18px;
    }
    
    .demo-form-group {
        margin-bottom: 18px;
    }
    
    .demo-form-group label {
        font-size: 0.92rem;
        margin-bottom: 8px;
    }
    
    .form-help {
        font-size: 0.8rem;
    }
    
    .country-code {
        min-width: 65px;
        font-size: 0.95rem;
        padding: 14px 12px;
    }
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 768px) {
    html, body {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    * {
        box-sizing: border-box;
        max-width: 100%;
    }
    
    .page-wrapper {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    .main-content {
        padding-top: 55px;
        flex: 1;
    }
    
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: var(--light);
        border-bottom: 1px solid var(--border);
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 4%;
        min-height: 55px;
    }
    
    .header-left {
        flex: 0 0 auto;
        width: 50px;
        display: flex;
        justify-content: flex-start;
    }

    .header-right {
        flex: 0 0 auto;
        width: 50px;
        display: none;
    }
    
    .logo {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        font-size: 1.4rem;
        margin: 0;
        text-decoration: none;
        color: var(--dark);
    }
    
    .logo-image {
        height: 45px !important;
        max-width: 180px !important;
        width: auto;
    }
    
    .mobile-toggle {
        display: flex !important;
    }
    
    .typing-hero {
        text-align: center;
        margin-top: 15px;
        font-size: 1.6rem !important;
        line-height: 1.3;
    }
    
    .typing-text {
        font-size: 0.80em !important;
        min-height: 0.6em;
        margin-bottom: 5px;
        display: block;
        white-space: nowrap;
    }
    
    .static-text {
        font-size: 1.3em;
        display: block;
        margin-top: 5px;
    }
    
    .hero {
        padding: 100px 0 50px;
        min-height: 60vh;
        width: 100%;
        margin-left: 0;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-content h1 {
        margin-top: 10px;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .dashboard-section {
        padding: 40px 5%;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .dashboard-charts {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-info h3 {
        font-size: 1.3rem;
    }
    
    .stat-info p {
        font-size: 0.85rem;
    }
    
    .showcase-section {
        padding: 40px 0;
        width: 100%;
        margin-left: 0;
        overflow: hidden;
    }

    .showcase-slider {
        padding: 0 20px;
        overflow: hidden;
        position: relative;
    }

    .showcase-slides {
        min-height: auto;
        position: relative;
        overflow: hidden;
    }

    .showcase-slide {
        min-height: auto;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        transform: translateX(100%);
        transition: none;
        pointer-events: none;
    }

    .showcase-slide.active {
        position: relative;
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
        display: block;
    }

    .showcase-slide:not(.active) {
        display: none;
    }
    
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .showcase-content {
        order: 2;
    }
    
    .showcase-image {
        order: 1;
    }
    
    .showcase-controls {
    display: none !important; /* Hide controls on mobile */
}
    
    .showcase-dots {
        margin-top: 30px;
        margin-bottom: 10px;
        padding: 5px 0;
    }
    
    .showcase-dot {
        width: 10px;
        height: 10px;
        border-width: 1px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .faq-section {
        padding: 40px 5%;
    }
    
    .faq-question {
        padding: 15px 18px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 18px;
        font-size: 0.95rem;
        margin: 0;
    }
    
    .faq-icon {
        margin-left: 15px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .captcha-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .captcha-container input {
        max-width: none;
        margin-top: 10px;
    }
    
    .mobile-input-group {
        flex-direction: row;
    }
    
    .country-code {
        min-width: 60px;
    }
    
    footer {
        margin-top: auto;
        padding: 30px 5% 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding-top: 20px;
        margin-top: 25px;
    }
    
    .section {
        padding: 50px 5% !important;
    }
    
    .section-header {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .customer-logo {
        min-width: 150px;
        height: 80px;
        margin-right: 20px;
        padding: 15px;
    }
    
    .customer-logo img {
        max-width: 220px;
        max-height: 80px;
    }
    
    /* Demo Modal Mobile Fixes */
    .demo-modal {
        padding: 10px !important;
        align-items: flex-start !important;
        padding-top: 20px !important;
    }
    
    .demo-modal-content {
        max-height: calc(100vh - 40px) !important;
        width: calc(100% - 20px) !important;
        margin: 0 auto !important;
        border-radius: 10px !important;
    }
    
    .demo-modal-header {
        padding: 15px !important;
        position: sticky;
        top: 0;
        z-index: 1;
    }
    
    .demo-modal-header h3 {
        font-size: 1.1rem !important;
    }
    
    .demo-modal-body {
        padding: 15px !important;
    }
    
    .demo-form-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .demo-form-actions {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .demo-form-actions .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* Hide desktop nav on mobile, show mobile nav */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-nav {
        display: block;
    }
}

/* Hide mobile nav on desktop, show desktop nav */
@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
    
    .mobile-toggle {
        display: none !important;
    }
    
    .desktop-nav {
        display: block;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .typing-hero {
        font-size: 1.4rem !important;
    }
    
    .typing-text {
        font-size: 1em !important;
    }
    
    .hero {
        padding: 90px 0 40px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .section {
        padding: 35px 4% !important;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .header-container {
        padding: 0.4rem 3%;
    }
    
    .mobile-nav-content {
        width: 260px;
    }
    
    .logo {
        font-size: 1.2rem;
        height: 35px;
    }
    
    .logo-image {
        height: 32px !important;
        max-width: 130px !important;
        min-width: 70px;
        min-height: 25px;
    }
}

/* Body scroll lock when modal is open */
body.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

/* Ensure modal appears above everything */
body.modal-open .demo-modal {
    z-index: 999999 !important;
}

body.modal-open .main-header {
    z-index: 999 !important;
}

body.modal-open .mobile-nav {
    z-index: 998 !important;
}

/* Demo Modal Layout with Achievements */
.demo-modal-layout {
    display: flex;
    min-height: 420px;
    height: auto;
    overflow: hidden;
}

.demo-achievement-panel {
    display: none;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    padding: 15px 12px;
    color: var(--secondary);
    border-radius: 12px 0 0 12px;
    width: 32%;
    flex-shrink: 0;
}

.demo-form-panel {
    width: 100%;
    padding: 0 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.achievement-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.achievement-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--secondary);
    line-height: 1.1;
}

.achievement-content p {
    font-size: 0.75rem;
    margin-bottom: 8px;
    color: var(--secondary);
    opacity: 0.9;
    line-height: 1.2;
}

.achievement-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 4px 0;
    width: 40%;
}

.achievement-features {
    margin-top: 6px;
}

.achievement-features p {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    font-size: 0.7rem;
    line-height: 1.2;
}

.achievement-features i {
    color: var(--secondary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Desktop view - show achievements panel */
@media (min-width: 992px) {
    .demo-modal-layout {
        flex-direction: row;
    }
    
    .demo-achievement-panel {
        display: block;
    }
    
    .demo-form-panel {
        width: 68%;
        padding: 0 12px;
    }
    
    .demo-modal-content {
        max-width: 980px;
    }
    
    .demo-modal-body {
        overflow: visible;
        max-height: none;
    }
}

/* Mobile view adjustments */
@media (max-width: 991px) {
    .demo-modal-layout {
        flex-direction: column;
        min-height: auto;
    }
    
    .demo-achievement-panel {
        display: none;
    }
    
    .demo-form-panel {
        width: 100%;
        padding: 0;
    }
}

/* Mobile Form Optimization - Fixed Scrolling */
@media (max-width: 991px) {
    .demo-modal {
        align-items: flex-start;
        padding: 10px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .demo-modal-content {
        height: auto;
        min-height: 100vh;
        max-height: 95vh;
        margin: 0 auto;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 500px;
        background: white;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }
    
    .demo-modal-header {
        position: sticky;
        top: 0;
        z-index: 20;
        background: var(--primary-light);
        padding: 15px 20px;
        border-radius: 12px 12px 0 0;
        border-bottom: 1px solid var(--border);
        flex-shrink: 0;
    }
    
    .demo-modal-header h3 {
        margin: 0;
        font-size: 1.3rem;
        color: var(--secondary);
    }
    
    .demo-modal-body {
        overflow: hidden;
        flex-grow: 1;
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    
    .demo-form-panel {
        display: flex;
        flex-direction: column;
        height: 100%;
        position: relative;
    }
    
    .mobile-form-header {
        padding: 15px 20px 10px;
        text-align: center;
        background: white;
        border-bottom: 1px solid var(--border);
    }
    
    .mobile-form-header h3 {
        margin: 0 0 5px 0;
        color: var(--secondary);
        font-size: 1.3rem;
    }
    
    .mobile-form-header p {
        margin: 0;
        color: var(--text);
        font-size: 0.9rem;
    }
    
    .form-scroll-container {
        flex-grow: 1;
        overflow-y: auto;
        padding: 20px;
        -webkit-overflow-scrolling: touch;
        max-height: calc(100vh - 200px);
    }
    
    .form-bottom-spacer {
        height: 30px;
    }
    
    .demo-form-actions {
        position: sticky;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 15px 20px;
        border-top: 1px solid var(--border);
        display: flex;
        gap: 15px;
        z-index: 15;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .demo-form-actions .btn {
        flex: 1;
        padding: 12px;
    }
    
    .demo-modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 25;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        border: 1px solid var(--border);
    }
    
    /* Form field adjustments for mobile */
    .demo-form-group {
        margin-bottom: 18px;
    }
    
    .demo-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    input, select {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
    
    /* Improve scrollability */
    .form-scroll-container {
        scroll-behavior: smooth;
    }
    
    .form-scroll-container::-webkit-scrollbar {
        display: none;
    }
    
    /* Ensure form doesn't get stuck */
    .form-scroll-container {
        overscroll-behavior: contain;
    }
}

/* Desktop adjustments to maintain existing layout */
@media (min-width: 992px) {
    .mobile-form-header {
        display: none;
    }
    
    .form-scroll-container {
        max-height: none;
        overflow-y: visible;
        padding: 0;
    }
    
    .form-bottom-spacer {
        display: none;
    }
    
    .demo-form-actions {
        position: static;
        padding: 25px 0 0;
        border-top: none;
        box-shadow: none;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 200, 65, 0.4);
}

.scroll-to-top:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(234, 200, 65, 0.6);
}

.scroll-to-top.show {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    text-decoration: none;
    color: white;
    animation: none;
}

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

/* WhatsApp Container for Tooltip */
.whatsapp-container {
    position: fixed;
    bottom: 80px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-tooltip {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: #333333;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--font-family);
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid #444444;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333333;
}

.whatsapp-container:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 65px;
}

/* Mobile responsive adjustments for floating buttons */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 90px;
        right: 15px;
        font-size: 1rem;
    }
    
    .whatsapp-container {
        position: fixed;
        bottom: 90px;
        left: 15px;
        z-index: 1000;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        position: static;
        font-size: 1.1rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 85px;
        right: 10px;
        font-size: 0.9rem;
    }
    
    .whatsapp-container {
        position: fixed;
        bottom: 85px;
        left: 10px;
        z-index: 1000;
    }
    
    .whatsapp-float {
        width: 40px;
        height: 40px;
        position: static;
        font-size: 1rem;
    }
}
