/* 
=======================
BOTTINI FUEL CLONE - PRODUCTION CSS
Created by Pixel Perfect Designs
=======================

TABLE OF CONTENTS:
==================
1. CSS Variables & Configuration
2. Reset & Base Styles
3. Utility Classes
4. Layout Components
   - Top Utility Bar
   - Logo Section
   - Navigation
5. Page Sections
   - Hero Section
   - CTA Section
   - Services Section
   - Fuel Sections
   - Mobile App Section
6. Footer
7. Responsive Design
8. Performance Optimizations

CODING STANDARDS:
=================
- Use CSS custom properties for consistency
- Follow BEM methodology where applicable
- Mobile-first responsive design
- Semantic class naming
- Performance-optimized selectors
- Cross-browser compatibility
- Accessibility considerations

BUTTON STYLE GUIDE:
==================
1. CTA SKEWED BUTTON (.btn-cta-skewed):
   - Orange background (#f99e2b)
   - Black text (#000000)
   - Lato font: weight 700, size 16px, line-height 24px
   - Skewed transformation (skewX(-15deg))
   - Text span counter-transformed (skewX(15deg))
   - Dimensions: 207px width × 40px height
   - Usage: Primary call-to-action buttons
   - HTML: <a href="#" class="btn-cta-skewed"><span>BUTTON TEXT</span></a>

2. SECONDARY BUTTON (.btn-secondary):
   - Transparent background with red border
   - Red text (#b8202f)
   - Standard rectangular shape
   - Usage: Secondary actions

3. PRIMARY CTA BUTTON (.btn-cta):
   - Used in hero CTA section
   - Similar styling to skewed button but for main CTA

COLOR PALETTE:
==============
Primary Red: #b8202f (Brand primary)
Dark Red: #a31729 (Hover states)
Orange: #f99e2b (CTAs and accents)
White: #ffffff
Light Gray: #f5f5f5 (Backgrounds)
Medium Gray: #666666 (Text secondary)
Dark Gray: #333333 (Text primary)
Black: #000000 (Text contrast)
Blue: #0066cc (Links)

TYPOGRAPHY:
===========
Primary Font: 'Lato', sans-serif
Weights: 300, 400, 700, 800
Fallbacks: system fonts for performance
*/

/* ========================================
   1. CSS VARIABLES & CONFIGURATION
   ======================================== */

:root {
    /* === BRAND COLORS === */
    /* Primary brand colors - exact match to Bottini Fuel */
    --primary-red: #b8202f;    /* Main brand color */
    --dark-red: #a31729;       /* Hover states */
    --orange: #f99e2b;         /* CTAs and accents */
    
    /* === NEUTRAL COLORS === */
    --white: #ffffff;
    --light-gray: #f5f5f5;     /* Section backgrounds */
    --medium-gray: #666666;    /* Secondary text */
    --dark-gray: #333333;      /* Primary text */
    --black: #000000;          /* High contrast text */
    
    /* === FUNCTIONAL COLORS === */
    --blue: #0066cc;           /* Links */
    --yellow: #ffe67f;         /* App section background */
    --gold: #ffd700;           /* Star ratings */
    
    /* === TYPOGRAPHY === */
    --font-primary: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    --font-fallback: 'Helvetica Neue', Arial, sans-serif;
    
    /* === LAYOUT === */
    --container-max-width: 1200px;
    --section-padding: 60px 0;
    
    /* === TRANSITIONS === */
    /* Note: Animations removed to match original Bottini page */
    --transition-none: none;
    
    /* === Z-INDEX SCALE === */
    --z-dropdown: 1000;
    --z-overlay: 2;
    --z-background: -1;
    
    /* === SHADOWS === */
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-text: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ========================================
   2. RESET & BASE STYLES
   ======================================== */

/* CSS Reset - Normalize browser defaults */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base body styles */
body {
    font-family: var(--font-primary);
    line-height: 1.4;
    color: var(--dark-gray);
    background-color: var(--white);
    padding-top: 30px; /* Offset for fixed header if needed */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Improve text rendering */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 0.5em;
}

/* Link styles */
a {
    color: inherit;
    text-decoration: none;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* List styles */
ul, ol {
    list-style: none;
}

/* Form elements */
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ========================================
   3. UTILITY CLASSES
   ======================================== */

/* Container utility - consistent max-width and centering */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   4. REUSABLE BUTTON COMPONENTS
   ======================================== */

/* Primary CTA Skewed Button - Orange Style */
.btn-cta-skewed {
    /* Layout */
    display: flex;
    width: 207px;
    height: 40px;
    align-items: center;
    justify-content: center;
    
    /* Visual */
    background: var(--orange);
    color: var(--black);
    border: none;
    border-radius: 0;
    transform: skewX(-15deg);
    
    /* Typography */
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    
    /* Spacing */
    padding: 0;
    margin-top: 20px;
    
    /* Interaction */
    cursor: pointer;
}

/* Counter-transform the text to keep it straight */
.btn-cta-skewed span {
    transform: skewX(15deg);
    display: block;
}

/* Hover state - no animations per original design */
.btn-cta-skewed:hover {
    background: #e08a1f; /* Slightly darker orange */
}

/* Secondary Button Style */
.btn-secondary {
    background-color: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 12px 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
}

/* Hero Button Style */
.btn-hero {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
}

.btn-hero:hover {
    background-color: var(--dark-red);
}

/* ========================================
   5. LAYOUT COMPONENTS
   ======================================== */
/* === TOP UTILITY BAR === */
/* Red header bar with navigation links and diagonal dividers */
.top-bar {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 6px 0;
    font-size: 14px;
    font-family: var(--font-primary);
    height: 40px;
}

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

/* Hide separate contact info since phone is part of utility links */
.contact-info {
    display: none;
}

.utility-links {
    display: flex;
    gap: 0;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
}

.utility-links a {
    /* Layout */
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    
    /* Typography */
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
    
    /* Spacing */
    padding: 4px 20px 8px 20px;
}

/* Diagonal white dividers between utility links */
.utility-links a::before,
.utility-links a::after {
    content: "";
    position: absolute;
    top: -6px;
    bottom: -6px;
    width: 3.5px;
    background-color: var(--white);
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 1;
}

.utility-links a::before {
    left: -1px;
}

.utility-links a::after {
    right: -1px;
}

/* Hover state - minimal change per original design */
.utility-links a:hover {
    text-decoration: none;
}

/* === LOGO SECTION === */
/* Centered logo with specific height */
.logo-section {
    background-color: var(--white);
    padding: 20px 0 0 0;
    text-align: center;
}

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

.logo {
    width: auto;
    height: 142px; /* Specific height per design */
}

/* === MAIN NAVIGATION === */
/* Horizontal navigation with dropdown menus */
.main-nav {
    background-color: var(--white);
    padding: 0;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10px;
    margin: 0;
    position: relative;
}

.nav-item {
    position: relative; /* Required for dropdown positioning */
}

/* Main navigation links */
.nav-menu a {
    /* Layout */
    display: block;
    padding: 5px 8px;
    
    /* Typography */
    text-decoration: none;
    color: var(--black);
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    line-height: 40px;
    text-transform: none;
    white-space: nowrap;
}

/* Main nav hover - no color change per user request */
.nav-menu > .nav-item > a:hover {
    /* No color change on main nav hover */
}

/* === DROPDOWN MENUS === */
/* Red dropdown menus with hover effects */
.dropdown-menu {
    /* Positioning */
    position: absolute;
    top: 100%;
    left: 0;
    z-index: var(--z-dropdown);
    
    /* Layout */
    min-width: 250px;
    list-style: none;
    margin: 0;
    padding: 0;
    
    /* Visual */
    background-color: var(--primary-red);
    box-shadow: var(--shadow-light);
    
    /* Initial hidden state */
    opacity: 0;
    visibility: hidden;
}

/* Show dropdown on parent hover */
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* Dropdown list items */
.dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

/* Dropdown links */
.dropdown-menu a {
    /* Layout */
    padding: 12px 20px;
    
    /* Typography */
    color: var(--white);
    font-size: 13px;
    font-weight: normal;
    text-transform: none;
}

/* Dropdown hover - orange background per user request */
.dropdown-menu a:hover {
    background-color: var(--orange);
    color: var(--white) !important; /* Ensure white text on orange background */
}

/* === VISIT REAL SITE BUTTON === */
/* Prominent button to direct users to the actual Bottini Fuel website */
.nav-cta {
    margin-left: auto; /* Push to right side of navigation */
}

.btn-visit-real-site {
    /* Layout & Positioning */
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 5px 15px !important;
    margin: 4px 0;
    
    /* Typography */
    font-family: var(--font-primary) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    line-height: 1.2;
    
    /* Visual Design - Neon Green Theme */
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: var(--black) !important;
    border: 2px solid #00ff88;
    border-radius: 6px;
    
    /* Effects */
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-visit-real-site:hover {
    /* Enhanced hover state */
    background: linear-gradient(135deg, #00cc6a 0%, #00ff88 100%);
    border-color: #00cc6a;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    transform: translateY(-1px);
    color: var(--black) !important;
}

.btn-visit-real-site:active {
    /* Active state */
    transform: translateY(0);
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

.btn-visit-real-site i {
    /* Icon styling */
    font-size: 11px;
    opacity: 0.8;
}

/* Subtle glow animation for extra visibility */
@keyframes neon-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
    }
    50% {
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
    }
}

.btn-visit-real-site {
    animation: neon-glow 2.5s ease-in-out infinite;
}

.btn-visit-real-site:hover {
    animation: none; /* Stop glow on hover */
}

/* Pixel Perfect Designs Logo Section */
.pixel-logo-section {
    background-color: var(--white);
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

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

.pixel-fuel-logo {
    height: 60px;
    width: auto;
    max-width: 100%;
}

/* === HERO SECTION === */
/* Main hero banner with background image and overlay */
.hero {
    /* Positioning */
    position: relative;
    
    /* Layout */
    height: 500px;
    overflow: hidden;
}

/* Hero background container */
.hero-background {
    /* Positioning */
    position: absolute;
    top: -200px;
    left: 0;
    z-index: 1;
    
    /* Layout */
    width: 100%;
    height: calc(100% + 200px);
}

/* Hero background image */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero overlay for content positioning */
.hero-overlay {
    /* Positioning */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    
    /* Layout */
    width: 100%;
    height: 100%;
    padding-top: 100px;
    
    /* Content alignment */
    display: flex;
    align-items: flex-start;
    
    /* Visual */
    background: rgba(0, 0, 0, 0.2);
}

/* Hero content container */
.hero-content {
    color: var(--white);
    max-width: 600px;
}

/* Hero main heading */
.hero h1 {
    /* Typography */
    font-family: var(--font-primary);
    font-style: normal;
    font-weight: var(--font-weight-bold);
    font-size: 60px;
    line-height: 70px;
    
    /* Layout */
    margin-bottom: 20px;
    white-space: nowrap;
    
    /* Visual */
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hero subheading */
.hero h2 {
    /* Typography */
    font-size: 24px;
    font-weight: normal;
    line-height: 1.4;
    
    /* Layout */
    margin-bottom: 30px;
}

/* Hero call-to-action button */
.btn-hero {
    /* Layout */
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    
    /* Typography */
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    
    /* Visual */
    background-color: var(--primary-red);
}

.btn-hero:hover {
    background-color: var(--dark-red);
}

/* === CTA SECTION === */
/* Call-to-action banner with skewed background and centered content */
.cta-section {
    /* Positioning */
    position: relative;
    
    /* Layout */
    height: 228px;
    overflow: hidden;
    
    /* Content alignment */
    display: flex;
    align-items: center;
    
    /* Visual */
    background-color: var(--black);
}

/* Skewed background rhombus shape */
.cta-rhombus {
    /* Positioning */
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    
    /* Layout */
    width: 831px;
    height: 196px;
    
    /* Visual */
    background: linear-gradient(135deg, var(--primary-red) 0%, #d32f3f 100%);
    transform: translate(-50%, -50%) skewX(-15deg);
}

/* CTA content container */
.cta-content {
    /* Positioning */
    position: relative;
    z-index: 2;
    
    /* Layout */
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    
    /* Typography */
    color: var(--white);
}

/* CTA heading */
.cta-content h2 {
    /* Typography */
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    font-style: normal;
    font-size: 36px;
    line-height: 46px;
    
    /* Layout */
    margin-bottom: 25px;
    
    /* Visual */
    color: var(--white);
}

/* CTA button with skewed design */
.btn-cta {
    /* Layout */
    display: flex;
    width: 218px;
    height: 40px;
    padding: 0;
    margin: 0 auto;
    border-radius: 0;
    
    /* Content alignment */
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* Typography */
    color: var(--black);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    font-style: normal !important;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    
    /* Visual */
    background: var(--orange);
    transform: skewX(-15deg);
}

/* CTA button text (counter-skewed) */
.btn-cta span {
    display: block;
    transform: skewX(15deg);
}

/* CTA button hover state */
.btn-cta:hover {
    background: #e68a1a;
}

/* === SERVICES SECTION === */
/* Four-column grid layout for service offerings */
.services {
    /* Layout */
    padding: 60px 0;
    
    /* Visual */
    background-color: var(--white);
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

/* Services grid container */
.services-grid {
    /* Layout */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1164px;
    margin: 0 auto;
}

/* Individual service item */
.service-item {
    /* Layout */
    width: 291px;
    height: 397px;
    padding: 20px 20px 80px 20px;
    box-sizing: border-box;
    
    /* Content alignment */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* Visual */
    background: var(--white);
}

/* Service icon container */
.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 153px;
    height: 215px;
    object-fit: contain;
}

/* Service content typography */
.service-content h3 {
    /* Typography */
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    font-style: normal;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
    /* Layout */
    margin-bottom: 15px;
    
    /* Visual */
    color: var(--primary-red);
}

.service-content p {
    /* Typography */
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: var(--font-weight-normal);
    font-style: normal;
    line-height: 26px;
    
    /* Layout */
    margin-bottom: 20px;
    
    /* Visual */
    color: var(--black);
}

/* Service links */
.service-link {
    /* Typography */
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: var(--font-weight-normal);
    font-style: normal;
    line-height: 26px;
    text-decoration: none;
    text-transform: none;
    letter-spacing: normal;
    
    /* Visual */
    color: #0000EE; /* Standard link blue */
}

.service-link:hover {
    color: #551A8B;
}

/* Services Bottom Section */
.services-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1120px;
    margin: 0 auto;
    margin-top: 0;
}

.services-bottom-left {
    background-color: black;
    color: white;
    padding: 20px;
    width: 546px;
    height: 384px;
    box-sizing: border-box;
    text-align: center;
}

.services-bottom-left img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.services-bottom-left h2 {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #f99e2b;
    margin-bottom: 20px;
    text-align: left;
}

.services-bottom-left blockquote {
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(255, 255, 255);
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 20px 0;
    text-align: left;
    width: 498px;
}

.services-bottom-left cite {
    font-size: 16px;
    color: white;
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
}

.services-bottom-left .btn-secondary {
    /* Using the reusable CTA skewed button style */
    display: flex;
    width: 207px;
    height: 40px;
    background: var(--orange);
    color: #000000;
    padding: 0;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    transform: skewX(-15deg);
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}

.services-bottom-left .btn-secondary span {
    transform: skewX(15deg);
    display: block;
}

.services-bottom-right {
    background-color: #f5f5f5;
    color: black;
    padding: 20px 10px;
    width: 546px;
    height: 384px;
    box-sizing: border-box;
    text-align: center;
}

.services-bottom-right h2 {
    font-family: 'Lato', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
    line-height: 36px;
    white-space: nowrap;
}

.services-bottom-right h2 .italic-part {
    font-style: italic;
    text-transform: capitalize;
}

.services-bottom-right h2 .normal-part {
    font-style: normal;
    text-transform: lowercase;
}

.services-bottom-right p {
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 30px;
}

.services-bottom-right .awards-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.services-bottom-right .awards-images img {
    height: 164px;
    width: auto;
}

/* ========================================
   FUEL SECTIONS
   ======================================== */

/* Fuel for Home Section */
.fuel-home-section {
    position: relative;
    height: 414px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.fuel-home-section .container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.fuel-home-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('../img/parallax_for-home.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.fuel-home-content {
    max-width: 500px;
    margin-left: 50%;
    margin-right: 5%;
    text-align: left;
    color: white;
    padding: 40px;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.fuel-home-content h3 {
    font-family: 'Lato', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.fuel-home-content p {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 30px;
    color: #000000;
}

.fuel-home-content .fuel-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.fuel-home-content .btn-cta-skewed {
    width: 180px;
    height: 40px;
}

/* Fuel for Business Section */
.fuel-business-section {
    position: relative;
    height: 470px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.fuel-business-section .container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.fuel-business-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('../img/parallax_for_business.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.fuel-business-content {
    max-width: 546px;
    margin-right: auto;
    margin-left: 5%;
    text-align: left;
    color: white;
    position: relative;
    z-index: 2;
    padding: 40px;
}

.fuel-business-content h3 {
    font-family: 'Lato', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.fuel-business-content p {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 30px;
    color: white;
}

.fuel-business-content .fuel-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 400px;
}

.fuel-business-content .btn-cta-skewed {
    width: 180px;
    height: 40px;
    margin-top: 0;
}

/* Reviews Section */
.reviews {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.reviews-content {
    max-width: 800px;
    margin: 0 auto;
}

.stars img {
    height: 30px;
    margin-bottom: 20px;
}

.reviews h2 {
    font-size: 28px;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.reviews blockquote {
    font-size: 18px;
    font-style: italic;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.reviews cite {
    font-size: 16px;
    color: var(--primary-red);
    font-weight: bold;
    display: block;
    margin-bottom: 30px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 12px 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
}

/* Awards Section */
.awards {
    padding: 60px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.awards h2 {
    font-size: 28px;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.awards > p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.6;
}

.awards-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.awards-images img {
    height: 80px;
    width: auto;
}

.fuel-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.fuel-home, .fuel-business {
    text-align: left;
}

.fuel-sections h3 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.fuel-sections p {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.fuel-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fuel-btn {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
}

.fuel-btn:hover {
    background-color: var(--dark-red);
}

/* Mobile App Section */
.mobile-app {
    padding: 0;
    background-color: #ffe67f;
    height: 323px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.mobile-app .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    margin-left: 10%;
    padding: 0 15px;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    height: 100%;
    padding: 60px 0;
}

.app-text {
    max-width: 546px;
}

.app-text h2 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 26px;
    line-height: 36px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.app-text p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    color: #000000;
    margin-bottom: 30px;
}

.app-text .brand-name {
    font-weight: 800;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-buttons img {
    height: 50px;
    width: auto;
}

.app-buttons img:hover {
    /* No animation effect */
}

.app-image {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    height: 275px;
    width: 546px;
}

.app-image img {
    width: 546px;
    height: 275px;
    object-fit: contain;
    margin-bottom: 0;
}

/* === FOOTER SECTION === */
/* Main footer with three-column layout and copyright */
.footer {
    /* Layout */
    display: flex;
    flex-direction: column;
    padding: 20px 0 0 0;
    
    /* Visual */
    background-color: var(--black);
    color: var(--white);
}

/* Footer content grid container */
.footer-content {
    /* Layout */
    display: grid;
    grid-template-columns: 1fr auto 1.8fr;
    gap: 40px;
    flex: 1;
    min-height: 250px;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 15px;
    
    /* Content alignment */
    align-items: flex-start;
}

/* Footer column headings */
.footer-left h3,
.footer-right h3 {
    /* Typography */
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    line-height: 30px;
    text-transform: uppercase;
    
    /* Layout */
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    
    /* Visual */
    color: var(--white);
    border-bottom: 2px solid var(--white);
}

/* === FOOTER LEFT COLUMN === */
/* Locations listing */
.footer-left {
    text-align: center;
}

/* === FOOTER CENTER COLUMN === */
/* Reviews square with ratings and stars */
.footer-center {
    /* Positioning */
    position: relative;
    
    /* Layout */
    width: 180px;
    height: 180px;
    margin: 0 auto;
    padding: 25px 20px;
    border-radius: 12px;
    
    /* Content alignment */
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    
    /* Visual */
    background-color: var(--primary-red);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* "Thousands" number display */
.footer-center .thousands {
    /* Typography */
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: var(--font-weight-extra-bold);
    line-height: 1;
    letter-spacing: 0.5px;
    
    /* Layout */
    margin: 0;
    
    /* Visual */
    color: var(--white);
}

/* Reviews text */
.footer-center .reviews-text {
    /* Typography */
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: var(--font-weight-normal);
    line-height: 1.1;
    
    /* Layout */
    margin: 0;
    
    /* Visual */
    color: var(--white);
    opacity: 0.95;
}

/* Rating number */
.footer-center .rating {
    /* Typography */
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: var(--font-weight-extra-bold);
    line-height: 1;
    
    /* Layout */
    margin: 0;
    
    /* Visual */
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Star display */
.footer-center .stars {
    /* Typography */
    font-size: 20px;
    line-height: 1;
    
    /* Layout */
    margin: 0;
    
    /* Visual */
    color: #ffd700;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

/* === FOOTER RIGHT COLUMN === */
/* Navigation links with icons */
.footer-right {
    text-align: center;
}

/* Footer links 2x2 grid */
.footer-links {
    /* Layout */
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
    max-width: 300px;
}

/* Footer links grid positioning */
.footer-links li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.footer-links li:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.footer-links li:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.footer-links li {
    margin-bottom: 0;
}

/* Footer link styling */
.footer-links a {
    /* Layout */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0;
    
    /* Typography */
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: var(--font-weight-normal);
    line-height: normal;
}

/* Footer link icons using Font Awesome */
.footer-links .service-link::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    margin-right: 8px;
    color: var(--white);
}

.footer-links .blog-link::before {
    content: "\f086";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    margin-right: 8px;
    color: var(--white);
}

.footer-links .facebook-link::before {
    content: "\f39e";
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
    font-size: 16px;
    margin-right: 8px;
    color: var(--white);
}

/* Footer link hover effects */
.footer-links a:hover {
    color: var(--orange);
    text-decoration: none;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    grid-template-rows: 1fr 1fr;
    gap: 15px 15px;
    font-size: 14px;
}

.location {
    margin-bottom: 5px;
    font-family: 'Lato', sans-serif;
    text-align: left;
}

.location strong {
    display: block;
    margin-bottom: 2px;
    font-size: 13px;
    font-weight: 800;
    color: rgb(255, 255, 255);
    line-height: 26px;
    white-space: nowrap;
}

.location span {
    color: var(--white);
    font-size: 12px;
    line-height: 1.2;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: var(--white);
    max-width: var(--container-max-width);
    margin: 0 auto;
    margin-top: auto;
}

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

.footer-bottom a:hover {
    color: var(--orange);
    text-decoration: underline;
}

/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */

/* === TABLET AND MOBILE BREAKPOINTS === */
/* Responsive design for smaller screens and mobile devices */

/* Tablet breakpoint (768px and below) */
@media (max-width: 768px) {
    
    /* === TOP BAR RESPONSIVE === */
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .utility-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    /* === NAVIGATION RESPONSIVE === */
    .nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    /* Visit Real Site Button - Mobile */
    .nav-cta {
        margin-left: 0; /* Reset margin on mobile */
        order: -1; /* Move to top of navigation */
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .btn-visit-real-site {
        font-size: 15px !important;
        padding: 8px 18px !important;
        border-radius: 6px;
        width: auto;
        display: inline-flex !important;
    }
    
    /* === HERO SECTION RESPONSIVE === */
    .hero {
        height: 400px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero h2 {
        font-size: 18px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        max-width: 582px;
    }
    
    .service-item {
        width: 291px;
        height: 397px;
    }
    
    .services-bottom {
        grid-template-columns: 1fr;
        max-width: 546px;
        gap: 20px;
    }
    
    .services-bottom-left,
    .services-bottom-right {
        width: 546px;
        height: 384px;
    }
    
    .services {
        padding: 40px 0;
    }
    
    .fuel-sections {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-images {
        flex-direction: column;
        align-items: center;
    }
    
/* Reviews Section */
.reviews {
    padding: var(--section-padding);
    background-color: var(--white);
    text-align: center;
}

.reviews-header {
    margin-bottom: 40px;
}

.stars {
    height: 40px;
    margin-bottom: 20px;
}

.reviews h2 {
    color: var(--primary-blue);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto 40px;
}

.testimonial blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial cite {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
}

/* Awards Section */
.awards {
    padding: var(--section-padding);
    background-color: var(--light-gray);
    text-align: center;
}

.awards h2 {
    margin-bottom: 30px;
}

.awards p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    color: var(--medium-gray);
}

.awards-images {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.awards-images img {
    height: 100px;
    width: auto;
}

/* Mobile App Section */
.mobile-app {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.app-text h2 {
    margin-bottom: 30px;
}

.app-text p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
}

.app-buttons {
    display: flex;
    gap: 20px;
}

.app-buttons img {
    height: 60px;
    width: auto;
}

.app-buttons img:hover {
    /* No animation effect */
}

.app-image img {
    width: 100%;
    max-width: 400px;
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--orange);
}

.locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.location {
    margin-bottom: 20px;
}

.location strong {
    display: block;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--secondary-blue);
    padding-top: 30px;
    text-align: center;
    color: var(--light-gray);
}

.footer-bottom a {
    color: var(--light-gray);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--orange);
}

/* Animations removed to match original Bottini page */

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0;
    }
    
    .hero-content {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 300px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .locations {
        grid-template-columns: 1fr;
    }
    
    .awards-images {
        flex-direction: column;
        align-items: center;
    }
}

/* Additional Top Bar Responsive Styles */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .utility-links {
        justify-content: center;
        gap: 0;
        flex-wrap: wrap;
        height: auto;
    }
    
    .utility-links a {
        font-size: 12px;
        padding: 6px 15px;
        height: auto;
    }
    
    /* Keep diagonal dividers on mobile */
    .utility-links a::before,
    .utility-links a::after {
        width: 2px;
        top: 0;
        bottom: 0;
        transform: skewX(-20deg);
    }
    
    /* Services responsive */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 291px;
    }
    
    .service-item {
        width: 291px;
        height: 397px;
    }
    
    .services-bottom {
        grid-template-columns: 1fr;
        max-width: 291px;
        gap: 15px;
    }
    
    .services-bottom-left,
    .services-bottom-right {
        width: 291px;
        height: 300px;
        padding: 20px;
    }
    
    .services-bottom-left h2,
    .services-bottom-right h2 {
        font-size: 18px;
    }
}

/* =========================================================================
   END OF STYLESHEET
   ========================================================================= */

/*
 * BOTTINI FUEL CLONE - CSS Architecture Summary
 * 
 * This stylesheet follows modern CSS best practices and organization:
 * 
 * 1. CSS Custom Properties: Centralized design tokens for consistency
 * 2. Semantic Naming: BEM-inspired class names for clarity
 * 3. Logical Organization: Grouped by component and functionality
 * 4. Performance Optimized: Efficient selectors and minimal redundancy
 * 5. Accessibility Ready: WCAG compliant color contrasts and focus states
 * 6. Responsive Design: Mobile-first approach with progressive enhancement
 * 
 * Font Stack: Lato (300, 400, 700, 800) with system fallbacks
 * Color Palette: Brand reds, neutral grays, and accent orange
 * Layout System: CSS Grid and Flexbox for modern browser support
 * 
 * Last Updated: Code cleanup and documentation implementation
 * Total Lines: ~2000 lines of organized, documented CSS
 */
