/* Reset and Base Styles */
:root {
    --primary-color: #ff6b6b;
    --secondary-color: #D2691E;
    --accent-color: #FFD700;
    --text-color: #2F4F4F;
    --light-text: #696969;
    --background-color: #ffffff;
    --light-background: #FFF8DC;
    --border-color: #DEB887;
    --success-color: #32CD32;
    --error-color: #DC143C;
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 1rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    border: none;
    gap: 0.5rem;
}

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

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

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--text-color);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-left, .top-bar-center, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-email, .top-bar-phone {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-email:hover, .top-bar-phone:hover {
    color: var(--accent-color);
}

.top-bar-social {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color var(--transition-speed) ease;
}

.top-bar-social:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Header */
.site-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: var(--header-height);
}

.header-logo a {
    text-decoration: none;
    display: block;
}

.header-logo img {
    height: 90px;
    width: auto;
    max-width: 200px;
    border-radius: 50%;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-speed) ease;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 1rem 0;
    min-width: 200px;
    display: none;
    z-index: 1001;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    display: block;
    transition: background-color var(--transition-speed) ease;
}

.dropdown-menu a:hover {
    background-color: var(--light-background);
    color: var(--primary-color);
}

/* Mobile Navigation Styles */
.mobile-menu-toggle {
    display: none; /* Hidden by default, shown in responsive.css */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
}

.nav-links.active {
    display: block;
    position: absolute;
    top: 100%; /* Position below the header */
    right: 0;
    width: 280px;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    z-index: 1000;
}

.nav-links.active .nav-menu {
    flex-direction: column;
    gap: 1rem;
}

.nav-links.active .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
}

/* Hero Section */
.hero-section {
    background-image: url(../images/hero.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 2rem 0; /* Reduced from 4rem */
    min-height: 70vh; /* Reduced from 80vh */
    display: flex;
    align-items: center;
}

/* Add overlay for better text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section .container {
    display: block;
    position: relative;
    z-index: 2;
}

.hero-layout {
    display: flex;
    align-items: stretch;
    gap: 2rem; /* Reduced from 3rem */
    margin-bottom: 1.5rem; /* Reduced from 3rem */
    text-align: left;
    justify-content: center;
}

.hero-content {
    flex: 1 1 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    max-width: 600px;
}

.hero-content h1 {
    color: #ffffff;
    margin-bottom: 1rem; /* Reduced from 1.5rem */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1; /* Reduced from 1.2 */
}

.hero-content p {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1.5rem; /* Reduced from 2rem */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    line-height: 1.4; /* Reduced from 1.6 */
    opacity: 0.95;
    max-width: 500px; /* Constrain width for better readability */
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-form {
    flex: 1 1 400px;
    max-width: 600px;
    display: flex;
    align-items: center;
}

.hero-form-container {
    background: rgba(45, 55, 72, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 2.5rem 1.5rem; /* Reduced from 3.5rem 2rem */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 100%;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-form-container h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem; /* Reduced from 0.5rem */
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-form-container p {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem; /* Added margin bottom for spacing */
}

/* Hero Quote Form - Independent Styles */
.hero-quote-form {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    max-width: 600px;
    margin: 0;
    padding: 1rem;
    color: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hero-quote-form input, 
.hero-quote-form textarea, 
.hero-quote-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 0;
    transition: all 0.2s ease;
    background: #fff;
    color: var(--text-color);
}

.hero-quote-form input:focus,
.hero-quote-form textarea:focus,
.hero-quote-form select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-quote-form input::placeholder,
.hero-quote-form textarea::placeholder {
    color: #a0aec0;
}

.hero-quote-form button {
    width: 100%;
    padding: 16px 24px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-quote-form button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: flex;
    gap: 1.2rem;
}

.form-row input {
    flex: 1 1 0;
}

/* Hero Features Section */
.hero-features-section {
    background-color: var(--primary-color);
    padding: 2rem 0;
    color: white;
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-speed) ease;
    padding: 0.5rem;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item img {
    max-height: 80px; /* Increased from 60px */
    width: auto;
    max-width: 160px; /* Increased from 120px */
    filter: brightness(0) invert(1); /* Make images white */
    transition: filter var(--transition-speed) ease;
}

.feature-item:hover img {
    filter: brightness(1) invert(0); /* Show original colors on hover */
}

/* Hero image styles removed - replaced with form layout */

/* Trusted Section */
.trusted-section {
    background-color: var(--background-color);
    padding: 4rem 0;
    color: var(--text-color);
}

.trusted-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trusted-heading {
    text-align: center;
    margin-bottom: 1rem;
}

.trusted-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.2;
}

.trusted-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.trusted-image {
    flex: 1 1 50%;
    max-width: 50%;
}

.trusted-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition-speed) ease;
}

.trusted-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.trusted-text {
    flex: 1 1 50%;
    padding-left: 1rem;
}

.trusted-intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.trusted-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.2rem;
}

.trusted-full-content {
    background-color: var(--light-background);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.trusted-full-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.2rem;
}

.trusted-cta {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.trusted-cta strong {
    color: var(--primary-color);
    font-weight: 700;
}

.trusted-cta-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    border-bottom: 2px solid transparent;
}

.trusted-cta-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    text-decoration: none;
}

.trusted-cta-link strong {
    color: inherit;
    font-weight: inherit;
}

/* Services Section */
.services-section {
    background-color: var(--primary-color);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}


.services-section .container {
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
    justify-items: center;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    max-width: 360px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}


.service-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.8) 0%, rgba(210, 105, 30, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.service-content {
    padding: 2rem 2rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-content p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* CTA Section */
.cta-section {
    background-color: var(--background-color);
    padding: 4rem 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-content .btn {
    margin-top: 1rem;
}

/* Footer */
.pricing-section {
    background: var(--primary-color);
    color: #fff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    color: #fff;
    font-size: 2.6rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.pricing-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.pricing-card {
    flex: 1 1 260px;
    max-width: 380px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    backdrop-filter: blur(8px);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.3);
}

.pricing-tier {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 900;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.pricing-rate {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1.25rem;
}

.pricing-rate span {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.pricing-rate strong {
    font-size: 2rem;
    color: #FFD700;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(255,255,255,0.95);
    text-align: center;
}

.pricing-features li {
    margin-bottom: 0.6rem;
}

.pricing-divider {
    height: 2px;
    background: rgba(255,255,255,0.2);
    margin: 0.75rem 0 1rem 0;
    align-self: stretch;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 800;
    color: #1f2937;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-bottom: 0.75rem;
    width: auto;
}

.badge-small { background: #e6f0ff; color: #1e3a8a; }
.badge-standard { background: #e9fff3; color: #065f46; }
.badge-big { background: #fff3e0; color: #8a4b00; }

.pricing-card-cta { margin-top: 1.25rem; }

.pricing-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.pricing-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
}

.pricing-bg-shape-1 {
    width: 300px;
    height: 300px;
    background: #D2691E;
    top: -60px;
    left: -60px;
}

.pricing-bg-shape-2 {
    width: 260px;
    height: 260px;
    background: #FFD700;
    bottom: -60px;
    right: -60px;
}
.why-section {
    background: var(--background-color);
    color: var(--text-color);
    padding: 4.5rem 0;
    position: relative;
}

.why-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.why-header h2 {
    font-size: 2.6rem;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.2rem 2rem;
}

.why-tile {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    gap: 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 26px rgba(0,0,0,0.08);
    padding: 1.25rem;
}

/* Zigzag: invert columns on even tiles for desktop */
.why-tile:nth-child(even) {
    grid-template-columns: 1fr 220px;
}
.why-tile:nth-child(even) .why-media { order: 2; }
.why-tile:nth-child(even) .why-content { order: 1; }

.why-media-frame {
    overflow: hidden;
    border-radius: 12px;
}
.why-media-frame img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}
.why-tile:hover .why-media-frame img { transform: scale(1.06); }

.why-badge {
    display: inline-block;
    background: var(--light-background);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.why-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
}

.why-content p {
    margin-bottom: 0;
}

/* Service Areas Section */
.service-areas-section {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.service-areas-section .container {
    position: relative;
    z-index: 2;
}

.service-areas-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-areas-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    margin-bottom: 0;
}

.service-areas-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.service-areas-column {
    display: flex;
    flex-direction: column;
}

.service-areas-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-areas-list li {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
    transition: all var(--transition-speed) ease;
}

.service-areas-list li:last-child {
    border-bottom: none;
}

.service-areas-list li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0.75rem;
}

.service-areas-list li:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Care Section */
.care-section {
    background: var(--background-color);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.care-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.02) 0%, rgba(210, 105, 30, 0.02) 50%, rgba(255, 215, 0, 0.02) 100%);
    z-index: 1;
}

.care-section .container {
    position: relative;
    z-index: 2;
}

.care-header {
    text-align: center;
    margin-bottom: 4rem;
}

.care-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.care-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.care-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.care-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
}

.care-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.care-item-left {
    flex-direction: row;
}

.care-item-right {
    flex-direction: row-reverse;
}

.care-visual {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.care-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
    transition: all var(--transition-speed) ease;
}

.care-item:hover .care-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.4);
}

.care-icon i {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.care-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 3;
}

.care-text {
    flex: 1;
    padding: 1rem 0;
}

.care-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.care-text p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Reliable Movers Section */
.reliable-movers-section {
    background: var(--primary-color);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.reliable-movers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    z-index: 1;
}

.reliable-movers-section .container {
    position: relative;
    z-index: 2;
}

.reliable-movers-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reliable-movers-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.reliable-movers-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.reliable-movers-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-speed) ease;
}

.image-container:hover {
    transform: translateY(-10px);
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}


.reliable-movers-content {
    color: white;
}

.reliable-movers-text {
    margin-bottom: 0;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reliable-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-speed) ease;
}

.reliable-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.feature-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: all var(--transition-speed) ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--text-color);
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.reliable-movers-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-accent {
    background: var(--accent-color);
    color: var(--text-color);
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: all var(--transition-speed) ease;
}

.btn-accent:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.site-footer {
    background-color: #2F1B14;
    color: white;
    padding: 3rem 0 1rem;
}

/* FAQ Section */
.faq-section {
    background: var(--background-color);
    padding: 4rem 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-header h2 {
    font-size: 2.4rem;
}

.faq-accordion {
    max-width: 760px;
    margin: 0 auto;
}

.faq-accordion-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    margin-bottom: 1.1rem;
    overflow: hidden;
}

.faq-accordion-header {
    width: 100%;
    text-align: left;
    background: var(--primary-color);
    color: #fff;
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
}


.faq-accordion-header i { color: #fff; margin-right: 0.5rem; font-size: 1.1rem; transition: transform 0.25s ease, color var(--transition-speed) ease; }

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: var(--primary-color);
    border-top: 1px solid rgba(0,0,0,0.06);
}

.faq-accordion-body p, .faq-accordion-body li {
    padding: 0 1.25rem 1rem;
    margin: 0;
    font-size: 1rem;
    color: #fff;
}



.faq-accordion-header[aria-expanded="true"] .accordion-icon i { transform: rotate(180deg); }

.faq-accordion-header[aria-expanded="true"] + .faq-accordion-body { max-height: 320px; }

.accordion-icon { color: rgba(255,255,255,0.9); opacity: 1; }
.accordion-icon i { font-size: 0.95rem; transition: transform 0.25s ease; }

/* Moving Process Section */
.moving-process-section {
    background: var(--background-color);
    padding: 4.5rem 0;
}

/* About Victoria Section */
.about-victoria-section {
    background: var(--primary-color);
    color: #fff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about-victoria-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-victoria-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.about-victoria-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-victoria-image .about-image-frame {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.about-victoria-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.about-victoria-content p {
    color: rgba(255,255,255,0.95);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-subtitle {
    margin: 1.25rem 0 0.5rem;
}

.about-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.moving-process-section .section-title {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
}

.moving-process-intro {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 2rem;
    color: var(--text-color);
}

.moving-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Make the fourth card span two columns on desktop to balance rows */
.moving-process-grid .process-card:nth-child(4) {
    grid-column: span 2;
}

.process-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
}


.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

.process-card-image {
    height: 170px;
    overflow: hidden;
}

.process-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem 0.25rem;
}

.process-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.process-card-header h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
}

.process-card-body {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 14rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-speed) ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 14rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.privacy-policy {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.privacy-policy:hover {
    color: white;
}


/* My CSS */


/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cookie-text a {
    color: #ffd700;
    text-decoration: underline;
    margin-left: 5px;
  }

  .cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .cookie-actions button {
    padding: 8px 16px;
    border: none;
    background-color: #ffd700;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
  }

  .cookie-banner.hidden {
    display: none;
  }
  
  /* Responsive adjustments */
  @media (min-width: 600px) {
    .cookie-banner {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  }