/*
 * THE PALETA BAR - Clean Stylesheet
 * ==================================
 * Consolidated from 50+ WordPress/Elementor CSS files
 *
 * Sections:
 * 1. CSS Variables
 * 2. Reset & Base
 * 3. Typography
 * 4. Layout
 * 5. Header & Navigation
 * 6. Hero Slider
 * 7. Content Sections
 * 8. Buttons
 * 9. Footer
 * 10. Animations
 * 11. Responsive
 */

/* ===========================================
   1. CSS VARIABLES
   =========================================== */
:root {
    /* Brand Colors */
    --color-primary: #C41115;
    --color-primary-dark: #9B0E11;
    --color-accent: #fbbc34;
    --color-burgundy: #BE141F;
    --color-dark-brown: #380400;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-dark: #1a1a1a;
    --color-gray-light: #f4f5f8;
    --color-gray: #777777;

    /* Fonts (3 only: Anton, Oswald, Roboto) */
    --font-heading: "Anton", sans-serif;
    --font-accent: "Oswald", sans-serif;
    --font-body: "Roboto", "Lato", sans-serif;

    /* Spacing */
    --container-max: 1140px;
    --section-padding: 80px;

    /* Transitions */
    --transition: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Header */
    --header-height: 100px;
    --header-height-mobile: 70px;
}

/* ===========================================
   2. RESET & BASE
   =========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-gray);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
    list-style: none;
}

/* ===========================================
   3. TYPOGRAPHY
   =========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-dark);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title--green {
    color: var(--color-primary);
}

.section-title--white {
    color: var(--color-white);
}

.section-title--red {
    color: var(--color-primary);
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ===========================================
   4. LAYOUT
   =========================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

/* ===========================================
   5. HEADER & NAVIGATION
   =========================================== */

/* Desktop Header */
.site-header {
    background-color: var(--color-gray-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.site-header.sticky-header {
    background-color: rgba(244, 245, 248, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Body padding for fixed header */
body {
    padding-top: 0;
}

@media (min-width: 1025px) {
    body {
        padding-top: var(--header-height);
    }
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    padding: 15px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    max-width: 180px;
    height: auto;
    transition: var(--transition-smooth);
}

.sticky-header .site-logo img {
    transform: scale(0.9);
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 8px;
    margin: 0 30px;
}

.nav-menu a {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-dark);
    padding: 10px 14px;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 70%;
}

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

/* Order Button - Right Aligned */
.btn-order {
    flex-shrink: 0;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dark);
    background: var(--color-accent);
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(251, 188, 52, 0.25);
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 188, 52, 0.3);
    background: #f0a500;
}

/* Mobile Header */
.mobile-header {
    display: none;
    background-color: var(--color-white);
    padding: 12px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-header .header-container {
    width: 100%;
    min-height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    flex-shrink: 0;
}

.mobile-logo img {
    max-width: 140px;
    height: auto;
}

@media (max-width: 1024px) {
    body {
        padding-top: 75px;
    }
}

/* Large screens - bigger nav */
@media (min-width: 1200px) {
    .nav-menu a {
        font-size: 15px;
        padding: 12px 18px;
    }

    .btn-order {
        font-size: 15px;
        padding: 15px 32px;
    }
}

/* Hamburger Button */
.hamburger-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--color-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.hamburger-btn:hover {
    transform: scale(1.05);
}

.hamburger-btn i {
    color: var(--color-white);
    font-size: 22px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: var(--color-white);
    z-index: 9999;
    transition: var(--transition-smooth);
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    padding: 20px;
    background: var(--color-primary);
    text-align: center;
}

.mobile-menu-header img {
    max-width: 180px;
    margin: 0 auto;
}

.mobile-nav {
    padding: 20px 0;
}

.mobile-nav a {
    display: block;
    padding: 15px 25px;
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    border-bottom: 1px solid rgba(196, 17, 21, 0.1);
    transition: var(--transition);
}

.mobile-nav a:hover {
    background: rgba(196, 17, 21, 0.06);
    padding-left: 35px;
    color: var(--color-primary);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* ===========================================
   6. HERO SLIDER - Fresh & Fun Paleta Style
   =========================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slider .swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: kenBurns 12s ease-in-out infinite alternate;
}

.hero-slide-1 .hero-slide-bg {
    background-image: url('../wp-content/uploads/2023/08/4x_hMCIk.jpeg');
}

.hero-slide-2 .hero-slide-bg {
    background-image: url('../wp-content/uploads/2023/08/IMG_4686.jpg');
}

.hero-slide-3 .hero-slide-bg {
    background-image: url('../wp-content/uploads/2023/08/Photo-Apr-09-4-44-08-PM.jpg');
}

.hero-slide-4 .hero-slide-bg {
    background-image: url('../wp-content/uploads/2023/08/Photo-Apr-09-4-45-10-PM.jpg');
}

/* Simple Dark Overlay */
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-slide-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

/* Hero Heading */
.hero-slide-heading {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 500;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease both;
    letter-spacing: 3px;
}

/* Hero Button */
.hero-slide-btn {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-dark);
    background: var(--color-accent);
    padding: 18px 45px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(251, 188, 52, 0.3);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(251, 188, 52, 0.4);
    background: #f0a500;
}

.hero-slide-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(251, 188, 52, 0.3);
}

/* Slider Navigation - Fun Style */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
    font-size: 20px;
    color: var(--color-white);
    font-weight: bold;
}


/* ===========================================
   7. CONTENT SECTIONS
   =========================================== */

/* Explore Menu Section */
.section-menu {
    background: var(--color-white);
    padding: 80px 0;
    text-align: center;
}

.section-menu .section-title {
    color: var(--color-primary);
}

.section-menu .section-subtitle {
    color: var(--color-dark);
    margin-bottom: 25px;
}

/* Find Your Spot Section */
.section-location {
    background: var(--color-burgundy);
    min-height: 500px;
    display: flex;
    align-items: stretch;
}

.section-location-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-image: url('../wp-content/uploads/2023/07/d98f6d_f930fca962634e4f8b445bb18c70234amv2.webp');
}

.section-location-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
}

.section-location .section-title {
    color: var(--color-white);
    font-size: 50px;
}

.section-location .section-subtitle {
    color: var(--color-white);
    margin-bottom: 25px;
}

/* Own A Paleta Bar Section */
.section-franchise {
    min-height: 100vh;
    background-image: url('../wp-content/uploads/2023/07/WhatsApp-Image-2023-07-31-at-2.13.35-PM.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-franchise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.section-franchise-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px 20px;
}

.section-franchise .section-title {
    color: var(--color-white);
}

.section-franchise .section-subtitle {
    color: var(--color-white);
    margin-bottom: 25px;
}

/* Quote Section */
.section-quote {
    background: var(--color-white);
    padding: 50px 20px;
    text-align: center;
}

.section-quote .section-title {
    color: var(--color-primary);
    font-size: 50px;
    max-width: 900px;
    margin: 0 auto;
}

/* ===========================================
   8. BUTTONS
   =========================================== */
.btn {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 0;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

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

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

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

.btn-yellow {
    color: var(--color-dark);
    background: var(--color-accent);
}

.btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 188, 52, 0.4);
}

.btn-rounded {
    border-radius: 50px;
}

/* ===========================================
   9. FOOTER
   =========================================== */
.site-footer {
    background: var(--color-white);
    border-top: 1px solid #eee;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 0;
}

.footer-col h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-address {
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.6;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 10px;
}

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

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 10px;
}

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

/* Footer Form */
.footer-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--color-burgundy);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-form button {
    width: 100%;
    padding: 12px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    font-family: var(--font-accent);
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.footer-form button:hover {
    background: var(--color-primary-dark);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: var(--color-gray);
}

/* Sticky Bottom Bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-burgundy);
    padding: 12px 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Add padding to footer for sticky bar */
.site-footer {
    padding-bottom: 60px;
}

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

.sticky-bar-social a {
    color: var(--color-white);
    font-size: 20px;
}

.sticky-bar-social a:hover {
    color: var(--color-accent);
}

.sticky-bar-links {
    display: flex;
    gap: 25px;
}

.sticky-bar-links a {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
}

.sticky-bar-links a:hover {
    color: var(--color-accent);
}

/* ===========================================
   10. ANIMATIONS
   =========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes kenBurns {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease forwards;
}

/* ===========================================
   LOCATION PAGE STYLES
   =========================================== */

/* Location Hero Banner */
/* Location Hero - With Store Image Background */
.location-hero {
    min-height: 70vh;
    padding: 180px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.location-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.location-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.location-hero h1 {
    font-family: var(--font-heading);
    font-size: 60px;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
    animation: fadeInUp 0.6s ease both;
}

.location-hero-info {
    color: var(--color-white);
    font-size: 18px;
    font-family: var(--font-accent);
}

.location-hero-info p {
    margin: 12px 0;
}

.location-hero-info a {
    color: var(--color-white);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.location-hero-info a i {
    color: var(--color-accent);
    font-size: 20px;
}

.location-hero-info a:hover {
    color: var(--color-accent);
}

/* Location Content Grid */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.location-main {
    padding: 50px;
    background: var(--color-white);
}

.location-sidebar {
    background: var(--color-gray-light);
    padding: 50px;
}

/* Location Card */
.location-card {
    background: var(--color-white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.location-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.location-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 2px;
}

/* Business Hours */
.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hours-grid .day {
    font-weight: 600;
    color: var(--color-dark);
}

.hours-grid .time {
    color: var(--color-gray);
    text-align: right;
}

/* Order Online Buttons */
.order-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    border-radius: 15px;
    background: var(--color-white);
    border: 2px solid var(--color-gray-light);
    transition: var(--transition);
    flex: 1;
    min-width: 150px;
}

.order-btn img {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.order-btn:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(196, 17, 21, 0.25);
}

/* Location Map */
.location-map {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 30px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Quick Links */
.quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--color-white);
    border-radius: 12px;
    color: var(--color-dark);
    font-weight: 600;
    transition: var(--transition);
}

.quick-link i {
    font-size: 20px;
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 17, 21, 0.1);
    border-radius: 50%;
}

.quick-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.quick-link:hover i {
    background: rgba(255,255,255,0.2);
    color: var(--color-white);
}

/* Location Forms */
.location-form {
    background: var(--color-white);
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
}

.location-form h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 25px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--color-gray-light);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(196, 17, 21, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

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

.form-submit .btn {
    min-width: 200px;
}

/* ===========================================
   11. PERFORMANCE & MOBILE OPTIMIZATION
   =========================================== */

/* Touch optimization */
@media (hover: none) and (pointer: coarse) {
    /* Larger tap targets for touch devices */
    .btn, button, a {
        min-height: 44px;
    }

    /* Remove hover effects that don't work on touch */
    .nav-menu a:hover::after {
        width: 0;
    }

    .nav-menu a.active::after {
        width: 70%;
    }
}

/* GPU acceleration for animations */
.hero-slide-bg,
.hero-slide-content,
.mobile-menu,
.site-header {
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Smooth scrolling for all devices */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Prevent content shift on page load */
img {
    content-visibility: auto;
}

/* ===========================================
   12. RESPONSIVE
   =========================================== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 60px;
    }

    .site-header {
        display: none;
    }

    .mobile-header {
        display: block;
    }

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

    .hero-slide-heading {
        font-size: 42px;
    }

    .section-location {
        flex-direction: column;
        min-height: auto;
    }

    .section-location-image {
        height: 300px;
    }

    .section-location .section-title {
        font-size: 42px;
    }

    .section-franchise {
        min-height: 500px;
        background-attachment: scroll;
    }

    .section-quote .section-title {
        font-size: 42px;
    }

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

    /* Location Page Tablet */
    .location-content {
        grid-template-columns: 1fr;
    }

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

    .location-main,
    .location-sidebar {
        padding: 30px;
    }

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

/* Mobile */
@media (max-width: 767px) {
    :root {
        --section-padding: 40px;
        --header-height: 70px;
    }

    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 35px;
    }

    .hero-slider {
        height: 70vh;
        min-height: 400px;
    }

    .hero-slide-heading {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .hero-slide-btn {
        padding: 14px 30px;
        font-size: 14px;
    }

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .hero-slider .swiper-button-prev::after,
    .hero-slider .swiper-button-next::after {
        font-size: 14px;
    }

    .section-location-image {
        height: 250px;
    }

    .section-location .section-title {
        font-size: 35px;
    }

    .section-location-content {
        padding: 40px 20px;
    }

    .section-franchise {
        min-height: 400px;
    }

    .section-franchise .section-title {
        font-size: 30px;
    }

    .section-quote .section-title {
        font-size: 35px;
        padding: 0 10px;
    }

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

    .footer-logo img {
        margin: 0 auto 15px;
    }

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

    .sticky-bar {
        justify-content: center;
    }

    .sticky-bar-social,
    .sticky-bar-links {
        display: none;
    }

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

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Location Page Mobile */
    .location-hero {
        min-height: 350px;
        padding: 100px 15px 50px;
    }

    .location-hero h1 {
        font-size: 45px;
        margin-bottom: 15px;
    }

    .location-hero-info {
        font-size: 14px;
    }

    .location-hero-info a i {
        font-size: 16px;
    }

    .location-main,
    .location-sidebar {
        padding: 20px;
    }

    .location-card {
        padding: 20px;
    }

    .location-card h3 {
        font-size: 22px;
    }

    .order-buttons {
        flex-direction: column;
    }

    .order-btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .location-form {
        padding: 25px;
    }

    .location-form h3 {
        font-size: 26px;
    }
}

/* Hide elements - Desktop/Mobile visibility */
.desktop-only {
    display: flex;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }
}

/* Sticky bar specific - ensure proper layout */
.sticky-bar.desktop-only {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-bar.mobile-only {
    display: none;
    justify-content: center;
}

@media (max-width: 1024px) {
    .sticky-bar.desktop-only {
        display: none !important;
    }

    .sticky-bar.mobile-only {
        display: flex !important;
        justify-content: center;
        padding: 12px 20px;
    }

    .sticky-bar.mobile-only .btn {
        width: 100%;
        text-align: center;
    }
}

/* Extra Small Mobile (phones under 480px) */
@media (max-width: 480px) {
    :root {
        --section-padding: 30px;
    }

    .section-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .hero-slide-heading {
        font-size: 26px;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .hero-slide-btn {
        padding: 12px 25px;
        font-size: 12px;
    }

    .hero-slider {
        height: 60vh;
        min-height: 350px;
    }

    .section-location .section-title,
    .section-quote .section-title {
        font-size: 26px;
    }

    .section-franchise .section-title {
        font-size: 24px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .mobile-logo img {
        max-width: 120px;
    }

    .hamburger-btn {
        width: 44px;
        height: 44px;
    }

    .hamburger-btn i {
        font-size: 18px;
    }

    .mobile-nav a {
        padding: 12px 20px;
        font-size: 16px;
    }

    /* Footer mobile optimization */
    .footer-main {
        gap: 30px;
    }

    .footer-col h3 {
        font-size: 14px;
    }

    .footer-logo img {
        max-width: 140px;
    }

    /* Location pages */
    .location-hero {
        min-height: 280px;
        padding: 90px 15px 40px;
    }

    .location-hero h1 {
        font-size: 32px;
    }

    .location-card h3 {
        font-size: 20px;
    }

    .location-form h3 {
        font-size: 22px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
}

/* Landscape phone optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider {
        height: 100vh;
        min-height: 300px;
    }

    .hero-slide-heading {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-slide-btn {
        padding: 10px 25px;
    }

    .location-hero {
        min-height: auto;
        padding: 80px 20px 40px;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-slide-bg {
        animation: none;
    }
}

/* Print styles */
@media print {
    .site-header,
    .mobile-header,
    .sticky-bar,
    .hero-slider,
    .mobile-menu,
    .mobile-overlay {
        display: none !important;
    }

    body {
        padding-top: 0 !important;
    }

    .site-footer {
        padding-bottom: 0;
    }
}
