/* Color Variables - Deep Navy Blue and White Theme */
:root {
    /* Primary Colors - Deep Navy Blue and White Alternating */
    --deep-navy: #1C2D40;
    /* Deep Navy Blue - Primary sections, headers, buttons */
    --pure-white: #FFFFFF;
    /* Pure White - Alternating sections, text on navy */
    --light-grey: #F8F9FA;
    /* Light Grey - Subtle background variation */
    --dark-navy: #152238;
    /* Darker Navy - Hover states, accents */
    --text-dark: #2C3E50;
    /* Dark text for white backgrounds */
    --text-light: #FFFFFF;
    /* Light text for navy backgrounds */

    /* Legacy support - mapping old variables to new palette */
    --olive-green: #1C2D40;
    --warm-brass: #1C2D40;
    --light-stone: #FFFFFF;
    --charcoal-grey: #2C3E50;
    --primary-green: #1C2D40;
    --dark-green: #152238;
    --light-green: #1C2D40;
    --accent-green: #1C2D40;
    --navy-blue: #1C2D40;
    --army-green: #1C2D40;
    --bright-yellow: #1C2D40;
    --light-blue: #FFFFFF;
    --white: #FFFFFF;
    --soft-grey: #F8F9FA;
    --border-light: #E9ECEF;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal scroll on mobile */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--pure-white);
    /* Improve text rendering on mobile */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

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

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    top: env(safe-area-inset-top, 0);
    left: 0;
    right: 0;
    width: 100%;
    background: var(--deep-navy);
    z-index: 1000;
    padding: 15px 0;
    padding-top: calc(15px + env(safe-area-inset-top, 0));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-height: 60px;
    box-sizing: border-box;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(1) contrast(1.1);
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo h2 {
    color: var(--light-stone);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.phone-btn {
    background: var(--pure-white);
    color: var(--deep-navy);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.phone-btn:hover {
    background: var(--light-grey);
    transform: translateY(-2px);
}

/* Section Box Styling */
.section-box {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-light);
    margin: 20px 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.section-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--white);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1C2D40;
    background: linear-gradient(135deg, rgba(28, 45, 64, 0.7) 0%, rgba(28, 45, 64, 0.6) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 40px 50px;
    color: var(--white);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Hero Address */
.hero-address {
    margin: 20px 0 30px 0;
    padding: 15px 20px;
    background: rgba(211, 169, 74, 0.15);
    border: 2px solid var(--warm-brass);
    border-radius: 10px;
    text-align: center;
}

.hero-address .address-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--warm-brass);
    margin: 0;
    line-height: 1.4;
}

/* Hero Checklist */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--white);
}

.check-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.discount-badge {
    background: var(--warm-brass);
    color: var(--deep-navy);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(211, 169, 74, 0.3);
}

.hero-cta {
    margin-top: 40px;
}

.hero-cta .cta-primary {
    background: #ff6b35 !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: bold !important;
    padding: 15px 30px !important;
    min-width: 250px !important;
    width: auto !important;
    height: 60px !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: visible !important;
    display: block !important;
    font-family: Arial, sans-serif !important;
    border: 3px solid #ffffff !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    line-height: 30px !important;
    vertical-align: middle !important;
    margin: 0 auto !important;
    text-shadow: none !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

.hero-cta .cta-primary::before {
    content: none !important;
}

.hero-cta .cta-primary::after {
    content: none !important;
}

.cta-primary {
    background: #f39c12 !important;
    color: #ffffff !important;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
    text-transform: none;
    letter-spacing: 0.5px;
    min-width: 280px;
    width: auto;
    text-align: center;
    line-height: 1.4;
    white-space: nowrap;
    overflow: visible;
    font-family: 'Inter', sans-serif;
}

.cta-primary:hover {
    background: #e67e22 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.cta-primary:active {
    transform: translateY(0);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px 5px;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.discount-code {
    color: var(--pure-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--light-stone);
    clip-path: ellipse(100% 100% at 50% 0%);
    z-index: 4;
}

/* Why Choose The Academy Storage Section */
.why-choose {
    padding: 80px 0;
    background: var(--pure-white);
    position: relative;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--deep-navy);
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e0e0e0;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin: 0 0 15px 0;
    display: block;
    color: var(--olive-green);
    text-align: center;
}

.feature-card h3 {
    color: var(--deep-navy);
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
}

.section-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--deep-navy);
    clip-path: ellipse(100% 100% at 50% 0%);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--deep-navy);
    position: relative;
}

.how-it-works .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    border-radius: 20px;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 70px;
    color: var(--white);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.step-card {
    position: relative;
    text-align: center;
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-header {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #f39c12;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-content {
    margin-top: 10px;
}

.step-content h3 {
    color: var(--deep-navy);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

.cta-highlight {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.urgency-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #D3A94A;
    color: #1C2D40;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(211, 169, 74, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.urgency-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(211, 169, 74, 0.5);
    background: #E6973F;
}

.urgency-icon {
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.how-it-works .section-curve {
    background: var(--white);
}

/* Customer Feedback Section */
.testimonials {
    padding: 80px 0;
    background: var(--pure-white);
    position: relative;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 70px;
    color: var(--deep-navy);
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(28, 45, 64, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(211, 169, 74, 0.2);
    position: relative;
    min-height: 380px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: visible;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D3A94A 0%, #5C6B50 100%);
    border-radius: 25px 25px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(28, 45, 64, 0.15);
    border-color: #D3A94A;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.stars {
    color: #D3A94A;
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(211, 169, 74, 0.3);
    filter: drop-shadow(0 1px 2px rgba(211, 169, 74, 0.4));
}

.quote-icon {
    font-size: 4.5rem;
    color: #5C6B50;
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
    position: relative;
    top: -5px;
}

.testimonial-card p {
    color: #1C2D40;
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    flex-grow: 1;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #D3A94A;
}

.testimonial-author strong {
    display: block;
    color: #1C2D40;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.testimonial-author span {
    display: block;
    color: #5C6B50;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== GALLERY CAROUSEL SECTION ===== */
.gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #1C2D40 0%, #2A3F56 100%);
    position: relative;
}

.gallery h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-stone);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    touch-action: pan-y;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.carousel-track {
    display: flex;
    width: 1500%;
    height: 500px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    left: 0;
}

.carousel-slide {
    width: 6.666%;
    min-width: 6.666%;
    height: 100%;
    flex-shrink: 0;
    flex-grow: 0;
}

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

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(28, 45, 64, 0.9));
    color: white;
    padding: 40px 30px 30px;
    text-align: center;
}

.carousel-overlay h4 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--warm-brass);
}

.carousel-overlay p {
    font-size: 1.1rem;
    color: var(--light-stone);
    margin: 0;
    line-height: 1.5;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(28, 45, 64, 0.9), rgba(28, 45, 64, 0.7));
    color: var(--pure-white);
    border: 2px solid rgba(211, 169, 74, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(28, 45, 64, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--warm-brass), #e6b84d);
    color: var(--deep-navy);
    border-color: var(--warm-brass);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(211, 169, 74, 0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
    left: 25px;
}

.carousel-btn.next {
    right: 25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active,
.carousel-dot:hover {
    background: var(--warm-brass);
    transform: scale(1.2);
}

/* ===== STORAGE GALLERY SECTION ===== */
.storage-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #1C2D40 0%, #2A3F56 100%);
    position: relative;
}

.storage-gallery h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
}

.storage-gallery p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-stone);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Final CTA Section */
.final-cta {
    background: var(--deep-navy);
    padding: 40px 0;
    position: relative;
}

.final-cta .container {
    background: var(--deep-navy);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--dark-navy);
    padding: 60px 40px;
    transition: all 0.3s ease;
    text-align: center;
}

.final-cta .container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.final-cta h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--pure-white);
}

.final-cta p {
    color: var(--pure-white);
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.discount-reminder {
    background: var(--warm-brass);
    color: var(--deep-navy);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(211, 169, 74, 0.3);
}

/* CTA Button Styles */
.cta-button {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #3b82f6 100%);
    color: var(--white);
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(28, 45, 64, 0.4);
    text-transform: none;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 45, 64, 0.5);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--warm-brass) 0%, #f59e0b 100%);
    color: var(--deep-navy);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #d97706 0%, var(--warm-brass) 100%);
    color: var(--deep-navy);
}

/* Footer */
.footer {
    background: var(--pure-white);
    color: var(--charcoal-grey);
    padding: 60px 0 40px;
    text-align: center;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
}

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

.footer-cta {
    text-align: left;
    max-width: 100%;
    width: 100%;
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--deep-navy);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.footer-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--charcoal-grey);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.footer-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
}

.discount-reminder {
    color: var(--warm-brass);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-top: 15px;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.footer-logo-box {
    width: 120px;
    height: 120px;
    background-color: var(--deep-navy);
    border: 3px solid var(--deep-navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 8px rgba(28, 45, 64, 0.3);
    transition: all 0.3s ease;
}

.footer-logo-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(28, 45, 64, 0.4);
}

.footer-logo-main {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    width: 100%;
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
    filter: brightness(1) contrast(1.1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-info h3 {
    color: var(--deep-navy);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--charcoal-grey);
    letter-spacing: -0.01em;
}

.footer .copyright {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--white);
    opacity: 0.7;
    font-weight: 400;
}

/* Phone Popup Styles */
.phone-popup {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 45, 64, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 20px 0;
}

.phone-popup-content {
    background-color: var(--white);
    margin: auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.close-popup {
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: scale(1.1);
}

.phone-popup-header {
    background: var(--army-green);
    color: var(--white);
    padding: 25px 20px;
    text-align: center;
}

.phone-popup-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.phone-popup-body {
    padding: 30px 20px;
    text-align: center;
    flex: 1;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
}

.phone-number-display {
    margin-bottom: 20px;
}

.phone-number-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--army-green);
    letter-spacing: 2px;
    display: block;
}

.phone-popup-text {
    font-size: 1.1rem;
    color: var(--charcoal-grey);
    margin-bottom: 25px;
}

.discount-reminder-popup {
    background: var(--army-green);
    color: var(--white);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.discount-reminder-popup p {
    margin: 0;
    font-size: 1rem;
}

.phone-popup-buttons {
    display: flex;
    justify-content: center;
}

.close-btn {
    background: var(--charcoal-grey);
    color: var(--light-stone);
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: var(--army-green);
    transform: translateY(-2px);
}

/* Mobile Modal Improvements */
@media (max-width: 768px) {
    .phone-popup {
        padding: 10px 0;
    }

    .phone-popup-content {
        width: 95%;
        max-height: calc(100vh - 20px);
        margin: auto;
    }

    .phone-popup-body {
        padding: 20px 15px;
        max-height: calc(100vh - 150px);
    }

    .phone-number-text {
        font-size: 2rem;
    }
}

/* Inquiry Form Styles */
.contact-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-stone);
}

.email-section {
    margin-bottom: 25px;
}

.email-section h4 {
    color: var(--army-green);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.inquiry-form {
    width: 100%;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-stone);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--army-green);
}

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



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

.submit-btn {
    background: var(--army-green);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.submit-btn:hover {
    background: var(--charcoal-grey);
    transform: translateY(-2px);
}

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
    .phone-popup-content {
        margin: 3% auto;
        width: 95%;
        max-height: 94vh;
    }

    .phone-popup-header {
        padding: 20px 15px;
    }

    .phone-popup-header h3 {
        font-size: 1.3rem;
    }

    .phone-popup-body {
        padding: 25px 15px;
    }

    .phone-number-text {
        font-size: 2rem;
    }

    .close-popup {
        right: 10px;
        top: 10px;
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    .email-section h4 {
        font-size: 1.1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 120px;
    }
}

/* Responsive Design */
/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-layout {
        gap: 40px;
    }

    .hero-buttons {
        gap: 20px;
    }

    .hero-buttons .btn {
        padding: 14px 28px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        min-height: 80vh;
        padding: 100px 0 60px;
        margin-top: 70px;
        text-align: center;
        display: flex;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 50px 15px 20px;
        margin: 0 auto;
        width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 20px;
        padding: 0 10px;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 25px;
        padding: 0 10px;
        word-wrap: break-word;
    }

    .hero-address {
        margin: 15px 0 25px 0;
        padding: 12px 15px;
    }

    .hero-address .address-text {
        font-size: 1rem;
        line-height: 1.3;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 25px;
        font-size: 1rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-feature {
        padding: 12px 15px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 600px;
    }

    /* Section spacing for mobile */
    section {
        padding: 40px 0;
    }

    .why-choose,
    .how-it-works,
    .testimonials,
    .storage-gallery,
    .final-cta {
        padding: 40px 0;
    }

    /* Mobile container improvements */
    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    /* Better mobile section spacing */
    .why-choose .container,
    .how-it-works .container,
    .testimonials .container,
    .storage-gallery .container {
        padding: 0 15px;
    }

    /* Typography improvements */
    h2 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
        text-align: center;
        word-wrap: break-word;
        hyphens: auto;
    }

    h3 {
        font-size: 1.4rem !important;
        line-height: 1.4 !important;
        word-wrap: break-word;
    }

    p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        word-wrap: break-word;
        hyphens: auto;
    }

    /* Prevent horizontal overflow */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

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





    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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

    .sticky-header {
        padding: 10px 0;
        min-height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100%;
        background: var(--deep-navy) !important;
        border-bottom: 2px solid #D3A94A;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        text-align: left;
        height: 100%;
        min-height: 40px;
    }

    .logo {
        justify-content: flex-start;
        flex: 1;
    }

    .logo-image {
        height: 35px;
    }

    .logo h2 {
        font-size: 1.1rem;
        margin-left: 8px;
    }

    .phone-btn {
        font-size: 0.85rem;
        padding: 10px 16px;
        white-space: nowrap;
        flex-shrink: 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }

    .container {
        padding: 0 15px;
    }

    .why-choose h2,
    .how-it-works-text h2,
    .testimonials-text h2 {
        font-size: 2rem;
    }

    .footer {
        padding: 40px 0 30px;
    }

    /* New sections responsive styles */
    .checklist {
        max-width: 100%;
        gap: 10px;
        margin-bottom: 25px;
    }

    .check-item {
        padding: 12px 15px;
        flex-direction: row;
        text-align: left;
        font-size: 0.9rem;
        border-radius: 8px;
        align-items: flex-start;
        gap: 10px;
    }

    .hero-cta-buttons {
        gap: 15px;
    }

    .hero-cta {
        margin-top: 30px;
    }

    .cta-primary {
        width: 100%;
        max-width: 320px;
        padding: 14px 25px !important;
        font-size: 1rem !important;
        margin: 0 auto;
        display: block;
        text-align: center;
    }

    .urgency-cta-button {
        width: 100%;
        max-width: 350px;
        padding: 15px 20px;
        font-size: 0.95rem;
        text-align: center;
        margin: 0 auto;
    }

    .feature-card {
        padding: 30px 25px;
    }

    .feature-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .feature-card h3 {
        font-size: 1.4rem;
    }

    .feature-card p {
        font-size: 1rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .step-content {
        padding: 25px 20px;
        height: 140px;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .urgency-cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .how-it-works h2 {
        font-size: 2.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-card {
        min-height: 350px;
        height: auto;
        padding: 35px 30px;
    }

    .testimonials h2 {
        font-size: 2.2rem;
    }

    .quote-icon {
        font-size: 3rem;
    }

    .stars {
        font-size: 1.2rem;
    }

    /* Carousel responsive styles */
    .carousel-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .carousel-wrapper {
        border-radius: 15px;
        overflow: hidden;
        position: relative;
        width: 100%;
        max-width: 100%;
    }

    .carousel-track {
        height: 300px;
        width: 1500%;
        display: flex;
        position: relative;
    }

    .carousel-slide {
        height: 300px;
        min-width: 6.666%;
        width: 6.666%;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        border: none;
        outline: none;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .carousel-overlay {
        padding: 20px 15px 15px;
    }

    .carousel-overlay h4 {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }

    .carousel-overlay p {
        font-size: 0.9rem;
    }

    .carousel-dots {
        gap: 6px;
        margin-top: 20px;
        flex-wrap: wrap;
        max-width: 100%;
        justify-content: center;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
        flex-shrink: 0;
    }

    .testimonial-card p {
        font-size: 1rem;
    }

    /* Gallery Mobile Styles */
    .gallery h2 {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery-item {
        aspect-ratio: 16/10;
    }

    .gallery-overlay {
        padding: 20px 15px 15px;
    }

    .gallery-overlay h4 {
        font-size: 1.1rem;
    }

    .gallery-overlay p {
        font-size: 0.9rem;
    }



    .testimonial-item {
        flex-direction: column !important;
        text-align: center;
        gap: 20px !important;
        padding: 30px 20px !important;
    }

    .testimonial-item img {
        width: 80px !important;
        height: 80px !important;
    }

    .testimonial-item p {
        font-size: 1rem !important;
    }

    .final-cta h2 {
        font-size: 2.2rem;
    }

    .final-cta p {
        font-size: 1.1rem;
    }

    .final-cta-buttons {
        gap: 15px;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px 0 30px;
        align-items: center;
    }

    .footer-left,
    .footer-right {
        justify-content: center;
        align-items: center;
    }

    .footer-left {
        align-items: center;
    }

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

    .footer-cta-buttons {
        align-items: center;
    }

    .footer-cta h2 {
        font-size: 2rem;
        font-family: 'Inter', sans-serif;
        letter-spacing: -0.02em;
    }

    .footer-cta p {
        font-size: 1.1rem;
        font-family: 'Inter', sans-serif;
        letter-spacing: -0.01em;
    }

    .footer-info {
        align-items: center;
        text-align: center;
    }

    .footer-logo-box {
        width: 100px;
        height: 100px;
        margin: 0 auto 15px auto;
    }

    .footer-logo-main {
        height: 65px;
    }

    .footer-info h3 {
        font-size: 1.6rem;
        font-family: 'Inter', sans-serif;
        letter-spacing: -0.02em;
    }

    .footer-info p {
        font-size: 1rem;
        font-family: 'Inter', sans-serif;
        letter-spacing: -0.01em;
    }

    .footer-logo {
        height: 45px;
        margin-bottom: 6px;
    }

    .footer h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .footer p {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .footer .copyright {
        font-size: 0.8rem;
        margin-top: 12px;
    }


}

/* Reservation Modal Styles */
.reservation-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.reservation-modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    color: var(--charcoal-grey);
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding: 20px 25px 0 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-green);
}

.reservation-modal-header {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    padding: 30px 30px 25px;
    border-radius: 15px 15px 0 0;
    text-align: center;
}

.reservation-modal-header h3 {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.reservation-modal-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

.reservation-form {
    padding: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--charcoal-grey);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(74, 93, 35, 0.1);
}

.bot-protection {
    background: var(--soft-grey);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(74, 93, 35, 0.3);
}

.submit-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 93, 35, 0.4);
}

.form-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--charcoal-grey);
    opacity: 0.8;
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {

    .btn:hover,
    .phone-btn:hover,
    .footer-logo-box:hover,
    .logo-image:hover {
        transform: none;
    }

    .btn:active,
    .phone-btn:active {
        transform: scale(0.98);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .reservation-modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 25px 20px;
    }

    .modal-form input,
    .modal-form textarea {
        padding: 12px 15px;
        font-size: 1rem;
    }

    .modal-form button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .close-modal {
        font-size: 1.5rem;
        padding: 5px 10px;
    }

    .reservation-form {
        padding: 20px;
    }

    .reservation-modal-header {
        padding: 25px 20px 20px;
    }

    .reservation-modal-header h3 {
        font-size: 1.5rem;
    }



    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .slide-caption {
        padding: 30px 20px 20px;
    }

    .slide-caption h3 {
        font-size: 1.3rem;
    }

    /* Extra Small Mobile Styles */
    @media (max-width: 480px) {
        .container {
            padding: 0 15px;
        }

        .sticky-header {
            padding: 8px 0;
            min-height: 50px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100vw;
            max-width: 100%;
        }

        .logo-image {
            height: 30px;
        }

        .logo h2 {
            font-size: 1rem;
            margin-left: 6px;
        }

        .phone-btn {
            font-size: 0.8rem;
            padding: 6px 12px;
        }

        .hero {
            min-height: calc(100vh - 60px);
            padding: 120px 0 60px;
            padding-top: calc(120px + env(safe-area-inset-top, 0px));
            margin-top: 60px;
            display: flex;
            align-items: center;
            box-sizing: border-box;
        }

        .hero-content {
            padding: 40px 10px 15px;
            width: 100%;
        }

        .hero h1 {
            font-size: 1.6rem;
            line-height: 1.4;
            margin-bottom: 15px;
            padding: 0 5px;
            word-wrap: break-word;
            hyphens: auto;
        }

        .hero-subtitle {
            font-size: 0.9rem;
            line-height: 1.4;
            margin-bottom: 20px;
            padding: 0 5px;
        }

        /* Small mobile carousel fixes */
        .storage-gallery {
            padding: 40px 0;
        }

        .storage-gallery h2 {
            font-size: 1.8rem;
        }

        .carousel-container {
            max-width: 100%;
            padding: 0 10px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .carousel-track {
            height: 220px;
            width: 1500%;
            display: flex;
            transition: transform 0.6s ease;
        }

        .carousel-slide {
            height: 220px;
            min-width: 6.666%;
            width: 6.666%;
            overflow: hidden;
            flex-shrink: 0;
            position: relative;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            border: none;
            outline: none;
        }

        .carousel-btn {
            width: 35px;
            height: 35px;
            font-size: 1rem;
        }

        .carousel-btn.prev {
            left: 5px;
        }

        .carousel-btn.next {
            right: 5px;
        }

        .carousel-dots {
            gap: 4px;
            margin-top: 12px;
            padding: 0 10px;
        }

        .carousel-dot {
            width: 6px;
            height: 6px;
        }

        .hero-subtitle {
            font-size: 1rem;
        }

        .hero-buttons .btn {
            max-width: 280px;
            padding: 12px 20px;
            font-size: 0.9rem;
        }

        .features-grid {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .feature-card {
            padding: 18px 15px;
        }

        .feature-card h3 {
            font-size: 1.2rem;
        }

        .feature-card p {
            font-size: 0.9rem;
        }

        /* Small mobile checklist */
        .checklist {
            gap: 8px;
            margin-bottom: 20px;
        }

        .check-item {
            padding: 10px 12px;
            font-size: 0.85rem;
            gap: 8px;
        }

        /* Small mobile CTA improvements */
        .cta-primary {
            max-width: 280px !important;
            padding: 12px 20px !important;
            font-size: 0.95rem !important;
        }

        .urgency-cta-button {
            max-width: 300px;
            padding: 12px 15px;
            font-size: 0.9rem;
        }

        /* Small mobile testimonials */
        .testimonial-card {
            padding: 25px 20px;
            min-height: auto;
        }

        .testimonial-card p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Small mobile steps */
        .steps-container {
            gap: 20px;
        }

        .step-card {
            padding: 20px 15px;
        }

        .step-card h3 {
            font-size: 1.1rem;
        }

        .step-card p {
            font-size: 0.9rem;
        }

    }

    /* Extra small mobile (320px and below) */
    @media (max-width: 360px) {
        .hero {
            min-height: calc(100vh - 50px);
            padding: 100px 0 50px;
        }

        .hero-content {
            padding: 30px 5px 10px;
        }

        .hero h1 {
            font-size: 1.4rem;
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .hero-subtitle {
            font-size: 0.85rem;
            line-height: 1.3;
            margin-bottom: 18px;
        }

        .container {
            padding: 0 10px;
        }

        h2 {
            font-size: 1.6rem !important;
        }

        h3 {
            font-size: 1.2rem !important;
        }

        .logo h2 {
            font-size: 1.1rem;
        }

        .phone-btn {
            font-size: 0.8rem;
            padding: 8px 16px;
        }

        /* Tighter spacing for small screens */
        section {
            padding: 40px 0;
        }

        .why-choose .container,
        .how-it-works .container,
        .testimonials .container,
        .gallery .container,
        .final-cta .container {
            padding: 25px 15px;
            margin: 5px;
        }

        .feature-card {
            height: 180px;
            padding: 25px 15px;
        }
    }
}

/* Mobile Responsive for Carousel - UPDATED 2025-01-23 */
@media (max-width: 768px) {
    .storage-gallery {
        padding: 50px 0;
        background: linear-gradient(135deg, #1C2D40 0%, #2A3F56 100%) !important;
    }

    .storage-gallery h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        color: white !important;
    }

    .storage-gallery p {
        font-size: 1rem;
        margin-bottom: 30px;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .carousel-container {
        max-width: 100% !important;
        padding: 0 15px !important;
        margin: 0 auto !important;
        position: relative !important;
    }

    .carousel-wrapper {
        overflow: hidden !important;
        border-radius: 15px !important;
        position: relative !important;
        width: 100% !important;
        height: 280px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    }

    .carousel-track {
        height: 280px !important;
        width: 1500% !important;
        display: flex !important;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        position: relative !important;
        left: 0 !important;
    }

    .carousel-slide {
        height: 280px !important;
        min-width: 6.666% !important;
        width: 6.666% !important;
        overflow: hidden !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        position: relative !important;
    }

    .carousel-slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
        border: none !important;
        outline: none !important;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        background: rgba(28, 45, 64, 0.9);
        border: 2px solid rgba(211, 169, 74, 0.8);
        border-radius: 50%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .carousel-btn:hover {
        background: rgba(211, 169, 74, 0.9);
        color: #1C2D40;
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .carousel-dots {
        gap: 5px;
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center !important;
        display: flex !important;
    }

    .carousel-dot {
        width: 8px !important;
        height: 8px !important;
        background: rgba(255, 255, 255, 0.5) !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
    }

    .carousel-dot.active,
    .carousel-dot:hover {
        background: #D3A94A !important;
        transform: scale(1.2) !important;
    }

    .footer-cta h2 {
        font-size: 1.8rem;
        font-family: 'Inter', sans-serif;
        letter-spacing: -0.02em;
    }

    .footer-cta p {
        font-size: 1rem;
        font-family: 'Inter', sans-serif;
        letter-spacing: -0.01em;
    }

    .footer-logo-box {
        width: 90px;
        height: 90px;
        margin: 0 auto 12px auto;
    }

    .footer-logo-main {
        height: 55px;
    }
}