/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
:root {
    --primary-color: #4a90e2;
    --primary-dark: #357abd;
    --secondary-color: #f4a623;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f3f4f6;
    --bg-white: #ffffff;
    --border-light: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --section-padding: 5rem 0;
}

/* Base Typography */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
}

h4 {
    font-size: 1.25rem;
}

/* Paragraphs and text */
p {
    margin-bottom: 1rem;
    max-width: 65ch;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-light);
    text-align: inherit;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover, a:focus {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-white);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    text-decoration: none;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 100;
    transition: all var(--transition-normal);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    max-width: 180px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text::before {
    content: "🏠";
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a[aria-current="page"] {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-phone {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color var(--transition-fast) !important;
}

.nav-phone:hover {
    background: var(--secondary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

/* Image placeholders and fallbacks */
.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--bg-light), var(--border-light));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
    border: 2px dashed var(--border-light);
}

.hero-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: var(--shadow-xl);
}

.about-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: var(--shadow-lg);
}

/* Hide broken images and show placeholders */
img[src*="images/"]:not([src$=".svg"]) {
    position: relative;
}

img[src*="images/"]:not([src$=".svg"])::after {
    content: "📷";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-light), var(--border-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
    border-radius: 1rem;
    border: 2px dashed var(--border-light);
}

/* Services Section Layout */
.services {
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .services-layout {
        grid-template-columns: 1fr;
    }
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Service Cards - Modern Border Design */
.service-card {
    background: white;
    padding: 2rem 1.5rem 2.5rem;
    border-radius: 1rem;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: left 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.service-card:hover::before {
    left: 0;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    margin: 0 0 1rem 0;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: center;
}

.service-highlights {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem 0;
    text-align: left;
}

.service-highlights li {
    padding: 0.4rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--primary-color);
    background: transparent;
    margin-top: auto;
    font-size: 0.9rem;
}

.service-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

/* About Section */
.about {
    background: var(--bg-light);
}

.about-text {
    text-align: left;
}

.about-text .section-title {
    text-align: left;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.about-features li:last-child {
    border-bottom: none;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

/* Why Choose Section */
.why-choose {
    background: var(--bg-white);
}

.feature-content {
    margin-top: 3rem;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 2rem 0;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-text {
    padding: 1rem;
}

.feature-text h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.feature-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-benefits {
    list-style: none;
    margin: 0;
}

.feature-benefits li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.feature-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.feature-image:hover img {
    transform: scale(1.05);
}

/* Office Moving Section */
.office-moving-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-light);
}

.office-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.office-text h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.office-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.office-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 0.5rem;
    color: white;
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat span {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-light);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transition: left 0.5s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fefbf3 100%);
}

.testimonial-card:hover::before {
    left: 0;
}

.stars {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-card cite {
    font-style: normal;
}

.testimonial-card cite strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-card cite span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Info */
.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: left 0.5s ease;
}

.contact-method:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.contact-method:hover::before {
    left: 0;
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.hours-list li:last-child {
    border-bottom: none;
}

.note {
    margin-top: 1rem;
    color: var(--text-light);
    font-style: italic;
}

/* Quote Form */
.quote-form-container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.quote-form-container h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.success-message {
    text-align: center;
    color: #059669;
    padding: 1rem;
    border-radius: 0.5rem;
    background: #ecfdf5;
    margin-top: 1rem;
}

/* Service Areas */
.service-areas {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    text-align: center;
    position: relative;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 166, 35, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.1) 35px,
            rgba(255, 255, 255, 0.1) 36px
        );
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.service-areas > * {
    position: relative;
    z-index: 1;
}

.service-areas h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .service-areas h2 {
        color: var(--primary-color);
        background: none;
    }
}

.service-areas .section-subtitle {
    max-width: 100%;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.2rem;
}

.areas-simple-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.area-main {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    border: 2px solid var(--border-light);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.area-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: left 0.6s ease;
}

.area-main:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.area-main:hover::before {
    left: 0;
}

.area-main:first-child {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.area-main:first-child:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

.area-main:last-child {
    background: linear-gradient(135deg, #fefbf3 0%, #fef3c7 100%);
}

.area-main:last-child:hover {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
}

.area-main h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.area-main h3::before {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.area-main:first-child h3 {
    color: #1e40af;
}

.area-main:last-child h3 {
    color: #d97706;
}

.area-main p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 100%;
    font-weight: 400;
}

.areas-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-dark);
    font-style: italic;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2rem;
    border: 1px solid rgba(74, 144, 226, 0.2);
    backdrop-filter: blur(10px);
    font-weight: 500;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.areas-note:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Service Areas Compact (for contact section) */
.service-areas-compact {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.service-areas-compact h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-areas-compact > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 100%;
}

.areas-simple {
    margin: 1.5rem 0;
}

.areas-simple p {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    text-align: left;
    max-width: 100%;
}

.areas-simple strong {
    color: var(--primary-color);
    font-weight: 600;
}

.service-areas-compact .areas-note {
    margin-top: 2rem;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.cta-section .btn-secondary:hover {
    background: transparent;
    color: white;
}

/* Navigation Active State */
.nav-menu a[aria-current="page"] {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-menu a[aria-current="page"]::after {
    width: 100%;
}

/* Service Detail Page */
.service-detail {
    padding: 5rem 0;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-text h2 {
    margin-bottom: 1.5rem;
}

.service-text .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-includes {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.service-includes li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    font-weight: 500;
}

.service-includes li:last-child {
    border-bottom: none;
}

.service-image {
    position: sticky;
    top: 6rem;
}

.service-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

/* Process Steps */
.process-steps {
    background: var(--bg-light);
    padding: 5rem 0;
    text-align: center;
}

.process-steps h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Specializations */
.specializations {
    padding: 5rem 0;
    text-align: center;
}

.specializations h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.specialization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.specialization-item {
    text-align: center;
}

.specialization-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.specialization-item img:hover {
    transform: scale(1.05);
}

.specialization-item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Pricing Info */
.pricing-info {
    background: var(--bg-light);
    padding: 5rem 0;
}

.pricing-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.pricing-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.pricing-text li {
    margin-bottom: 0.5rem;
}

.pricing-cta {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    height: fit-content;
}

.pricing-cta h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pricing-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Service Testimonials */
.service-testimonials {
    padding: 5rem 0;
}

/* Contact Page Styles */
.contact-methods {
    padding: 5rem 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-link {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    margin: 1rem 0;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-card small {
    color: var(--text-light);
    font-style: italic;
}

/* Enhanced Contact Form */
.quote-form-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.enhanced-contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    transition: all var(--transition-fast);
}

.checkbox-label:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
}

.form-submit {
    text-align: center;
    padding-top: 2rem;
}

.form-privacy {
    margin-top: 1rem;
    color: var(--text-light);
}

/* Contact Info Grid */
.contact-info-section {
    padding: 5rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.info-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hours-list,
.benefits-list {
    list-style: none;
    padding: 0;
}

.hours-list li,
.benefits-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.hours-list li:last-child,
.benefits-list li:last-child {
    border-bottom: none;
}

.service-areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.area-group strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.area-group ul {
    list-style: none;
    padding: 0;
}

.area-group li {
    padding: 0.25rem 0;
    color: var(--text-dark);
}

/* Print Styles */
@media print {
    .header,
    .nav-toggle,
    .btn,
    .contact-form {
        display: none;
    }
    
    .hero,
    .page-hero {
        padding: 2rem 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
} 

/* Animation classes for form transition */
.hero-fade-out {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease;
}

.quote-form-fade-in {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
} 

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: white;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
} 

/* One-Page Additional Styles */

/* Contact Section Styles */
.contact-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: left 0.5s ease;
}

.contact-method:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.contact-method:hover::before {
    left: 0;
}

.contact-method h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.hours-list li {
    padding: 0.25rem 0;
}

.note {
    font-style: italic;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Quote Form Container */
.quote-form-container {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.quote-form-container h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.success-message {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 1rem;
}

/* Service Areas Styles */
.service-areas {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-light);
}

.service-areas h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.area-column h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.area-column ul {
    list-style: none;
    padding: 0;
}

.area-column li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.area-column li:last-child {
    border-bottom: none;
}

.areas-note {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    margin-top: 2rem;
}

/* House Removals Section */
.house-removals {
    padding: 5rem 0;
    background: var(--bg-white);
}

.house-removals-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-text h3,
.service-text h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-includes {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.service-placeholder {
    background: var(--bg-light);
    height: 300px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-light);
}

/* Process Steps Styles */
.process-steps {
    margin: 4rem 0;
}

.process-steps h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-item {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid var(--border-light);
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: left 0.5s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.step-item:hover::before {
    left: 0;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Specializations */
.specializations {
    margin: 4rem 0;
}

.specializations h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.specialization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.specialization-item {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid var(--border-light);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.specialization-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transition: left 0.5s ease;
}

.specialization-item:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fefbf3 100%);
}

.specialization-item:hover::before {
    left: 0;
}

.specialization-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.specialization-item h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Pricing Info */
.pricing-info {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 1rem;
    margin: 4rem 0;
}

.pricing-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.pricing-text h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pricing-text ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.pricing-text li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-text li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.pricing-cta {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.pricing-cta h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pricing-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Service Testimonials */
.service-testimonials {
    margin: 4rem 0;
}

.service-testimonials h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Services Detail Section */
.services-overview {
    padding: 5rem 0;
    background: var(--bg-light);
    text-align: center;
}

.intro-text {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.intro-text p {
    max-width: 100%;
    text-align: center;
}

.services-overview .services-content,
.services-overview .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container,
    .nav-container {
        padding: 0 2.5rem;
    }
}

@media (max-width: 768px) {
    .container,
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-content .service-text {
        text-align: left;
    }
    
    .service-content .service-text h3,
    .service-content .service-text h4 {
        text-align: center;
    }
    
    .pricing-content {
        grid-template-columns: 1fr;
    }
    
    .service-areas {
        padding: 4rem 0;
    }
    
    .service-areas h2 {
        font-size: 2rem;
    }
    
    .areas-simple-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .area-main {
        padding: 2.5rem 2rem;
    }
    
    .area-main h3 {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .area-main p {
        font-size: 1rem;
    }
    
    .areas-note {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        margin-top: 2rem;
    }
    

    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .specialization-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text .section-title {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container {
        padding: 0 1rem;
    }
} 

/* Additional Service Page Styles */

/* Packing Materials Section */
.packing-materials {
    background: var(--bg-white);
    padding: 5rem 0;
}

.packing-materials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.material-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-normal);
}

.material-item:hover {
    border-color: var(--primary-color);
    background: var(--bg-white);
}

.material-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Storage Sizes Section */
.storage-sizes {
    background: var(--bg-light);
    padding: 5rem 0;
}

.storage-sizes h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.sizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.size-item {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid var(--border-light);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.size-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: left 0.5s ease;
}

.size-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.size-item:hover::before {
    left: 0;
}

.size-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.size-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.size-dimensions {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.size-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    text-align: left;
}

.size-features li {
    padding: 0.4rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Security Features Section */
.security-features {
    background: var(--bg-white);
    padding: 5rem 0;
}

.security-features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--border-light);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transition: left 0.5s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    background: var(--bg-white);
}

.feature-item:hover::before {
    left: 0;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Storage Types Section */
.storage-types {
    background: var(--bg-light);
    padding: 5rem 0;
}

.storage-types h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.type-item {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid var(--border-light);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.type-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: left 0.5s ease;
}

.type-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.type-item:hover::before {
    left: 0;
}

.type-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.type-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .materials-grid,
    .sizes-grid,
    .features-grid,
    .types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .size-item,
    .feature-item,
    .type-item,
    .material-item {
        padding: 2rem;
    }
} 