/**
 * Kopi Menteng - Main Stylesheet
 * Modern Dark Coffee Theme
 */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    /* Colors - Coffee Theme */
    --primary: #C8A97E;
    --primary-light: #E5D4C0;
    --primary-dark: #8B7355;
    --secondary: #2C1810;
    --accent: #D4A574;

    /* Dark Theme */
    --bg-dark: #0D0D0D;
    --bg-darker: #080808;
    --bg-card: #1A1A1A;
    --bg-card-hover: #252525;

    /* Text Colors */
    --text-light: #FFFFFF;
    --text-muted: #A0A0A0;
    --text-dark: #333333;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #C8A97E 0%, #8B7355 100%);
    --gradient-dark: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
    --gradient-hero: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(44, 24, 16, 0.85) 50%, rgba(13, 13, 13, 0.95) 100%);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(200, 169, 126, 0.3);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* ========================================
   PRELOADER
   ======================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader img {
    width: 80px;
    height: 80px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-light);
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(200, 169, 126, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 45px;
    transition: var(--transition-normal);
}

.navbar.scrolled .nav-logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition-normal);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-kopi-menteng.png') center/cover no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.coffee-bean {
    position: absolute;
    width: 20px;
    height: 30px;
    background: var(--primary-dark);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.hero-label i {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(200, 169, 126, 0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--bg-dark);
}

.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    z-index: 3;
}

.about-badge span:first-child {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-dark);
}

.about-badge span:last-child {
    font-size: 0.75rem;
    color: var(--bg-dark);
    text-transform: uppercase;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ========================================
   MENU SECTION
   ======================================== */
.menu-section {
    padding: var(--section-padding);
    background: var(--bg-darker);
}

.menu-header {
    text-align: center;
    margin-bottom: 50px;
}

.menu-header .section-subtitle {
    margin: 0 auto;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.menu-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.menu-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.menu-card-image {
    position: relative;
    height: 200px;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.1);
}

.menu-card-image .menu-placeholder {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
}

.menu-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    background: var(--primary);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.menu-card-content {
    padding: 25px;
}

.menu-card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.menu-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
}

.menu-card-btn {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition-normal);
}

.menu-card-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

/* ========================================
   FRANCHISE SECTION
   ======================================== */
.franchise-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.franchise-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--bg-dark) 100%);
    opacity: 0.5;
}

.franchise-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.franchise-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.franchise-feature {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition-normal);
}

.franchise-feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.franchise-feature i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.franchise-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.franchise-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog-section {
    padding: var(--section-padding);
    background: var(--bg-darker);
}

.blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    position: relative;
    height: 220px;
    background: var(--gradient-dark);
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    background: var(--primary);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.blog-card-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: var(--transition-normal);
}

.blog-card-title:hover {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-read-more i {
    transition: var(--transition-normal);
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-form-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-light);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-darker);
    position: relative;
    padding-top: 80px;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    color: var(--bg-dark);
}

.footer-wave svg {
    width: 100%;
    height: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact ul li i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: whatsappPulse 2s infinite;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.6);
    }
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

/* ========================================
   PAGE BANNER
   ======================================== */
.page-banner {
    padding: 150px 0 80px;
    background: var(--gradient-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-kopi-menteng.png') center/cover no-repeat;
    opacity: 0.1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-muted);
}

/* ========================================
   BLOG PAGE
   ======================================== */
.blog-page {
    padding: var(--section-padding);
}

.blog-list-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 25px;
}

.widget-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--text-light);
}

.search-form button {
    padding: 0 20px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

.category-list li a:hover {
    color: var(--primary);
}

.category-list li a span {
    background: var(--glass-bg);
    padding: 2px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

/* Blog Detail */
.blog-detail {
    padding: var(--section-padding);
}

.blog-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-detail-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-detail-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.blog-detail-image {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.blog-detail-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-muted);
}

.blog-detail-body h2,
.blog-detail-body h3 {
    color: var(--text-light);
    margin: 35px 0 20px;
}

.blog-detail-body p {
    margin-bottom: 20px;
}

.blog-detail-body ul,
.blog-detail-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-detail-body li {
    margin-bottom: 10px;
}

.blog-detail-body a {
    color: var(--primary);
}

.blog-detail-body blockquote {
    background: var(--bg-card);
    border-left: 4px solid var(--primary);
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    padding: 10px 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    transition: var(--transition-normal);
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

/* ========================================
   ALERTS & NOTIFICATIONS
   ======================================== */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.alert-success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid #28a745;
    color: #28a745;
}

.alert-error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid #dc3545;
    color: #dc3545;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid #ffc107;
    color: #ffc107;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .franchise-features {
        grid-template-columns: 1fr 1fr;
    }

    .blog-list-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-darker);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-item {
        flex: 1;
        min-width: 100px;
    }

    .about-features,
    .franchise-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .whatsapp-float,
    .back-to-top {
        width: 50px;
        height: 50px;
        right: 20px;
    }

    .whatsapp-float {
        bottom: 20px;
    }

    .back-to-top {
        bottom: 80px;
    }
}

/* ========================================
   PRICING CARDS (Kemitraan)
   ======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
    border: 1px solid var(--glass-border);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
}

.pricing-label {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-name {
    font-size: 1.5rem;
    margin: 10px 0 20px;
    color: var(--text-light);
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
}

.pricing-price .currency {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* ========================================
   OUTLET CARDS (Kemitraan)
   ======================================== */
.outlet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.outlet-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    border: 1px solid var(--glass-border);
}

.outlet-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.outlet-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(200, 169, 126, 0.1) 0%, var(--bg-card) 50%);
}

.outlet-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: var(--radius-full);
}

.outlet-icon {
    width: 80px;
    height: 80px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary);
}

.outlet-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.outlet-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.outlet-specs {
    list-style: none;
    text-align: left;
}

.outlet-specs li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.outlet-specs li:last-child {
    border-bottom: none;
}

.outlet-specs li i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

/* ========================================
   PROCESS TIMELINE (Kemitraan)
   ======================================== */
.process-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 120px;
    max-width: 150px;
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -20px;
    width: 30px;
    height: 2px;
    background: var(--glass-border);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.step-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-step::after {
        display: none;
    }
}

@media (max-width: 768px) {

    .pricing-grid,
    .outlet-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        flex-direction: row;
        max-width: 100%;
        width: 100%;
        text-align: left;
        gap: 20px;
    }

    .step-content {
        flex: 1;
    }
}

/* =====================================================
   OUTLET IMAGE SLIDER & LIGHTBOX
===================================================== */
.outlet-slider {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slide img:hover {
    transform: scale(1.05);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    z-index: 10;
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary);
}

#lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

#lightbox-caption {
    color: white;
    margin-top: 15px;
    font-size: 1rem;
    text-align: center;
}

/* ========================================
   MOBILE-FIRST RESPONSIVE IMPROVEMENTS
   ======================================== */

/* === Base Mobile Styles (Default) === */
:root {
    --section-padding-mobile: 50px 0;
    --container-padding-mobile: 15px;
}

/* Improved Container Padding for Mobile */
.container {
    padding: 0 var(--container-padding-mobile);
}

/* === NAVBAR MOBILE IMPROVEMENTS === */
.navbar {
    padding: 12px 0;
}

.nav-logo img {
    height: 38px;
}

.nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    /* Dynamic viewport height for mobile browsers */
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    padding: 60px 30px;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.nav-menu.active {
    right: 0;
}

.nav-link {
    font-size: 1.1rem;
    padding: 12px 0;
    display: block;
    text-align: center;
}

/* Mobile Menu Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* === HERO SECTION MOBILE === */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 80px;
}

.hero-content {
    max-width: 100%;
    padding: 0 5px;
}

.hero-title {
    font-size: 1.8rem;
    line-height: 1.25;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.hero-label {
    font-size: 0.75rem;
    padding: 8px 15px;
    margin-bottom: 20px;
}

.hero-buttons {
    flex-direction: column;
    gap: 12px;
}

.hero-buttons .btn {
    width: 100%;
    padding: 14px 25px;
    font-size: 0.9rem;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
}

.stat-number {
    font-size: 1.8rem;
}

.stat-label {
    font-size: 0.75rem;
}

/* === SECTION HEADERS MOBILE === */
.section-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding-left: 40px;
}

.section-label::before {
    width: 30px;
}

.section-title {
    font-size: 1.6rem;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 0.95rem;
}

/* === ABOUT SECTION MOBILE === */
.about-section {
    padding: var(--section-padding-mobile);
}

.about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-images {
    max-width: 100%;
    margin: 0 auto;
}

.about-img-secondary {
    width: 120px;
    bottom: -15px;
    right: -10px;
}

.about-badge {
    width: 90px;
    height: 90px;
    top: -15px;
    left: -10px;
}

.about-badge span:first-child {
    font-size: 1.5rem;
}

.about-badge span:last-child {
    font-size: 0.65rem;
}

.about-features {
    grid-template-columns: 1fr;
    gap: 15px;
}

.feature-item {
    gap: 12px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1rem;
}

.feature-text h4 {
    font-size: 0.95rem;
}

.feature-text p {
    font-size: 0.8rem;
}

/* === MENU SECTION MOBILE === */
.menu-section {
    padding: var(--section-padding-mobile);
}

.menu-header {
    margin-bottom: 35px;
}

.menu-tabs {
    gap: 8px;
    margin-bottom: 35px;
    padding: 0 10px;
}

.menu-tab {
    padding: 10px 18px;
    font-size: 0.8rem;
}

.menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.menu-card-image {
    height: 180px;
}

.menu-card-content {
    padding: 20px;
}

.menu-card-title {
    font-size: 1.1rem;
}

.menu-card-desc {
    font-size: 0.85rem;
}

.menu-price {
    font-size: 1.15rem;
}

/* === FRANCHISE SECTION MOBILE === */
.franchise-section {
    padding: var(--section-padding-mobile);
}

.franchise-features {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 35px 0;
}

.franchise-feature {
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
}

.franchise-feature i {
    font-size: 1.8rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.franchise-feature h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.franchise-feature p {
    font-size: 0.85rem;
}

/* === BLOG SECTION MOBILE === */
.blog-section {
    padding: var(--section-padding-mobile);
}

.blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.blog-card-image {
    height: 180px;
}

.blog-card-content {
    padding: 20px;
}

.blog-card-title {
    font-size: 1.1rem;
}

.blog-meta {
    font-size: 0.8rem;
    gap: 10px;
}

.blog-excerpt {
    font-size: 0.85rem;
}

/* === CONTACT SECTION MOBILE === */
.contact-section {
    padding: var(--section-padding-mobile);
}

.contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-card {
    padding: 20px;
    gap: 15px;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.contact-card h4 {
    font-size: 0.95rem;
}

.contact-card p {
    font-size: 0.85rem;
}

.contact-form-wrapper {
    padding: 25px 20px;
}

.form-row {
    grid-template-columns: 1fr;
    gap: 0;
}

.form-control {
    padding: 14px 16px;
    font-size: 16px;
    /* Prevents zoom on iOS */
}

/* === FOOTER MOBILE === */
.footer {
    padding-top: 50px;
}

.footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-social {
    justify-content: center;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-contact ul li {
    justify-content: center;
    text-align: center;
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.8rem;
}

/* === PAGE BANNER MOBILE === */
.page-banner {
    padding: 120px 0 60px;
}

.page-title {
    font-size: 1.6rem;
}

.breadcrumb {
    font-size: 0.85rem;
}

/* === PRICING CARDS MOBILE (Kemitraan) === */
.pricing-grid {
    grid-template-columns: 1fr;
    gap: 25px;
}

.pricing-card {
    max-width: 100%;
}

.pricing-card.featured {
    transform: none;
}

.pricing-header {
    padding: 25px 20px;
}

.pricing-name {
    font-size: 1.3rem;
}

.pricing-price .amount {
    font-size: 2.5rem;
}

.pricing-body {
    padding: 25px 20px;
}

.pricing-features li {
    font-size: 0.9rem;
    padding: 10px 0;
}

/* === OUTLET CARDS MOBILE === */
.outlet-grid {
    grid-template-columns: 1fr;
    gap: 25px;
}

.outlet-card {
    padding: 25px 20px;
}

.outlet-slider {
    height: 180px;
}

.outlet-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
}

.outlet-card h3 {
    font-size: 1.2rem;
}

.outlet-desc {
    font-size: 0.85rem;
}

.outlet-specs li {
    font-size: 0.85rem;
}

/* === PROCESS TIMELINE MOBILE === */
.process-timeline {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.process-step {
    flex-direction: row;
    max-width: 100%;
    text-align: left;
    gap: 20px;
    padding: 15px 0;
    border-left: 2px solid var(--glass-border);
    margin-left: 25px;
    padding-left: 25px;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
}

.process-step::after {
    display: none;
}

.step-number {
    width: 45px;
    height: 45px;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 0.9rem;
}

.step-content p {
    font-size: 0.75rem;
}

/* === BUTTONS MOBILE === */
.btn {
    padding: 14px 28px;
    font-size: 0.9rem;
    min-height: 48px;
    /* Touch target compliance */
}

.btn-glass {
    padding: 12px 24px;
}

/* === BLOG PAGE MOBILE === */
.blog-page {
    padding: var(--section-padding-mobile);
}

.blog-list-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.blog-sidebar {
    position: static;
}

.sidebar-widget {
    padding: 20px;
}

/* === ALERTS MOBILE === */
.alert {
    padding: 12px 15px;
    font-size: 0.9rem;
}

/* === FLOATING BUTTONS MOBILE === */
.whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 15px;
    font-size: 1.6rem;
}

.back-to-top {
    width: 45px;
    height: 45px;
    bottom: 85px;
    right: 15px;
    font-size: 1rem;
}

/* === LIGHTBOX MOBILE === */
.lightbox-close {
    top: 15px;
    right: 15px;
    font-size: 32px;
}

#lightbox-img {
    max-width: 95%;
    max-height: 70vh;
}

/* ========================================
   TABLET BREAKPOINT (min-width: 576px)
   ======================================== */
@media (min-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-buttons .btn {
        width: auto;
    }

    .stat-number {
        font-size: 2rem;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .franchise-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

    .footer-brand {
        align-items: flex-start;
    }

    .footer-contact ul li {
        justify-content: flex-start;
        text-align: left;
    }
}

/* ========================================
   TABLET LANDSCAPE (min-width: 768px)
   ======================================== */
@media (min-width: 768px) {
    :root {
        --section-padding-mobile: 70px 0;
        --container-padding-mobile: 20px;
    }

    .navbar {
        padding: 18px 0;
    }

    .nav-logo img {
        height: 42px;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        flex-direction: row;
        gap: 35px;
        padding: 0;
        box-shadow: none;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 5px 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 50px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .outlet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-banner {
        padding: 140px 0 70px;
    }

    .page-title {
        font-size: 2rem;
    }

    .process-timeline {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-step {
        flex-direction: column;
        max-width: 130px;
        text-align: center;
        border-left: none;
        margin-left: 0;
        padding-left: 0;
        padding: 0;
    }

    .process-step::before {
        display: none;
    }

    .process-step::after {
        display: block;
    }

    .franchise-feature {
        flex-direction: column;
        text-align: center;
    }

    .franchise-feature i {
        margin-bottom: 15px;
    }
}

/* ========================================
   DESKTOP BREAKPOINT (min-width: 1024px)
   ======================================== */
@media (min-width: 1024px) {
    :root {
        --section-padding-mobile: 100px 0;
    }

    .container {
        padding: 0 20px;
    }

    .navbar.scrolled {
        padding: 12px 0;
    }

    .nav-logo img {
        height: 45px;
    }

    .navbar.scrolled .nav-logo img {
        height: 40px;
    }

    .nav-menu {
        gap: 40px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero-stats {
        gap: 50px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .about-grid {
        gap: 80px;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .franchise-features {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .pricing-card.featured {
        transform: scale(1.02);
    }

    .outlet-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .blog-list-grid {
        grid-template-columns: 1fr 350px;
    }

    .blog-sidebar {
        position: sticky;
        top: 100px;
    }
}

/* ========================================
   LARGE DESKTOP (min-width: 1200px)
   ======================================== */
@media (min-width: 1200px) {
    .hero-content {
        max-width: 700px;
    }

    .about-img-secondary {
        width: 200px;
        bottom: -30px;
        right: -30px;
    }

    .about-badge {
        width: 120px;
        height: 120px;
        top: -20px;
        left: -20px;
    }

    .about-badge span:first-child {
        font-size: 2rem;
    }

    .about-badge span:last-child {
        font-size: 0.75rem;
    }
}

/* ========================================
   TOUCH DEVICE OPTIMIZATIONS
   ======================================== */
@media (hover: none) and (pointer: coarse) {

    /* Disable hover effects on touch devices */
    .menu-card:hover,
    .blog-card:hover,
    .pricing-card:hover,
    .outlet-card:hover,
    .franchise-feature:hover,
    .contact-card:hover {
        transform: none;
    }

    .menu-card:hover .menu-card-image img,
    .blog-card:hover .blog-card-image img {
        transform: none;
    }

    /* Add active states instead */
    .menu-card:active,
    .blog-card:active,
    .pricing-card:active,
    .outlet-card:active {
        transform: scale(0.98);
    }

    .btn:active {
        transform: scale(0.95);
    }

    /* Better tap highlight */
    a,
    button {
        -webkit-tap-highlight-color: rgba(200, 169, 126, 0.2);
    }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-particles,
    .coffee-bean {
        display: none;
    }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ========================================
   LANDSCAPE PHONE FIXES
   ======================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .hero-stats {
        margin-top: 20px;
        padding-top: 20px;
    }

    .nav-menu {
        padding: 30px;
        gap: 15px;
        overflow-y: auto;
    }

    .nav-link {
        padding: 8px 0;
    }
}