:root {
    --primary-blue: #1B4F72;
    --secondary-blue: #2E5F8A;
    --accent-blue: #6BA3D4;
    --light-blue: #A8D0E6;
    --dark-blue: #0D2942;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-700: #495057;
    --gray-900: #212529;
    --white: #FFFFFF;
    --success: #28A745;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo-image {
    max-height: 60px;
    height: auto;
    max-width: 250px;
    object-fit: contain;
}

.logo-icon svg {
    filter: drop-shadow(0 2px 8px rgba(27, 79, 114, 0.2));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.logo-tagline {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: var(--gray-700);
    text-transform: uppercase;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:not(.cta-button):hover {
    color: var(--primary-blue);
}

.nav-links a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-links a:not(.cta-button):hover::after {
    width: 100%;
}

.cta-button {
    padding: 0.7rem 1.6rem !important;
    background: var(--primary-blue);
    color: var(--white) !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(27, 79, 114, 0.25);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 79, 114, 0.35);
    background: var(--secondary-blue);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section - Full Width with Karibu Brand Style */
.hero-section {
    margin-top: 80px;
    position: relative;
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 41, 66, 0.92) 0%,
        rgba(27, 79, 114, 0.88) 35%,
        rgba(46, 95, 138, 0.85) 65%,
        rgba(107, 163, 212, 0.82) 100%
    );
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(107, 163, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(168, 208, 230, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.02) 10px,
            rgba(255, 255, 255, 0.02) 20px
        );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: #ffd700;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.stat-item {
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    padding-left: 1.2rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.5s backwards;
}

.dashboard-preview {
    position: relative;
}

.dashboard-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 163, 212, 0.3) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-slideshow {
    position: relative;
    width: 100%;
}

.slideshow-slide {
    position: relative;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: block;
}

.slideshow-slide:first-child {
    position: relative;
}

.slideshow-slide:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slideshow-slide.active {
    opacity: 1;
}

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

.slideshow-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    z-index: 10;
}

.slideshow-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slideshow-caption {
    font-size: 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.dashboard-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.floating-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(107, 163, 212, 0.2);
}

.floating-stat:nth-child(1) {
    top: 15%;
    right: -10%;
}

.floating-stat:nth-child(2) {
    top: 50%;
    left: -10%;
    animation-delay: 1s;
}

.floating-stat:nth-child(3) {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

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

.stat-icon {
    font-size: 1.3rem;
}

.stat-text {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

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

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

/* Section Styling */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--accent-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.15rem;
    color: var(--gray-700);
    max-width: 700px;
    margin: 0 auto;
}

/* Module Icons Section */
.module-icons-section {
    padding: 3rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200, #e2e8f0);
}

.module-icons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem 3rem;
}

.module-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.module-icon-item:hover {
    transform: translateY(-4px);
}

.module-icon-img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: var(--gray-100, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.module-icon-item:hover .module-icon-img {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.module-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.module-icon-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700, #334155);
    text-align: center;
    max-width: 100px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .module-icons-grid {
        gap: 1.5rem 2rem;
    }
    .module-icon-img {
        width: 56px;
        height: 56px;
        padding: 10px;
        border-radius: 12px;
    }
    .module-icon-label {
        font-size: 0.75rem;
    }
}

/* Features Section */
.features-section {
    background: var(--gray-100);
}

.features-carousel {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.features-track-wrapper {
    overflow: hidden;
    flex: 1;
}

.features-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.features-track .feature-card {
    flex: 0 0 calc((100% - 4rem) / 3);
    min-width: 0;
}

.carousel-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--accent-blue);
    background: var(--white);
    color: var(--accent-blue);
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    line-height: 1;
    padding: 0;
}

.carousel-btn:hover {
    background: var(--accent-blue);
    color: var(--white);
}

.features-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.features-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-400, #cbd5e1);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.features-dots .dot.active {
    background: var(--accent-blue);
    transform: scale(1.3);
}

@media (max-width: 1024px) {
    .features-track .feature-card {
        flex: 0 0 calc((100% - 2rem) / 2);
    }
}

@media (max-width: 768px) {
    .features-track .feature-card {
        flex: 0 0 100%;
    }
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, opacity 0.5s ease-out, transform 0.5s ease-out;
    border-top: 3px solid var(--accent-blue);
}

.feature-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--gray-700);
    line-height: 1.7;
}

/* Video Section */
.video-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(107, 163, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(168, 208, 230, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.video-section .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 2.5rem;
}

.video-section .section-title {
    color: var(--white);
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.video-section .section-title::after {
    content: '▶';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-blue);
    font-size: 0.8em;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateY(-50%) scale(1.1); }
}

.video-wrapper {
    max-width: 80%;
    margin: 0 auto;
    position: relative;
    padding-bottom: 45%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: all 0.4s ease;
    z-index: 1;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-blue));
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-wrapper:hover::before {
    opacity: 0.2;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.03);
    filter: brightness(0.85);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
}

.video-play-btn svg {
    width: 80px;
    height: 56px;
}

.video-thumbnail:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.12);
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
    .video-play-btn svg {
        width: 60px;
        height: 42px;
    }
}

/* Modules Section */
.modules-container {
    display: grid;
    gap: 3rem;
}

.module-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.module-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.module-card:nth-child(even) {
    background: var(--gray-100);
}

.module-right .module-content {
    order: 2;
}

.module-right .module-image {
    order: 1;
}

.module-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.module-content p {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.module-benefits {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.module-benefits li {
    padding-left: 2rem;
    position: relative;
    color: var(--gray-700);
    line-height: 1.6;
}

.module-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
}

.benefit-heading {
    display: block;
    color: var(--gray-900);
    font-weight: 600;
}

.benefit-description {
    display: block;
    font-size: 0.92rem;
    color: var(--gray-600);
    margin-top: 0.15rem;
}

.module-image {
    background: var(--gray-200);
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.module-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
}

.pricing-section .section-title,
.pricing-section .section-subtitle {
    color: var(--white);
}

.pricing-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

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

.pricing-card {
    background: var(--white);
    color: var(--gray-900);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border: 3px solid var(--accent-blue);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--accent-blue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.package-description {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.room-input-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.room-input-wrapper label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    font-weight: 500;
}

.room-input-wrapper input {
    width: 220px;
    padding: 10px 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.room-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.room-input-wrapper input:focus {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.25);
}

.room-input-wrapper input::-webkit-outer-spin-button,
.room-input-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.room-input-wrapper input[type=number] {
    -moz-appearance: textfield;
}


.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
}

.toggle-label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.toggle-label.toggle-active {
    color: #fff;
    font-weight: 700;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    cursor: pointer;
}

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

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 28px;
    transition: background 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background: rgba(255, 255, 255, 0.5);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.pricing-amount {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #1B4F72 0%, #2874A6 50%, #3498DB 100%);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(27, 79, 114, 0.4);
    position: relative;
    overflow: hidden;
    transform: scale(1.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.pricing-amount::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.pricing-amount .price-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-features li.included::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-features li.excluded {
    opacity: 0.4;
}

.pricing-features li.excluded::before {
    content: '✗';
    color: var(--gray-700);
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-features li.feature-header {
    font-weight: 900;
    color: var(--primary-blue);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 0 0.5rem 0;
    margin-top: 0.5rem;
    border-bottom: 2px solid var(--primary-blue);
}

.pricing-features li.feature-header::before {
    display: none;
}

.pricing-features li.feature-header:first-child {
    margin-top: 0;
    padding-top: 0.5rem;
}

.pricing-features li.feature-hidden {
    display: none;
}

.features-toggle-item {
    text-align: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.features-toggle-item::before {
    display: none !important;
}

.features-toggle-link {
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.features-toggle-link:hover {
    text-decoration: underline;
}

.btn-pricing {
    width: 100%;
    justify-content: center;
    background: var(--primary-blue);
    color: var(--white);
}

/* Demo Section */
.demo-section {
    background: var(--gray-100);
}

.demo-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(107, 163, 212, 0.1);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    background: var(--primary-blue);
    color: var(--white);
    padding: 1.2rem;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background: var(--secondary-blue);
}

/* Contact Section */
.contact-section {
    background: var(--primary-blue);
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-description {
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

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

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

.contact-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.contact-card a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--white);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-form .form-group label {
    color: var(--primary-blue);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-text {
    opacity: 0.8;
    margin: 1rem 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
}

.copyright {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-description {
        max-width: 100%;
    }

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

    .module-right .module-content,
    .module-right .module-image {
        order: initial;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-section {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section {
        padding: 60px 0;
    }

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



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

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

    .floating-stat:nth-child(1) {
        right: 5%;
    }

    .floating-stat:nth-child(2) {
        left: 5%;
    }
}

/* Scroll Animation Styles */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Module specific animations */
.module-card.scroll-animate {
    opacity: 0;
}

.module-left.scroll-animate {
    transform: translateX(-50px) translateY(20px);
}

.module-right.scroll-animate {
    transform: translateX(50px) translateY(20px);
}

.module-card.scroll-animate.animate-in {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Feature cards animation */
.feature-card.scroll-animate {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.feature-card.scroll-animate.animate-in {
    opacity: 1;
}

/* Pricing cards animation */
.pricing-card.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.pricing-card.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Clients Section */
.clients-section {
    background: var(--gray-100);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    margin-top: 3rem;
}

.client-logo-wrapper {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-logo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.client-logo-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.client-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo-wrapper:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1.5rem;
    }

    .client-logo-wrapper {
        height: 80px;
    }

    .client-logo {
        max-height: 60px;
    }
}
