:root {
    --primary: #00bfa5;
    --primary-dark: #00897b;
    --secondary: #101828;
    --text-main: #1d2939;
    --text-muted: #667085;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --border: #eaecf0;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--secondary);
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 191, 165, 0.2);
    z-index: -1;
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(0, 191, 165, 0.39);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 165, 0.23);
}

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

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

.btn-block {
    display: block;
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    height: 40px;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, rgba(0, 191, 165, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(16, 24, 40, 0.02), transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(0, 191, 165, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.hero-truts {
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.hero-truts p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.trust-icons {
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--secondary);
}

.trust-icons i {
    font-size: 1.8rem;
    transition: var(--transition);
    opacity: 0.7;
}

.trust-icons i:hover {
    color: var(--primary);
    opacity: 1;
    transform: scale(1.2);
}

.trust-text {
    font-size: 0.9rem;
    font-weight: 600;
    border-left: 1px solid var(--border);
    padding-left: 20px;
    color: var(--text-muted);
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 30px 60px -12px rgba(16, 24, 40, 0.25);
    overflow: visible;
    background: var(--white);
}

.image-wrapper img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.floating-card {
    position: absolute;
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: float 4s ease-in-out infinite;
    z-index: 5;
}

.card-1 {
    top: 55%;
    left: -18%;
    color: var(--primary);
}

.card-2 {
    top: 75%;
    left: -14%;
    color: var(--secondary);
}

@keyframes float {

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

    50% {
        transform: translateY(-15px);
    }
}

/* Marquee */
.marquee {
    background: var(--secondary);
    padding: 25px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.6;
    padding: 0 50px;
    text-transform: uppercase;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Features */
.features {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 191, 165, 0.03), transparent 30%);
    pointer-events: none;
}

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

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

.feature-card {
    background: var(--white);
    padding: 45px 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(16, 24, 40, 0.15);
    border-color: transparent;
}

.feature-card:hover::after {
    height: 100%;
}

.icon-box {
    width: 64px;
    height: 64px;
    background: rgba(0, 191, 165, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.6rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: var(--primary);
    color: var(--white);
    transform: rotate(10deg);
}

/* Solutions */
.solutions {
    padding: 100px 0;
}

.solutions-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.tab-btn {
    text-align: left;
    padding: 15px 25px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.tab-btn:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

.solutions-content {
    background: var(--bg-light);
    border-radius: 30px;
    padding: 50px;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.check-list {
    list-style: none;
    margin-top: 25px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--secondary);
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    background: rgba(0, 191, 165, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
}

.tab-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.hand-image {
    width: 100%;
    display: block;
    border-radius: 20px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Kitchen Section */
.kitchen-section {
    padding: 120px 0;
    background: var(--white);
}

.kitchen-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.kitchen-image .image-wrapper {
    box-shadow: 0 40px 80px -15px rgba(16, 24, 40, 0.3);
}

.card-kds {
    top: 10%;
    right: -10%;
    color: #ff9800;
}

.kitchen-content h2 {
    margin-bottom: 25px;
}

.kitchen-content p {
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .kitchen-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .kitchen-grid .check-list {
        display: inline-block;
        text-align: left;
    }

    .kitchen-image {
        order: 2;
    }

    .kitchen-content {
        order: 1;
    }

    .card-kds {
        right: 0;
    }
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--secondary);
    color: var(--white);
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.contact-mockup {
    margin-top: 50px;
}

.contact-mockup img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    color: var(--secondary);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 191, 165, 0.1);
}

.form-footer {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 20px;
}

/* Footer */
footer {
    padding: 100px 0 40px;
    background: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo p {
    max-width: 300px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-links h4 {
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .solutions-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .tab-btn {
        white-space: nowrap;
    }

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

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

    .hero-btns,
    .trust-icons {
        justify-content: center;
    }

    .trust-icons {
        flex-wrap: wrap;
    }

    .card-1 {
        left: 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .mobile-menu {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        padding: 100px 40px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 25px;
    }

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

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-links .btn {
        margin-top: 20px;
        text-align: center;
    }

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

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

    .solutions-content {
        padding: 30px;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 2000;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: var(--transition);
    opacity: 0;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #128c7e;
    padding-right: 25px;
}

.whatsapp-float:hover span {
    max-width: 200px;
    opacity: 1;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px;
    }

    .whatsapp-float span {
        display: none;
    }
}