:root {
    --primary-color: #D4A373;
    /* Soft Brown */
    --primary-hover: #C18F5C;
    --text-main: #4A2E15;
    /* Dark Brown */
    --text-muted: #7B5F44;
    --bg-main: #FDFBF7;
    /* Nude / Cream Background */
    --bg-light: #FAEDCD;
    --bg-accent: #E9EDC9;
    --white: #FFFFFF;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(74, 46, 21, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

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

.text-white-50 {
    color: rgba(255, 255, 255, 0.7);
}

.bg-light {
    background-color: var(--white);
}

.bg-accent {
    background-color: var(--text-main);
}

/* Using dark brown for contrast */

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.5);
}

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

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

.btn-full {
    width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
}

.section-title {
    font-size: 42px;
    margin-bottom: 10px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 50px;
}

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

.navbar.scrolled {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
}

.logo span {
    color: var(--primary-color);
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 15px;
}

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

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--text-main);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-main);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-link {
    font-size: 24px;
    font-family: var(--font-heading);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

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

.badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-hover);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

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

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

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

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-wrapper img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.floating-badge .stars i {
    color: #FFD700;
    font-size: 14px;
}

.floating-badge span {
    font-weight: 600;
    font-size: 14px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.about-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Org Structure updated for hierarchy */
.org-structure {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 20px;
    margin-top: 40px;
}

.org-tree-new {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.org-node {
    z-index: 2;
}

.node-box {
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-bottom: 4px solid var(--primary-color);
    min-width: 250px;
}

.node-box h5 {
    font-size: 16px;
    margin-bottom: 5px;
}

.node-box span {
    font-size: 13px;
    color: var(--text-muted);
}

.org-line-vertical {
    width: 2px;
    height: 30px;
    background-color: var(--primary-color);
}

.org-line-vertical-small {
    width: 2px;
    height: 20px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.branch-line {
    height: 30px;
}

.org-branches-container {
    width: 100%;
    max-width: 800px;
}

.org-branches-new {
    display: flex;
    justify-content: center;
    gap: 50px;
    position: relative;
    padding-top: 0;
}

.org-branches-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    right: 25%;
    height: 2px;
    background-color: var(--primary-color);
}

.org-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

@media (max-width: 768px) {
    .org-branches-new {
        flex-direction: column;
        gap: 0;
    }

    .org-branches-new::before {
        display: none;
    }

    .org-branch {
        margin-bottom: 20px;
    }

    /* Vertical line to connect them on mobile if stacked */
    .org-branch:not(:first-child)::before {
        content: '';
        display: block;
        width: 2px;
        height: 30px;
        background-color: var(--primary-color);
    }
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-main);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Menu Section */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.product-image {
    position: relative;
    padding-top: 100%;
    /* 1:1 Aspect ratio */
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF5A5F;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-badge.seasonal {
    background: var(--primary-color);
}

.product-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-action {
    margin-top: auto;
}

/* Facilities */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.facility {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--bg-main);
    padding: 30px;
    border-radius: 15px;
}

.facility i {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 5px;
}

.facility h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.facility p {
    font-size: 14px;
    color: var(--text-muted);
}

/* How to Order */
.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 60px;
    flex-wrap: wrap;
    /* make responsive */
}

.step-line {
    position: absolute;
    top: 95px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: var(--bg-light);
    z-index: 1;
}

.step {
    text-align: center;
    width: 18%;
    position: relative;
    z-index: 2;
}

.step-number {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--bg-light);
    line-height: 1;
    z-index: -1;
}

.step-circle {
    width: 70px;
    height: 70px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--primary-color);
    margin: 0 auto 20px;
}

.step h5 {
    font-size: 16px;
    margin-bottom: 5px;
}

.step p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Testimonials */
.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: var(--text-main);
    flex: 1 1 300px;
    max-width: 380px;
}

.testimonial-card .stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
}

.customer-info strong {
    display: block;
    font-size: 16px;
}

.customer-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info {
    padding: 60px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-list i {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-list span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.contact-list strong {
    font-size: 15px;
}

.contact-map {
    height: 100%;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: #2E1D0F;
    /* Darker brown */
    color: var(--bg-main);
    padding-top: 80px;
}

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

.footer-brand h3 {
    color: var(--bg-main);
    font-size: 32px;
    margin-bottom: 20px;
}

.footer-brand span {
    color: var(--primary-color);
    font-style: italic;
}

.footer-brand p {
    color: rgba(253, 251, 247, 0.7);
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    color: var(--bg-main);
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(253, 251, 247, 0.7);
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(253, 251, 247, 0.5);
    font-size: 14px;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #25D366;
    /* WhatsApp Green */
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    z-index: 998;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    font-size: 16px;
}

.sticky-mobile-cta i {
    margin-right: 8px;
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* Responsive Design */
@media (max-width: 1024px) {

    .menu-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

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

    .hero {
        padding-top: 100px;
        min-height: auto;
    }

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

    .hero-content p {
        margin: 0 auto 30px;
    }

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

    .trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
    }

    .floating-badge {
        bottom: 20px;
        left: 20px;
    }

    .about-grid,
    .contact-wrapper,
    .facilities-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

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

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

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding-top: 20px;
    }

    .step-line {
        display: none;
    }

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

    .step-number {
        top: 10px;
        left: 20px;
    }

    .org-branches {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .social-icons {
        justify-content: center;
    }

    .sticky-mobile-cta {
        display: block;
    }

    body {
        padding-bottom: 60px;
        /* Space for sticky nav */
    }
}