/*
Theme Name: Warehouse Rackings
Description: Child theme of Twenty Twenty-Five for Warehouse Rackings.
Author: Carlo
Template: twentytwentyfive
Version: 1.0
Text Domain: warehouse-rackings
*/

/* ==========================================================================
   WAREHOUSE RACKINGS INC — STYLE SYSTEM
   Modern Industrial Luxury B2B Theme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=Sora:wght@700;800&display=swap');

:root {
    /* Color Tokens */
    --color-primary: #014B3F;       /* Green is now primary */
    --color-primary-rgb: 1, 75, 63;
    --color-green: #014B3F;         /* Deep Industrial Green */
    --color-green-rgb: 1, 75, 63;
    --color-orange: #FF5E1A;        /* Brand Orange */
    --color-orange-rgb: 255, 94, 26;
    --color-brown: #1C0D03;         /* Dark Luxury Brown */
    --color-brown-rgb: 28, 13, 3;
    --color-bg: #F8F6F3;            /* Premium warm off-white */
    --color-gray: #EAEAEA;          /* Border and divider gray */
    --color-text: #1A1A1A;          /* Body text */
    --color-white: #FFFFFF;
    --color-white-rgb: 255, 255, 255;
    
    /* Layout Tokens */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 12px 30px rgba(28, 13, 3, 0.06);
    --shadow-hover: 0 20px 40px rgba(28, 13, 3, 0.12);
    --shadow-green: 0 12px 30px rgba(1, 75, 63, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Layout constants */
    --header-height: 100px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1.125rem; /* 18px */
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-brown);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 700;
}

p {
    margin-bottom: 1.5rem;
}

p.lead {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem); /* 18px-20px */
    color: rgba(26, 26, 26, 0.8);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ==========================================================================
   LAYOUT CONTAINERS & SYSTEM
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 7rem 0;
    position: relative;
}

.section-dark {
    background-color: var(--color-green);
    color: var(--color-white);
}

.section-dark h2, .section-dark h3 {
    color: var(--color-white);
}

.section-alt {
    background-color: var(--color-white);
}

.text-center {
    text-align: center;
}

.max-w-700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 1.1rem 2.2rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(255, 94, 26, 0.25);
}

.btn-primary:hover {
    background-color: #e04f13;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 94, 26, 0.35);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-green);
    color: var(--color-green);
}

.btn-secondary:hover {
    background-color: var(--color-green);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-secondary-light {
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-secondary-light:hover {
    background-color: var(--color-white);
    color: var(--color-green);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
}

/* Cards */
.card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 2.5rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

/* Badges & Accents */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 94, 26, 0.1);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: var(--border-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.badge-dark {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

/* Trust Indicators */
.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-md);
}

.trust-badge svg {
    color: var(--color-primary);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.trust-badge span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
}

/* ==========================================================================
   GLOBAL LAYOUT — TOP UTILITY BAR & MAIN HEADER
   ========================================================================== */
.top-header-bar {
    background-color: var(--color-primary); /* Deep Green */
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    height: 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.top-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.top-header-left, .top-header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.top-header-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.top-header-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-fast);
}

.top-header-link:hover {
    color: var(--color-orange); /* Orange hover color */
}

.top-header-icon {
    width: 14px;
    height: 14px;
    color: var(--color-orange);
}

.header-wrapper {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: rgba(248, 246, 243, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.header-wrapper.scrolled {
    background-color: var(--color-white);
    box-shadow: var(--shadow-soft);
    border-bottom-color: transparent;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.mobile-only-phone {
    display: none !important;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo-img {
    height: 77px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-logo-img {
    height: 89px;
    margin-bottom: 1.5rem;
}

.logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.03em;
}

.header-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-brown);
    font-size: 1.05rem;
    margin-right: 1.5rem;
    transition: var(--transition-fast);
}

.header-phone-link:hover {
    color: var(--color-primary);
}

.header-phone-icon {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.25rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.925rem;
    color: var(--color-brown);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* ==========================================================================
   NAVIGATION DROPDOWNS (DESKTOP)
   ========================================================================== */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.arrow-down::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: var(--transition-fast);
    margin-bottom: 3px;
}

.nav-dropdown:hover .arrow-down::after {
    transform: rotate(-135deg);
    margin-bottom: -1px;
}

/* Dropdown Menu Container */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background-color: var(--color-white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--color-brown);
    transition: var(--transition-fast);
    border-bottom: none;
}

.dropdown-menu a::after {
    display: none; /* remove hover line */
}

.dropdown-menu a:hover {
    background-color: rgba(1, 75, 63, 0.05);
    color: var(--color-primary);
    padding-left: 1.5rem;
}



.header-cta {
    display: flex;
    align-items: center;
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-brown);
    margin: 5px 0;
    transition: var(--transition-fast);
    border-radius: 3px;
}


/* ==========================================================================
   SECTION 1 — HERO
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 6rem;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(1, 75, 63, 0.85), rgba(28, 13, 3, 0.95));
    color: var(--color-white);
margin-top:7rem !important;
}

.hero-section h1 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.hero-section p.lead {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
}

.hero-overlay-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(28, 13, 3, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-overlay-slogan {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-overlay-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* ==========================================================================
   SECTION 2 — STORAGE SOLUTIONS
   ========================================================================== */
.solutions-section {
    background-color: var(--color-white);
}

.solutions-grid {
    margin-top: 4rem;
    margin-bottom: 5rem;
}

.solution-card {
    border: 1px solid var(--color-gray);
    box-shadow: var(--shadow-soft);
}

.solution-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-md);
    background-color: rgba(255, 94, 26, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.solution-icon svg {
    width: 32px;
    height: 32px;
}

.solution-card h3 {
    margin-bottom: 1rem;
}

.solution-card p {
    color: rgba(26, 26, 26, 0.7);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.solution-card .btn {
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 0.8rem 1.2rem;
    letter-spacing: 0.02em;
    margin-top: auto;
}

.solution-img-wrapper {
    height: 200px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 1.75rem;
}

.solution-img-wrapper img {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.solution-card:hover .solution-img-wrapper img {
    transform: scale(1.05);
}

/* Used Racking Accent Banner */
.accent-banner {
    background: linear-gradient(135deg, var(--color-orange), #e04f13);
    border-radius: var(--border-radius-lg);
    padding: 3rem 4rem;
    color: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.accent-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.accent-banner-content h3 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.accent-banner-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 500;
}

/* ==========================================================================
   SECTION 3 — MATERIAL HANDLING
   ========================================================================== */
.equipment-section {
    background-color: var(--color-bg);
}

.equipment-grid {
    margin-top: 4rem;
    position: relative;
}

/* Horizontal line connector for cards in desktop view */
.equipment-grid::before {
    content: '';
    position: absolute;
    top: 150px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gray) 20%, var(--color-gray) 80%, transparent);
    z-index: 1;
}

.about-actions.material {
    margin-top: 2.5rem;
    align-items: center !important;
    display: flex;
    justify-content: center;
}

.equipment-card {
    z-index: 2;
    background-color: var(--color-white);
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.equipment-img-container {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.equipment-img-container img {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.equipment-card:hover .equipment-img-container img {
    transform: scale(1.05);
}

.equipment-icon-badge {
    position: absolute;
    bottom: -24px;
    right: 2rem;
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 94, 26, 0.3);
    border: 3px solid var(--color-white);
}

.equipment-icon-badge svg {
    width: 20px;
    height: 20px;
}

.equipment-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.equipment-content h3 {
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
}

.equipment-content p {
    color: rgba(26, 26, 26, 0.7);
    margin-bottom: 0;
    font-size: 0.98rem;
    line-height: 1.5;
}

/* ==========================================================================
   SECTION 4 — INSTALLATION & REPAIR
   ========================================================================== */
.install-section {
    background-color: var(--color-green);
    color: var(--color-white);
    overflow: hidden;
}

.install-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 480px;
    box-shadow: var(--shadow-green);
}

.install-image-container img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
}

.install-content-panel h2 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.install-content-panel p.lead {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
}

.install-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.install-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.install-feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.install-feature-icon {
    color: var(--color-orange);
    margin-bottom: 1.25rem;
}

.install-feature-icon svg {
    width: 36px;
    height: 36px;
}

.install-feature-card h3 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.install-feature-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ==========================================================================
   SECTION 5 — ABOUT
   ========================================================================== */
.about-section {
    background-color: var(--color-white);
}

.about-section .grid-2 {
    align-items: stretch;
}

.about-image-panel {
    display: flex;
    height: 100%;
}

.about-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 100%;
    width: 100%;
    box-shadow: var(--shadow-medium);
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content-panel h3 {
    font-size: 1.35rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.about-content-panel h2 {
    margin-bottom: 1.75rem;
}

.about-content-panel .section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
    margin-bottom: 2rem;
}

.about-content-panel h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-green);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.about-content-panel p {
    color: rgba(26, 26, 26, 0.75);
    margin-bottom: 1.25rem;
}

.about-actions {
    margin-top: 2.5rem;
}

/* Statistics row */
.stats-row {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid var(--color-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--color-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number span {
    color: var(--color-primary);
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-brown);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   SECTION 6 — SERVICE AREA
   ========================================================================== */
.service-area-section {
    background-color: var(--color-bg);
}

.map-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.service-text-panel h2 {
    margin-bottom: 1.5rem;
}

.service-text-panel p.lead,
.service-text-panel p {
    font-size: 1.125rem; /* 18px */
    line-height: 1.6;
    color: rgba(26, 26, 26, 0.75);
    margin-bottom: 1.5rem;
}

.city-tags-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2.5rem 0;
}

.city-tag {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--color-white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.city-tag svg {
    color: var(--color-primary);
    width: 18px;
    height: 18px;
}

.city-tag span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-brown);
}

/* Custom Interactive Style Map */
.map-visual-container {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-svg-graphic {
    width: 100%;
    height: 100%;
    max-height: 400px;
}

/* Service area pulsing ring styling */
.pulse-center {
    fill: var(--color-primary);
}

.pulse-ring-1 {
    stroke: var(--color-primary);
    stroke-width: 2px;
    fill: none;
    opacity: 0.3;
    animation: mapPulse 3s infinite linear;
    transform-origin: center;
}

.pulse-ring-2 {
    stroke: var(--color-primary);
    stroke-width: 1px;
    fill: rgba(255, 94, 26, 0.05);
    opacity: 0.15;
    animation: mapPulse 3s infinite linear;
    animation-delay: 1.5s;
    transform-origin: center;
}

@keyframes mapPulse {
    0% {
        transform: scale(0.6);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.google-map-wrapper{
    overflow: hidden;
    border-radius: 24px;
    min-height: 500px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.google-map-wrapper iframe{
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
}

@media (max-width: 768px){
    .google-map-wrapper,
    .google-map-wrapper iframe{
        min-height: 350px;
    }
}

/* ==========================================================================
   SECTION 7 — CHANGING STORAGE NEEDS
   ========================================================================== */
.changing-needs-section {
    background-color: var(--color-white);
}

.needs-grid {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.need-card {
    border: 1px solid var(--color-gray);
    box-shadow: var(--shadow-soft);
}

.need-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-md);
    background-color: rgba(255, 94, 26, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.need-icon svg {
    width: 28px;
    height: 28px;
}

.need-card h3 {
    font-size: 1.35rem;
    color: var(--color-green);
    margin-bottom: 0.5rem;
}

.need-card h4 {
    font-size: 1.15rem;
    color: var(--color-brown);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.need-card p {
    color: rgba(26, 26, 26, 0.7);
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 0;
}

/* ==========================================================================
   SECTION 8 — EXPERIENCE DIFFERENCE & CONTACT
   ========================================================================== */
.closing-section {
    background: linear-gradient(135deg, var(--color-brown) 0%, #120802 100%);
    color: var(--color-white);
}

.closing-section h2 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.closing-section p.lead {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.closing-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.closing-actions {
    margin-top: 2.5rem;
}

.closing-grid {
    align-items: stretch;
}

.closing-image-panel {
    display: flex;
    height: 90%;
}

.closing-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 100%;
    width: 100%;
    min-height: 400px;
    box-shadow: var(--shadow-medium);
}

.closing-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ==========================================================================
   FINAL CTA BANNER
   ========================================================================== */
.final-cta-banner {
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 4.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.final-cta-banner h2 {
    color: var(--color-white);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: -0.03em;
}

.btn-cta-banner {
    background-color: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-cta-banner:hover {
    background-color: var(--color-brown);
    color: var(--color-white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #0c0602;
    color: rgba(255, 255, 255, 0.6);
    padding: 6rem 0 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr 1.3fr 0.9fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-brand .logo-text {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}
.footer-logo-img {
    height: 89px;
    margin-bottom: 1.5rem;
    background: white;
    padding: 10px;
    border-radius: 8px;
}

.footer-brand h3 span {
    color: var(--color-primary);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--color-orange);
    padding-left: 5px;
}


.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.footer-contact-item svg {
    color: var(--color-primary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a:hover {
    color: var(--color-white);
}

/* Floating Sticky quote button */
.sticky-quote-trigger {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(255, 94, 26, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.sticky-quote-trigger:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #e04f13;
}

.sticky-quote-trigger svg {
    width: 28px;
    height: 28px;
}

/* Toast Message */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-green);
    z-index: 1001;
    transform: translateY(150%);
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
    font-weight: 700;
}

.toast-notification.show {
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE-FIRST)
   ========================================================================== */

/* Up to Tablet (Landscape/Portrait) */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .equipment-grid::before {
        display: none;
    }
}

/* Tablet (Portrait) */
@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Header & Mobile Navigation */
    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    /*.nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 4rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition-smooth);
        z-index: 1000;
    }*/
    
    .nav-menu.open {
        right: 0;
    }
    
    .header-cta {
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: 1.5rem;
    }
    
    .header-cta .btn {
        display: none;
    }
    
    .header-phone-link {
        margin-right: 0;
    }
    
    .header-phone-link span {
        display: none;
    }
    
    .header-phone-icon {
        width: 22px;
        height: 22px;
    }
    
    .hero-section {
        text-align: center;
        padding-top: calc(var(--header-height) + 2rem);
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        min-height: 380px;
    }
    
    .hero-image-wrapper img {
        min-height: 380px;
    }
    
    .accent-banner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem;
    }
    
    .install-cards-container {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Mobile Screen */
@media (max-width: 480px) {
    body {
        font-size: 1rem; /* 16px mobile */
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .city-tags-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-panel {
        padding: 2rem 1.5rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-overlay-card {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
