/* CSS Variables for Consistency and Easy Maintenance */
:root {
    --primary-color: #FC6C72;
    --secondary-color: #2E1723;
    --accent-color: #e85a61;
    --background-color: #FFFFFF;
    --light-gray: #F9FAFB;
    --medium-gray: #D1D5DB;
    --dark-gray: #4B5563;
    --font-inter: 'Inter', sans-serif;
    --font-playfair: 'Playfair Display', serif;
    --transition-speed: 0.3s;
    --box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Reset and General Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hidden {
    display: none;
}

.container {
    background-color: var(--background-color);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color var(--transition-speed);
}

.header.scrolled {
    background-color: var(--background-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.navbar-left {
    display: flex;
    align-items: center;
}

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

.logo {
    height: 2.5rem;
    width: auto;
    transition: transform var(--transition-speed);
}

.logo:hover {
    transform: scale(1.05);
}

.navbar-toggle {
    display: none;
}

.menu-button {
    background: none;
    border: none;
    cursor: pointer;
}

.menu-icon {
    height: 1.5rem;
    width: 1.5rem;
    color: var(--secondary-color);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
    position: relative;
    transition: color var(--transition-speed);
}

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

.navbar-links .nav-link:not(.language-switcher)::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-speed);
    position: absolute;
    bottom: -5px;
    left: 0;
}

.navbar-links .nav-link:not(.language-switcher):hover::after {
    width: 100%;
}

/* Language Switcher Styles */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.language-switcher span {
    color: var(--secondary-color);
}

.language-switcher .lang-button {
    position: relative;
    transition: color var(--transition-speed);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}

.language-switcher .lang-button:hover,
.language-switcher .lang-button.active {
    color: var(--primary-color);
    font-weight: 700;
}

/* Navbar CTA Button */
.navbar-cta {
    margin-left: 1rem;
}

.btn-nav-cta {
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.btn-nav-cta::after {
    content: '';
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transform: skewX(-45deg);
    transition: left 0.5s;
}

.btn-nav-cta:hover::after {
    left: 100%;
}

.btn-nav-cta:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.25);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 24rem;
    height: 100%;
    background-color: var(--background-color);
    padding: 1.5rem;
    overflow-y: auto;
    animation: slideIn 0.3s forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-close-button {
    background: none;
    border: none;
    cursor: pointer;
}

.menu-close-icon {
    height: 1.5rem;
    width: 1.5rem;
    color: var(--secondary-color);
}

.mobile-menu-body {
    margin-top: 1.5rem;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(46, 23, 35, 0.1);
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    border-radius: 0.5rem;
    transition: background-color var(--transition-speed);
}

.mobile-nav-link:hover {
    background-color: #F0E8E0;
}

.mobile-language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mobile-language-switcher .lang-button {
    font-size: 1rem;
    color: var(--secondary-color);
    transition: color var(--transition-speed);
    cursor: pointer;
}

.mobile-language-switcher .lang-button:hover,
.mobile-language-switcher .lang-button.active {
    color: var(--primary-color);
    font-weight: 700;
}

.mobile-menu-cta {
    margin-top: 1.5rem;
}

.btn-mobile-cta {
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.btn-mobile-cta::after {
    content: '';
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transform: skewX(-45deg);
    transition: left 0.5s;
}

.btn-mobile-cta:hover::after {
    left: 100%;
}

.btn-mobile-cta:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Hero Section Styles */
.hero-section {
    padding: 8rem 2rem;
    background-color: #FFF8DC;
    color: var(--secondary-color);
    margin-top: 4rem; /* Adjusted for fixed header */
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    animation: fadeInLeft 1s ease-out;
}

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

.hero-title {
    font-family: var(--font-playfair);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out;
}

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

.hero-image {
    width: 80%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

.hero-image:hover {
    transform: scale(1.05);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.375rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border: none;
}

.btn-primary::after,
.btn-secondary::after {
    content: '';
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transform: skewX(-45deg);
    transition: left 0.5s;
}

.btn-primary:hover::after,
.btn-secondary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #F0E8E0;
    transform: translateY(-2px);
}

/* Features Section Styles */
.features-section {
    padding: 8rem 2rem;
    background-color: var(--light-gray);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-section .section-title {
    font-family: var(--font-playfair);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.features-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.features-left {
    flex: 1;
    min-width: 300px;
}

.features-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-image {
    width: 75%;
    max-width: 500px;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

.features-image:hover {
    transform: scale(1.05);
}

/* Feature Steps */
.features-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-step {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background-color: var(--background-color);
    border: 1px solid var(--medium-gray);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.feature-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-icon .icon-image {
    width: 1.5rem;
    height: 1.5rem;
    filter: brightness(0) invert(1);
}

.feature-content .feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.feature-content .feature-description {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.5;
}


/* Base Styles for Use Cases Section */
.use-cases-section {
    padding: 8rem 2rem;
    background-color: var(--background-color);
}

.use-cases-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.use-cases-header .section-title {
    font-family: var(--font-playfair);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.use-cases-header .section-description {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Tabs Navigation Styles */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.tabs[role="tablist"] {
    outline: none;
}

.tab-button {
    padding: 12px 24px; /* Uniform padding */
    border: none;
    background-color: #F0E8E0;
    color: var(--secondary-color);
    cursor: pointer;
    border-radius: 10px; /* Smoothed corners for a modern look */
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* Subtle shadow for depth */
    flex: 1 1 200px; /* Flex basis with maximum width controlled */
    max-width: 250px;
    text-align: center;
    transition: background-color 0.3s, color 0.3s; /* Smooth transitions for interactive elements */
    outline: none;
}

.tab-button:hover, .tab-button.active {
    background-color: #e0e0e0; /* Slightly darker on hover for feedback */
    color: #000;
}

/* Container for Tab Content */
.tab-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Tab Pane Styles */
.tab-pane {
    display: none;
    width: 100%;
    text-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Base Styles for Use Cases Section */
.use-cases-section {
    padding: 8rem 2rem;
    background-color: var(--background-color);
}

.use-cases-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.use-cases-header .section-title {
    font-family: var(--font-playfair);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.use-cases-header .section-description {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Tabs Navigation Styles */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.tabs[role="tablist"] {
    outline: none;
}

.tab-button {
    padding: 12px 24px;
    border: none;
    background-color: #F0E8E0;
    color: var(--secondary-color);
    cursor: pointer;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
    outline: none;
}

.tab-button:hover, .tab-button.active {
    background-color: #e0e0e0;
    color: #000;
}










/* General Styles for Use Cases Section */
.use-cases-section {
    background: #fff;
    padding: 4rem 1rem; /* Consistent padding for all device sizes */
    color: var(--primary-color);
}

.use-cases-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 3rem; /* Increased for greater impact */
    color: #000; /* Black for strong contrast */
}

.section-description {
    font-size: 1.3rem; /* Slightly larger for better readability */
    margin-top: 0.5rem;
    color: var(--secondary-color);
}

/* Tabs Navigation Styles */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.tabs[role="tablist"] {
    outline: none;
}

.tab-button {
    padding: 12px 24px; /* Adequately sized for usability */
    border: 2px solid transparent;
    background-color: #F0E8E0;
    color: var(--secondary-color);
    cursor: pointer;
    border-radius: 8px;
    font-size: 1.1rem; /* Slightly larger for better interaction */
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    flex-grow: 1;
    text-align: center;
    transition: background-color 0.3s, border-color 0.3s;
}

.tab-button:hover, .tab-button.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

/* Styles for Tab Content */
.tab-content {
    display: flex;
    flex-direction: column;
}

.tab-pane {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem;
}

.tab-pane.active {
    display: flex;
}

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

.use-case-text {
    flex: 1;
    text-align: left;
}

.use-case-title {
    font-size: 2.5rem; /* Larger for emphasis */
    color: #000;
    font-weight: 700;
    margin-bottom: 1rem;
}

.use-case-description {
    font-size: 1.2rem; /* Increased size for clarity */
    line-height: 1.8;
    color: var(--secondary-color);
}

.use-case-image-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-image {
    width: auto;
    max-height: 350px; /* Increased height for better visual impact */
    max-width: 100%; /* Adjust width to prevent overflow */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .tab-pane {
        flex-direction: column;
    }

    .use-case-text, .use-case-image-wrapper {
        width: 100%;
    }
    
    .use-case-title {
        font-size: 2.2rem; /* Optimized for mobile readability */
    }
}























@media (max-width: 1023px) {
    .navbar-toggle {
        display: block;
    }

    .navbar-links {
        display: none;
    }

    .mobile-menu.active .navbar-links {
        display: flex;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        animation: none;
    }

    .hero-image-container {
        animation: none;
        margin-bottom: 2rem;
    }

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

    /* Adjust tabs for smaller screens */
    .tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 6rem 1rem;
    }

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

    .features-section,
    .use-cases-section,
    .waitlist-section,
    .testimonials-section,
    .contact-section {
        padding: 6rem 1rem;
    }

    .use-cases-tabs {
        gap: 1rem;
    }

    .tabs {
        gap: 0.5rem;
    }

    .tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .use-case-description {
        font-size: 1rem;
    }

    .use-case-image-wrapper {
        max-width: 100%;
    }

    .testimonial-photo {
        width: 5rem;
        height: 5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

/* Waitlist Section Styles */
.waitlist-section {
    padding: 8rem 2rem;
    background-color: #FFF8DC;
    text-align: center;
}

.waitlist-container {
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-title {
    font-family: var(--font-playfair);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.waitlist-description {
    font-size: 1.125rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.waitlist-input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.waitlist-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(252, 108, 114, 0.3);
}

.btn-waitlist {
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-color var(--transition-speed), transform 0.2s ease;
}

.btn-waitlist::after {
    content: '';
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transform: skewX(-45deg);
    transition: left 0.5s;
}

.btn-waitlist:hover::after {
    left: 100%;
}

.btn-waitlist:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.waitlist-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6B7280;
}

/* Countdown Timer Styles */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.countdown-segment {
    background-color: #F3F4F6;
    padding: 1rem;
    border-radius: 0.375rem;
    width: 4rem;
    text-align: center;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.countdown-label {
    font-size: 0.75rem;
    color: #6B7280;
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 8rem 2rem;
    background-color: var(--light-gray);
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-section .section-title {
    font-family: var(--font-playfair);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    display: none; /* Control display through JavaScript */
    transition: opacity 0.5s ease; /* Smooth transition for opacity */
}

.carousel-item.active {
    display: block; /* Show active item */
    opacity: 1; /* Full opacity for active item */
}

.testimonial {
    background-color: #FFFFFF; /* Explicitly white for clarity */
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1); /* Subtle shadow for distinction */
    margin-bottom: 2rem; /* Spacing between items */
    overflow: hidden; /* Prevent content overflow */
}

.testimonial:hover {
    transform: translateY(-5px); /* Hover effect for interaction feedback */
}

.testimonial-photo {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem auto;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(46, 23, 35, 0.7);
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 9999px;
    transition: background-color 0.3s ease; /* Smoother transition for background color */
}

.carousel-button:hover {
    background-color: rgba(46, 23, 35, 0.9); /* Darker on hover for better visibility */
}

.prev-button {
    left: 1rem;
}

.next-button {
    right: 1rem;
}

/* Contact Us Section Styles */
.contact-section {
    padding: 8rem 2rem;
    background-color: #FFF8DC;
    color: var(--secondary-color);
    text-align: center;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-section .section-title {
    font-family: var(--font-playfair);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
}

/* Footer Styles */
.footer {
    background-color: var(--background-color);
    color: var(--secondary-color);
    padding: 3rem 2rem;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    height: 2.5rem;
    width: auto;
}

.footer-logo-text {
    font-family: var(--font-playfair);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-social-links {
    display: flex;
    gap: 1.5rem;
}

.footer-social-link {
    color: inherit;
    transition: color var(--transition-speed);
}

.footer-social-link:hover {
    color: var(--primary-color);
}

.footer-social-icon {
    height: 1.5rem;
    width: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-link {
    color: inherit;
    transition: color var(--transition-speed);
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-link-separator {
    color: var(--medium-gray);
}

.footer-text {
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1023px) {
    .navbar-toggle {
        display: block;
    }

    .navbar-links {
        display: none;
    }

    .mobile-menu.active .navbar-links {
        display: flex;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        animation: none;
    }

    .hero-image-container {
        animation: none;
        margin-bottom: 2rem;
    }

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

    /* Adjust tabs for smaller screens */
    .tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 6rem 1rem;
    }

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

    .features-section,
    .use-cases-section,
    .waitlist-section,
    .testimonials-section,
    .contact-section {
        padding: 6rem 1rem;
    }

    .use-cases-tabs {
        gap: 1rem;
    }

    .tabs {
        gap: 0.5rem;
    }

    .tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .use-case-description {
        font-size: 1rem;
    }

    .use-case-image-wrapper {
        max-width: 100%;
    }

    .testimonial-photo {
        width: 5rem;
        height: 5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

/* Waitlist Section Styles */
.waitlist-section {
    padding: 8rem 2rem;
    background-color: #FFF8DC;
    text-align: center;
}

.waitlist-container {
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-title {
    font-family: var(--font-playfair);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.waitlist-description {
    font-size: 1.125rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.waitlist-input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.waitlist-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(252, 108, 114, 0.3);
}

.btn-waitlist {
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-color var(--transition-speed), transform 0.2s ease;
}

.btn-waitlist::after {
    content: '';
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transform: skewX(-45deg);
    transition: left 0.5s;
}

.btn-waitlist:hover::after {
    left: 100%;
}

.btn-waitlist:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.waitlist-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6B7280;
}

/* Countdown Timer Styles */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2rem;
}

.countdown-segment {
    background-color: #F3F4F6;
    padding: 1rem;
    border-radius: 0.375rem;
    width: 10rem;
    text-align: center;
    overflow: hidden; /* Ensure text does not overflow */
    white-space: nowrap; /* Prevent text wrapping */
    text-overflow: ellipsis; /* Add ellipsis if text overflows */
}

.countdown-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.countdown-label {
    font-size: 0.2rem; /* Smaller font size */
    color: #6B7280;
    text-align: center; /* Center the label */
    display: block; /* Ensure it takes up the full width */
    overflow: hidden; /* Ensure text does not overflow */
    white-space: nowrap; /* Prevent text wrapping */
    text-overflow: ellipsis; /* Add ellipsis if text overflows */
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 8rem 2rem;
    background-color: var(--light-gray);
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-section .section-title {
    font-family: var(--font-playfair);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-item.active {
    opacity: 1;
}

.testimonial {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

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

.testimonial-photo {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem auto;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(46, 23, 35, 0.7);
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 9999px;
    transition: background-color var(--transition-speed);
}

.carousel-button:hover {
    background-color: rgba(46, 23, 35, 0.9);
}

.prev-button {
    left: 1rem;
}

.next-button {
    right: 1rem;
}

/* Contact Us Section Styles */
.contact-section {
    padding: 8rem 2rem;
    background-color: #FFF8DC;
    color: var(--secondary-color);
    text-align: center;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-section .section-title {
    font-family: var(--font-playfair);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
}

/* Footer Styles */
.footer {
    background-color: var(--background-color);
    color: var(--secondary-color);
    padding: 3rem 2rem;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    height: 2.5rem;
    width: auto;
}

.footer-logo-text {
    font-family: var(--font-playfair);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-social-links {
    display: flex;
    gap: 1.5rem;
}

.footer-social-link {
    color: inherit;
    transition: color var(--transition-speed);
}

.footer-social-link:hover {
    color: var(--primary-color);
}

.footer-social-icon {
    height: 1.5rem;
    width: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-link {
    color: inherit;
    transition: color var(--transition-speed);
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-link-separator {
    color: var(--medium-gray);
}

.footer-text {
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1023px) {
    .navbar-toggle {
        display: block;
    }

    .navbar-links {
        display: none;
    }

    .mobile-menu.active .navbar-links {
        display: flex;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        animation: none;
    }

    .hero-image-container {
        animation: none;
        margin-bottom: 2rem;
    }

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

    /* Adjust tabs for smaller screens */
    .tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 6rem 1rem;
    }

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

    .features-section,
    .use-cases-section,
    .waitlist-section,
    .testimonials-section,
    .contact-section {
        padding: 6rem 1rem;
    }

    .use-cases-tabs {
        gap: 1rem;
    }

    .tabs {
        gap: 0.5rem;
    }

    .tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .use-case-description {
        font-size: 1rem;
    }

    .use-case-image-wrapper {
        max-width: 100%;
    }

    .testimonial-photo {
        width: 5rem;
        height: 5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

/* Waitlist Section Styles */
.waitlist-section {
    padding: 8rem 2rem;
    background-color: #FFF8DC;
    text-align: center;
}

.waitlist-container {
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-title {
    font-family: var(--font-playfair);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.waitlist-description {
    font-size: 1.125rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.waitlist-input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.waitlist-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(252, 108, 114, 0.3);
}

.btn-waitlist {
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-color var(--transition-speed), transform 0.2s ease;
}

.btn-waitlist::after {
    content: '';
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transform: skewX(-45deg);
    transition: left 0.5s;
}

.btn-waitlist:hover::after {
    left: 100%;
}

.btn-waitlist:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.waitlist-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6B7280;
}

/* Countdown Timer Styles */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.countdown-segment {
    background-color: #F3F4F6;
    padding: 1rem;
    border-radius: 0.375rem;
    width: 4rem;
    text-align: center;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.countdown-label {
    font-size: 0.75rem;
    color: #6B7280;
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 8rem 2rem;
    background-color: var(--light-gray);
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-section .section-title {
    font-family: var(--font-playfair);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-item.active {
    opacity: 1;
}

.testimonial {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

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

.testimonial-photo {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem auto;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(46, 23, 35, 0.7);
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 9999px;
    transition: background-color var(--transition-speed);
}

.carousel-button:hover {
    background-color: rgba(46, 23, 35, 0.9);
}

.prev-button {
    left: 1rem;
}

.next-button {
    right: 1rem;
}

/* Contact Us Section Styles */
.contact-section {
    padding: 8rem 2rem;
    background-color: #FFF8DC;
    color: var(--secondary-color);
    text-align: center;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-section .section-title {
    font-family: var(--font-playfair);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
}

/* Footer Styles */
.footer {
    background-color: var(--background-color);
    color: var(--secondary-color);
    padding: 3rem 2rem;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    height: 2.5rem;
    width: auto;
}

.footer-logo-text {
    font-family: var(--font-playfair);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-social-links {
    display: flex;
    gap: 1.5rem;
}

.footer-social-link {
    color: inherit;
    transition: color var(--transition-speed);
}

.footer-social-link:hover {
    color: var(--primary-color);
}

.footer-social-icon {
    height: 1.5rem;
    width: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-link {
    color: inherit;
    transition: color var(--transition-speed);
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-link-separator {
    color: var(--medium-gray);
}

.footer-text {
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1023px) {
    .navbar-toggle {
        display: block;
    }

    .navbar-links {
        display: none;
    }

    .mobile-menu.active .navbar-links {
        display: flex;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        animation: none;
    }

    .hero-image-container {
        animation: none;
        margin-bottom: 2rem;
    }

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

    /* Adjust tabs for smaller screens */
    .tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 6rem 1rem;
    }

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

    .features-section,
    .use-cases-section,
    .waitlist-section,
    .testimonials-section,
    .contact-section {
        padding: 6rem 1rem;
    }

    .use-cases-tabs {
        gap: 1rem;
    }

    .tabs {
        gap: 0.5rem;
    }

    .tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .use-case-description {
        font-size: 1rem;
    }

    .use-case-image-wrapper {
        max-width: 100%;
    }

    .testimonial-photo {
        width: 5rem;
        height: 5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

/* Waitlist Section Styles */
.waitlist-section {
    padding: 8rem 2rem;
    background-color: #FFF8DC;
    text-align: center;
}

.waitlist-container {
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-title {
    font-family: var(--font-playfair);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.waitlist-description {
    font-size: 1.125rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.waitlist-input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.waitlist-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(252, 108, 114, 0.3);
}

.btn-waitlist {
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-color var(--transition-speed), transform 0.2s ease;
}

.btn-waitlist::after {
    content: '';
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transform: skewX(-45deg);
    transition: left 0.5s;
}

.btn-waitlist:hover::after {
    left: 100%;
}

.btn-waitlist:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.waitlist-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6B7280;
}

/* Countdown Timer Styles */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.countdown-segment {
    background-color: #F3F4F6;
    padding: 1rem;
    border-radius: 0.375rem;
    width: 4rem;
    text-align: center;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.countdown-label {
    font-size: 0.75rem;
    color: #6B7280;
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 8rem 2rem;
    background-color: var(--light-gray);
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-section .section-title {
    font-family: var(--font-playfair);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-item.active {
    opacity: 1;
}

.testimonial {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

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

.testimonial-photo {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem auto;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(46, 23, 35, 0.7);
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 9999px;
    transition: background-color var(--transition-speed);
}

.carousel-button:hover {
    background-color: rgba(46, 23, 35, 0.9);
}

.prev-button {
    left: 1rem;
}

.next-button {
    right: 1rem;
}

/* Contact Us Section Styles */
.contact-section {
    padding: 8rem 2rem;
    background-color: #FFF8DC;
    color: var(--secondary-color);
    text-align: center;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-section .section-title {
    font-family: var(--font-playfair);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
}

/* Footer Styles */
.footer {
    background-color: var(--background-color);
    color: var(--secondary-color);
    padding: 3rem 2rem;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    height: 2.5rem;
    width: auto;
}

.footer-logo-text {
    font-family: var(--font-playfair);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-social-links {
    display: flex;
    gap: 1.5rem;
}

.footer-social-link {
    color: inherit;
    transition: color var(--transition-speed);
}

.footer-social-link:hover {
    color: var(--primary-color);
}

.footer-social-icon {
    height: 1.5rem;
    width: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-link {
    color: inherit;
    transition: color var(--transition-speed);
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-link-separator {
    color: var(--medium-gray);
}

.footer-text {
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1023px) {
    .navbar-toggle {
        display: block;
    }

    .navbar-links {
        display: none;
    }

    .mobile-menu.active .navbar-links {
        display: flex;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        animation: none;
    }

    .hero-image-container {
        animation: none;
        margin-bottom: 2rem;
    }

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

    /* Adjust tabs for smaller screens */
    .tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 6rem 1rem;
    }

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

    .features-section,
    .use-cases-section,
    .waitlist-section,
    .testimonials-section,
    .contact-section {
        padding: 6rem 1rem;
    }

    .use-cases-tabs {
        gap: 1rem;
    }

    .tabs {
        gap: 0.5rem;
    }

    .tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .use-case-description {
        font-size: 1rem;
    }

    .use-case-image-wrapper {
        max-width: 100%;
    }

    .testimonial-photo {
        width: 5rem;
        height: 5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

/* Additional Enhancements */

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Button Focus Styles for Accessibility */
.btn:focus,
.btn-primary:focus,
.btn-secondary:focus,
.btn-waitlist:focus,
.btn-mobile-cta:focus,
.lang-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Enhancing Hover Effects */
.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-waitlist:hover,
.btn-mobile-cta:hover,
.nav-link:hover,
.tab-button:hover,
.mobile-nav-link:hover {
    transform: translateY(-2px);
}

.use-case-content:hover .use-case-description {
    background-color: #e6f7ff;
}

/* Transition for All Interactive Elements */
a,
button,
.tab-button,
.nav-link {
    transition: all var(--transition-speed) ease;
}
