:root {
    --primary: #f59e0b;
    /* Vibrant Amber */
    --primary-light: #fbbf24;
    --secondary: #3C2A21;
    /* Rich Coffee Brown */
    --accent: #d97706;
    --background: #ffffff;
    --gray-bg: #f3f4f6;
    --text: #1f2937;
    --text-muted: #4b5563;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

section {
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    background: rgba(217, 119, 6, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accent-text {
    color: var(--primary);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(60, 42, 33, 0.98);
    /* Translucent Coffee */
    backdrop-filter: blur(15px);
    padding: 0.8rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.logo span {
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
}

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

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    font-size: 1.05rem;
    opacity: 0.9;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    opacity: 1;
}

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

.nav-cta {
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.nav-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

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

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 4px;
}

/* Hero */
.hero {
    height: 100vh;
    background: var(--secondary);
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: url('images/wood.png') center/cover no-repeat;
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--secondary), transparent);
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 200px;
    padding-bottom: 100px;
    /* Space for fixed navbar */
}

.hero-content {
    max-width: 700px;
}

.hero .badge {
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: inline-block;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    color: #e5e7eb;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.floating-logo {
    width: 100%;
    max-width: 450px;
    /* Removes the white square corners if any */
    border-radius: 50%;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

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

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

.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

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

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

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

.shadow-glow {
    box-shadow: 0 0 20px rgba(217, 119, 6, 0.4);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
}

.stat-item span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Value Props */
.value-props {
    margin-top: -80px;
    position: relative;
    z-index: 20;
    padding: 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.v-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f3f4f6;
}

.v-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.v-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.v-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* About */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lead {
    font-size: 1.25rem;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.feat span {
    font-weight: 500;
}

.about-image {
    position: relative;
}

.image-stack {
    position: relative;
    padding: 20px;
}

.main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.4);
}

.floating-card .number {
    display: block;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Services */
.gray-bg {
    background-color: var(--gray-bg);
}

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

.section-header h2 {
    font-size: 3rem;
}

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

.service-card {
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    background: white;
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(217, 119, 6, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
}

.service-card h3 {
    margin-bottom: 1rem;
}

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

.service-card:hover p {
    color: rgba(255, 255, 255, 0.7);
}

/* Franchise */
.franchise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.advantage-list {
    list-style: none;
    margin-top: 2rem;
}

.advantage-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

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

.investment-box {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
}

.inv-header {
    background: var(--secondary);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.inv-header h3 {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.inv-header .price {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.inv-header .price span {
    font-size: 1.25rem;
    opacity: 0.6;
}

.inv-body {
    padding: 3rem 2rem;
}

.inv-body ul {
    list-style: none;
}

.inv-body li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

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

.inv-footer {
    padding: 0 2rem 3rem;
    text-align: center;
}

.inv-footer p {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.full-width {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: white;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 4rem;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .logo {
    color: white;
    margin-bottom: 1.5rem;
}

.footer .logo img {
    height: 70px;
    width: auto;
}

.footer p {
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

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

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

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

.footer h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
}

.footer ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

.footer ul li a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.6;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

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

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

    .hamburger {
        display: flex;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 140px 0 80px;
    }

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

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

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

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

    .about-wrapper,
    .franchise-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }
}

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

    .hero p {
        font-size: 1.1rem;
    }

    .hero .badge {
        margin-bottom: 1rem;
    }

    .floating-logo {
        max-width: 300px;
    }

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

    .hamburger {
        display: flex;
        position: relative;
        right: 0;
        z-index: 1001;
    }

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

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 3rem;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        gap: 1.5rem;
    }

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

/* Navbar active class for mobile */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--secondary);
    /* Coffee Background */
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid var(--primary);
}

.nav-links.active a {
    color: #ffffff;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links.active a:last-child {
    border-bottom: none;
}

/* Quality Page Styles */
.small-hero {
    height: auto;
    min-height: 60vh;
    padding-top: 180px;
}

.quality-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quality-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.quality-item i {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(245, 158, 11, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.quality-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.quality-item p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0;
}

.active {
    color: var(--primary) !important;
}

@media (max-width: 768px) {
    .small-hero {
        height: 50vh;
    }
}

/* Franchise Banner Section */
.franchise-banner-section {
    padding: 60px 0;
    background: var(--gray-bg);
}

.banner-link {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.banner-link:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .franchise-banner-section {
        padding: 40px 0;
    }

    .banner-link {
        border-radius: 15px;
    }
}