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

:root {
    --primary: hsl(222.2, 84%, 4.9%);
    --primary-foreground: hsl(210, 40%, 98%);
    --secondary: hsl(210, 40%, 96%);
    --secondary-foreground: hsl(222.2, 84%, 4.9%);
    --muted: hsl(210, 40%, 96%);
    --muted-foreground: hsl(215.4, 16.3%, 46.9%);
    --accent: hsl(210, 40%, 96%);
    --accent-foreground: hsl(222.2, 84%, 4.9%);
    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(210, 40%, 98%);
    --border: hsl(214.3, 31.8%, 91.4%);
    --input: hsl(214.3, 31.8%, 91.4%);
    --ring: hsl(222.2, 84%, 4.9%);
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(222.2, 84%, 4.9%);
    --popover: hsl(0, 0%, 100%);
    --popover-foreground: hsl(222.2, 84%, 4.9%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(222.2, 84%, 4.9%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
    font-weight: 400;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Top Bar */
.top-bar {
    background-color: #094c8f;
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

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

.top-bar-left {
    width: 100%;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.contact-item a:hover {
    color: #e0e0e0;
}

.contact-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}


/* Mobile Top Bar */
@media (max-width: 768px) {
    .top-bar {
        padding: 0.75rem 0;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .contact-item {
        font-size: 0.8rem;
    }
}

/* Hero Section */
.hero-section {
    background-color: white;
    padding-top: 1.5rem;
}

.appliances-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .appliances-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .appliances-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.appliance-category {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    border-radius: 8px;
}

.section-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    letter-spacing: -0.025em;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    right: 25%;
    height: 3px;
    background-image: linear-gradient(to right, #094c8f 50%, transparent 50%);
    background-position: bottom;
    background-size: 20px 3px;
    background-repeat: repeat-x;
}

.section-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1.25rem;
    color: #555;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.card-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #094c8f;
    line-height: 1.4;
}

.card-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #555;
    line-height: 1.6;
}

.solution-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
}

.bg-muted {
    background-color: #f9fafb;
}

.h-6, .w-6 {
    color: #25D366;
}

.bg-foreground {
    background-color: #094c8f;
}

.text-muted-foreground {
    color: #666;
}

.space-y-12 > * + * {
    margin-top: 3rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-2 {
    gap: 0.5rem;
}

.rounded-lg {
    border-radius: 8px;
}

.rounded-full {
    border-radius: 9999px;
}

.p-8 {
    padding: 2rem;
}

.p-3 {
    padding: 0.75rem;
}

.h-6 {
    height: 1.5rem;
}

.w-6 {
    width: 1.5rem;
}

.h-1\.5 {
    height: 0.375rem;
}

.w-1\.5 {
    width: 0.375rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-sm {
    font-size: 0.875rem;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.leading-relaxed {
    line-height: 1.625;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-6xl {
    max-width: 72rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.flex {
    display: flex;
}

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

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

.transition-shadow {
    transition-property: box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.card-shadow {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.blue-bg-card {
    background-color: #094c8f;
    border-color: #094c8f;
}

.blue-bg-card .card-title,
.blue-bg-card .card-text,
.blue-bg-card .solution-text {
    color: white;
}

.blue-bg-card .bg-muted {
    background-color: rgba(255, 255, 255, 0.2);
}

.blue-bg-card .h-6,
.blue-bg-card .w-6 {
    color: white;
}

.blue-bg-card .bg-foreground {
    background-color: white;
}

.hover\:shadow-sm:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:text-4xl {
        font-size: 2.25rem;
    }
    
    .md\:text-xl {
        font-size: 1.25rem;
    }
}

/* Emergency Banner */
.emergency-banner {
    background-color: #ff3a3a;
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, #ff3a3a 0%, #ff5c5c 100%);
    box-shadow: inset 0 0 50px rgba(0,0,0,0.1);
}

.emergency-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.emergency-icon-container {
    margin-bottom: 1.5rem;
}

.emergency-main-icon {
    width: 4rem;
    height: 4rem;
    color: white;
    animation: pulse 2s infinite;
}

.emergency-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.emergency-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.emergency-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.emergency-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-emergency {
    background-color: white;
    color: #ff3a3a;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.btn-emergency:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.btn-emergency-secondary {
    background-color: rgba(255,255,255,0.2);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-emergency-secondary:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.emergency-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Maintenance Banner */
.maintenance-banner {
    background-color: #094c8f;
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, #094c8f 0%, #1e6cb3 100%);
    box-shadow: inset 0 0 50px rgba(0,0,0,0.1);
}

.maintenance-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.maintenance-icon-container {
    margin-bottom: 1.5rem;
}

.maintenance-main-icon {
    width: 4rem;
    height: 4rem;
    color: white;
    animation: pulse 2s infinite;
}

.maintenance-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.maintenance-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.maintenance-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.maintenance-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.maintenance-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-maintenance {
    background-color: white;
    color: #094c8f;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.btn-maintenance:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.btn-maintenance-secondary {
    background-color: rgba(255,255,255,0.2);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-maintenance-secondary:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.maintenance-icon {
    width: 1.5rem;
    height: 1.5rem;
}

@media (max-width: 768px) {
    .emergency-title {
        font-size: 2rem;
    }
    
    .emergency-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .emergency-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .maintenance-title {
        font-size: 2rem;
    }
    
    .maintenance-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .maintenance-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Commercial Equipment Section */
.commercial-equipment {
    padding: 5rem 0;
    background-color: white;
    border-top: 1px solid #eaeaea;
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .equipment-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.equipment-card {
    background-color: #f9f9f9;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.equipment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 1rem;
}

.equipment-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #094c8f;
}

.equipment-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #094c8f;
}

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

.equipment-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.list-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #094c8f;
    flex-shrink: 0;
}

/* Business Protection Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background-color: white;
    border-top: 1px solid #eaeaea;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.benefits-card {
    background-color: #f9f9f9;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.benefits-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 1rem;
}

.benefits-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #094c8f;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #094c8f;
}

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

.benefits-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eaeaea;
    line-height: 1.5;
}

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

.benefits-list li strong {
    color: #094c8f;
    display: block;
    margin-bottom: 0.25rem;
}

.benefits-cta {
    margin-top: 3rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0 3rem;
    background-color: white;
    border-bottom: 1px solid #eaeaea;
}

.advantages-list {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .advantages-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .advantages-list {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
    }
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #f9fafb;
    border: 1px solid #eaeaea;
    height: 100%;
}

.advantage-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #25D366;
    border-radius: 50%;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.advantage-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.advantage-content {
    flex: 1;
}

.advantage-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.advantage-text {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

.advantage-list {
    margin: 0.5rem 0 0 0;
    padding-left: 1.25rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.advantage-list li {
    margin-bottom: 0.5rem;
}

.advantage-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .advantage-item {
        padding: 1.25rem;
    }
    
    .check-icon {
        width: 2rem;
        height: 2rem;
        margin-right: 1rem;
    }
    
    .check {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .advantage-title {
        font-size: 1.125rem;
    }
}

/* Service Areas Section */
.service-areas {
    padding: 5rem 0 3rem;
    background-color: white;
    border-bottom: 1px solid #eaeaea;
}

/* Recent Installation Projects Section */
.testimonials-section {
    padding: 5rem 0 3rem;
    background-color: #f9fafb;
    border-bottom: 1px solid #eaeaea;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Urgent Services Section */
.urgent-services {
    padding: 5rem 0 3rem;
    background-color: white;
    border-bottom: 1px solid #eaeaea;
}

/* Energy Efficiency Section */
.efficiency-section {
    padding: 5rem 0 3rem;
    background-color: #f9fafb;
    border-bottom: 1px solid #eaeaea;
}

.efficiency-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

@media (min-width: 768px) {
    .efficiency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.efficiency-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.efficiency-card:nth-child(1) {
    animation-delay: 0.2s;
}

.efficiency-card:nth-child(2) {
    animation-delay: 0.4s;
}

.efficiency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.efficiency-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 136, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.efficiency-icon {
    width: 2rem;
    height: 2rem;
    color: #ff8800;
}

.efficiency-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

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

.efficiency-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.efficiency-list .check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #4caf50;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.efficiency-list span {
    color: #555;
}

.efficiency-list strong {
    color: #333;
}

.efficiency-cta {
    margin-top: 3rem;
}

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

.urgent-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.urgent-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .urgent-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.urgent-card {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
}

.urgent-card.red-card {
    background-color: #ff3a3a;
    color: white;
    border: none;
}

.urgent-card.blue-card {
    background-color: #094c8f;
    color: white;
    border: none;
}

.blue-card .urgent-icon {
    background-color: white;
    color: #094c8f;
}

.red-card .urgent-icon {
    background-color: white;
    color: #ff3a3a;
}

.red-card .urgent-list li:before {
    color: white;
}

.urgent-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #ff3a3a;
    color: white;
    margin-bottom: 1rem;
}

.urgent-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.urgent-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.urgent-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.urgent-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #555;
}

.blue-card .urgent-list li {
    color: white;
}

.problem-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #ff3a3a;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.solution-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #25D366;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Maintenance Matters Section */
.maintenance-matters-section {
    padding: 5rem 0;
    background-color: white;
    border-bottom: 1px solid #eaeaea;
}

.comparison-matrix {
    max-width: 900px;
    margin: 3rem auto 0;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.matrix-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: #094c8f;
    color: white;
    font-weight: 600;
}

.matrix-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #eaeaea;
}

.matrix-row:last-child {
    border-bottom: none;
}

.matrix-cell {
    padding: 1.25rem 1rem;
    display: flex;
    align-items: center;
}

.header-cell {
    justify-content: center;
    padding: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.category-cell {
    background-color: #f1f5f9;
    font-weight: 600;
    color: #333;
    border-right: 1px solid #eaeaea;
}

.problem-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #fff1f1;
    color: #e53e3e;
    border-right: 1px solid #eaeaea;
}

.solution-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #f0fff4;
    color: #38a169;
}

.problem-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #e53e3e;
    flex-shrink: 0;
}

.solution-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #38a169;
    flex-shrink: 0;
}

.maintenance-cta {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .matrix-header {
        display: none;
    }
    
    .matrix-row {
        display: grid;
        grid-template-columns: 1fr;
        margin-bottom: 1.5rem;
        border: 1px solid #eaeaea;
        border-radius: 0.5rem;
        overflow: hidden;
    }
    
    .category-cell {
        background-color: #094c8f;
        color: white;
        border-right: none;
        border-bottom: 1px solid #eaeaea;
    }
    
    .problem-cell, .solution-cell {
        border-right: none;
    }
    
    .problem-cell {
        border-bottom: 1px solid #eaeaea;
    }
}

/* Services Tiers Section */
.services-tiers-section {
    padding: 5rem 0;
    background-color: white;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
}

.services-tiers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1% 1%, #f0f9ff 9px, transparent 10px),
                      radial-gradient(circle at 5% 5%, #f0f9ff 9px, transparent 10px);
    background-size: 60px 60px;
    opacity: 0.3;
    z-index: 0;
}

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

.tiers-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

@media (min-width: 768px) {
    .tiers-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tiers-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tier-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.tier-card:nth-child(1) {
    animation-delay: 0.1s;
}

.tier-card:nth-child(2) {
    animation-delay: 0.3s;
}

.tier-card:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.basic-tier {
    border-top: 4px solid #38a169;
}

.premium-tier {
    border-top: 4px solid #094c8f;
    box-shadow: 0 8px 16px rgba(9, 76, 143, 0.15);
    position: relative;
    z-index: 1;
    transform: scale(1.05);
}

.premium-tier::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #ff8800;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enterprise-tier {
    border-top: 4px solid #e53e3e;
}

.tier-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eaeaea;
}

.tier-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background-color: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.basic-tier .tier-icon-wrapper {
    background-color: rgba(56, 161, 105, 0.1);
}

.premium-tier .tier-icon-wrapper {
    background-color: rgba(9, 76, 143, 0.1);
}

.enterprise-tier .tier-icon-wrapper {
    background-color: rgba(229, 62, 62, 0.1);
}

.tier-icon {
    width: 2rem;
    height: 2rem;
}

.basic-tier .tier-icon {
    color: #38a169;
}

.premium-tier .tier-icon {
    color: #094c8f;
}

.enterprise-tier .tier-icon {
    color: #e53e3e;
}

.tier-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.tier-features {
    list-style-type: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.tier-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.tier-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: bold;
}

.tier-cta {
    margin-top: 2rem;
    text-align: center;
}

.tier-cta .btn-primary {
    background-color: #ff8800;
    border-color: #ff8800;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tier-cta .btn-primary:hover {
    background-color: #e67a00;
    border-color: #e67a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 136, 0, 0.3);
}

.service-plans-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

@media (min-width: 768px) {
    .service-plans-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .service-plans-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-plan-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.service-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.featured-plan {
    border: 2px solid #094c8f;
    box-shadow: 0 8px 16px rgba(9, 76, 143, 0.15);
    background-color: #094c8f;
    color: white;
}

.featured-plan .plan-title,
.featured-plan .plan-subtitle,
.featured-plan .plan-features li span {
    color: white;
}

.featured-plan .plan-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.featured-plan .plan-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.featured-plan .plan-icon-svg {
    color: white;
}

.featured-plan .feature-icon {
    color: #4ade80;
}

.featured-plan .btn-primary {
    background-color: white;
    color: #094c8f;
    border-color: white;
}

.featured-plan .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #ff8800;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eaeaea;
}

.plan-icon {
    width: 4rem;
    height: 4rem;
    background-color: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.plan-icon-svg {
    width: 2rem;
    height: 2rem;
    color: #094c8f;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    color: #666;
    font-size: 0.875rem;
}

.plan-features {
    list-style-type: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #38a169;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.plan-cta {
    margin-top: 2rem;
    text-align: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    border: 2px solid #094c8f;
    color: #094c8f;
    background-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #094c8f;
    color: white;
}

/* Seasonal Guide Section */
.seasonal-guide-section {
    padding: 5rem 0;
    background-color: white;
    border-bottom: 1px solid #eaeaea;
}

.seasons-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

@media (min-width: 768px) {
    .seasons-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.season-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.season-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.spring-card {
    border-top: 4px solid #f59e0b;
}

.autumn-card {
    border-top: 4px solid #3b82f6;
}

.season-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.spring-card .season-icon-wrapper {
    background-color: #fef3c7;
}

.autumn-card .season-icon-wrapper {
    background-color: #dbeafe;
}

.season-icon {
    width: 3rem;
    height: 3rem;
}

.spring-card .season-icon {
    color: #f59e0b;
}

.autumn-card .season-icon {
    color: #3b82f6;
}

.season-content {
    padding: 2rem;
}

.season-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.season-tagline {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.season-checklist {
    list-style-type: none;
    padding: 0;
    margin: 0 0 2rem;
}

.season-checklist li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.checklist-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.spring-card .checklist-icon {
    color: #f59e0b;
}

.autumn-card .checklist-icon {
    color: #3b82f6;
}

.season-cta {
    margin-top: auto;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 0;
    background-color: white;
    border-bottom: 1px solid #eaeaea;
}

.why-choose-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .why-choose-container {
        grid-template-columns: 3fr 2fr;
        align-items: center;
    }
}

.why-choose-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #094c8f;
    margin-bottom: 2rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.expertise-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.expertise-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #094c8f;
}

.expertise-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.expertise-description {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.5;
}

.why-choose-image {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    width: 435px;
    height: 435px;
    max-width: 100%;
    margin: 0 auto;
}

.technician-img {
    width: 435px;
    height: 435px;
    max-width: 100%;
    object-fit: cover;
    display: block;
}

.why-choose-cta {
    margin-top: 2rem;
}

/* Smart Investment Section */
.investment-section {
    padding: 5rem 0;
    background-color: white;
    border-bottom: 1px solid #eaeaea;
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

@media (min-width: 768px) {
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefits-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #094c8f;
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.benefit-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #094c8f;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.benefit-description {
    font-size: 0.9375rem;
    color: #666;
}

.investment-cta {
    margin-top: 3rem;
}

/* Business Emergency Protocol Section */
.emergency-protocol-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.protocol-header {
    margin-bottom: 3rem;
}

.protocol-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid #eaeaea;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    border: 1px solid #eaeaea;
}

@media (min-width: 768px) {
    .protocol-step {
        width: calc(50% - 1rem);
    }
}

@media (min-width: 1200px) {
    .protocol-step {
        width: calc(33.333% - 1.33rem);
    }
}

.protocol-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.protocol-icon {
    width: 3rem;
    height: 3rem;
    background-color: #094c8f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.protocol-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.protocol-content {
    flex: 1;
}

.protocol-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #094c8f;
}

.protocol-description {
    margin: 0;
    color: #666;
    font-size: 0.875rem;
    line-height: 1.5;
}

.protocol-cta {
    margin-top: 3rem;
}

/* Process Section */
.process-section {
    padding: 5rem 0 3rem;
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
}

.process-steps {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: center;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #094c8f;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 1rem;
    color: #666;
}

.step-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1.5rem;
    flex-shrink: 0;
}

.step-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #094c8f;
}

.process-cta {
    margin-top: 3rem;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 3.5rem;
    height: calc(100% + 1rem);
    width: 2px;
    background-color: #eaeaea;
    z-index: 1;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #094c8f;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #f9fafb;
    margin-bottom: 0.75rem;
    border: 1px solid #eaeaea;
}

.process-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #094c8f;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
}

.step-list {
    margin: 0.5rem 0 0 0;
    padding-left: 1.25rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.step-list li {
    margin-bottom: 0.5rem;
}

.step-list li:last-child {
    margin-bottom: 0;
}

.process-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 640px) {
    .process-step:not(:last-child):after {
        left: 1rem;
    }
    
    .step-number {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
        margin-right: 1rem;
    }
    
    .step-title {
        font-size: 1.125rem;
    }
}

/* Trust Section */
.trust-section {
    padding: 5rem 0 3rem;
    background-color: white;
    border-bottom: 1px solid #eaeaea;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0 3rem;
    background-color: white;
    border-bottom: 1px solid #eaeaea;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: white;
    border-bottom: 1px solid #eaeaea;
}

.emergency-cta {
    background-color: #ff3a3a;
    background-image: linear-gradient(135deg, #ff3a3a 0%, #ff5c5c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.maintenance-cta {
    background-color: white;
    color: #333;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    border-top: 1px solid #eaeaea;
}

.emergency-header {
    margin-bottom: 3rem;
}

.maintenance-header {
    margin-bottom: 3rem;
}

.emergency-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.maintenance-tagline {
    margin-top: 1rem;
}

.tagline-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #094c8f;
}

.alert-icon {
    width: 2rem;
    height: 2rem;
    color: white;
    animation: pulse 2s infinite;
}

.alert-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.service-promise {
    margin: 3rem 0 1.5rem;
}

.promise-text {
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
    color: #094c8f;
    max-width: 800px;
    margin: 0 auto;
}

.service-areas {
    margin-bottom: 1rem;
}

.areas-text {
    font-size: 1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.contact-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .contact-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.maintenance-cta .contact-card {
    border: 1px solid #e0e0e0;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: #094c8f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-bg {
    background-color: #25D366;
}

.contact-icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.contact-info {
    flex: 1;
}

.contact-type {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
}

.contact-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #094c8f;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.emergency-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
}

.feature-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer Section */
.footer {
    padding: 5rem 0 2rem;
    background-color: #094c8f;
    color: white;
}

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-text {
    margin-top: 1.5rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

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

.logo-img-footer {
    width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-list a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-contact {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

.footer-bottom p {
    margin: 0;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: white;
    opacity: 0.6;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.cta-box {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 3rem 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border: 1px solid #eaeaea;
}

@media (min-width: 1024px) {
    .cta-box {
        flex-direction: row;
        align-items: center;
        padding: 3rem;
    }
    
    .cta-content {
        flex: 1;
    }
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
}

.urgency-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .urgency-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.urgency-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #094c8f;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: #094c8f;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #073d73;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #20bd5a;
}

.btn-icon-left {
    margin-right: 0.5rem;
    width: 1rem;
    height: 1rem;
    vertical-align: middle;
}

.hotline-banner {
    background-color: #ff3a3a;
    color: white;
    padding: 1.25rem;
    border-radius: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    text-align: center;
}

.hotline-icon {
    width: 1.5rem;
    height: 1.5rem;
    animation: pulse 1.5s infinite;
}

.hotline-label {
    font-weight: 700;
    font-size: 1.125rem;
}

.hotline-number {
    font-weight: 700;
    font-size: 1.125rem;
    margin-right: 0.5rem;
}

.hotline-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

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

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #094c8f;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 1.5rem;
    display: none;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.faq-item:first-child .faq-answer {
    display: block;
}

.faq-item:first-child .faq-question {
    color: #094c8f;
}

.faq-item:first-child .faq-question .faq-icon {
    transform: rotate(45deg);
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.trust-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-tag {
    background-color: #f0f7ff;
    color: #094c8f;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    margin: 0 1.5rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    position: absolute;
    top: -12px;
    left: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid rgba(9, 76, 143, 0.1);
}
.trust-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #094c8f;
    flex-shrink: 0;
}

.trust-item p {
    font-weight: 500;
    color: #333;
    margin: 0;
}

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

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto 2rem;
    display: flex;
    overflow: hidden;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 2rem;
    opacity: 1;
    transform: scale(0.9);
    transition: all 0.5s ease;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    visibility: hidden;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #eaeaea;
}

.testimonial-card.active {
    transform: scale(1);
    position: relative;
    visibility: visible;
}

.testimonial-content {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-quote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-top: 1rem;
    position: relative;
    padding: 0 1rem;
}

.testimonial-quote::before {
    content: '\201C';
    font-size: 3rem;
    color: rgba(9, 76, 143, 0.2);
    position: absolute;
    left: 0;
    top: -1rem;
    font-style: normal;
    line-height: 1;
}

.testimonial-quote::after {
    content: '\201D';
    font-size: 3rem;
    color: rgba(9, 76, 143, 0.2);
    position: absolute;
    left: auto;
    right: 0;
    bottom: -2rem;
    top: auto;
    font-style: normal;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #094c8f;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.author-role {
    color: #666;
    font-size: 0.875rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #094c8f;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-quote {
        font-size: 1.125rem;
        padding: 0 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
}

.areas-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.areas-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.areas-description {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
}

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

@media (min-width: 640px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.area-card {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.area-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(9, 76, 143, 0.1);
    color: #094c8f;
    margin-bottom: 1.5rem;
}

.area-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.area-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #094c8f;
}

.area-response {
    color: #25D366;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.area-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.area-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.5;
}

.area-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #094c8f;
    font-weight: bold;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

@media (min-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.reason-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.reason-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(9, 76, 143, 0.1);
    color: #094c8f;
    margin-bottom: 1.5rem;
}

.reason-icon .icon {
    width: 2rem;
    height: 2rem;
}

.reason-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #094c8f;
}

.reason-text {
    color: #666;
    line-height: 1.5;
}

.emergency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%, transparent 50%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.1) 75%, transparent 75%);
    background-size: 4rem 4rem;
    z-index: 1;
}

.emergency-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.emergency-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.emergency-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-emergency {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #073a6f;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn-emergency:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.emergency-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
    animation: pulse 1.5s infinite;
}

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

.services-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.text-bold {
    font-weight: 700;
}

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

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.service-card.blue-card {
    background-color: #094c8f;
    color: white;
    border: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background-color: #094c8f;
    color: white;
    margin-bottom: 1.5rem;
}

.blue-card .service-icon {
    background-color: white;
    color: #094c8f;
}

.service-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #094c8f;
}

.blue-card .service-title {
    color: white;
}

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

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #555;
    line-height: 1.5;
}

.blue-card .service-list li {
    color: #e0e0e0;
}

.service-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #094c8f;
    font-weight: bold;
}

.blue-card .service-list li:before {
    color: white;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 5rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        align-items: flex-start;
        text-align: left;
        max-width: 48rem;
    }
}

.hero-heading {
    margin: 1.5rem 0;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.text-blue {
    color: #094c8f;
}

@media (min-width: 1024px) {
    .hero-heading {
        font-size: 3rem;
    }
}

@media (min-width: 1280px) {
    .hero-heading {
        font-size: 3.5rem;
    }
}

.hero-description {
    margin-bottom: 2rem;
    max-width: 36rem;
    color: var(--muted-foreground);
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

.hero-reviews {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-reviews {
        flex-direction: row;
        width: fit-content;
    }
}

.avatars {
    display: inline-flex;
    margin-right: -1rem;
}

.avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid white;
    overflow: hidden;
    margin-right: -1rem;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info {
    display: flex;
    flex-direction: column;
    padding-left: 2rem;
}

.stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.star-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.star-icon.filled {
    fill: #FACC15;
    color: #FACC15;
}

.rating {
    margin-left: 0.25rem;
    font-weight: 600;
}

.review-count {
    color: var(--muted-foreground);
    font-weight: 500;
    text-align: left;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.btn-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem;
}

.btn-icon-left {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.hero-image {
    display: flex;
}

.hero-img {
    max-height: 600px;
    width: 100%;
    border-radius: 0.375rem;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .hero-img {
        max-height: 800px;
    }
}

/* Navbar Section */
.navbar-section {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    background-color: var(--background);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--foreground);
}

.logo-img {
    width: 270px;
    height: 70px;
}


.logo-text {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

/* Navigation Menu */
.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--foreground);
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
    background-color: var(--background);
}

.nav-link:hover {
    background-color: var(--muted);
    color: var(--accent-foreground);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease-in-out;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 50;
    min-width: 20rem;
    padding: 0.5rem;
    margin-top: 0.25rem;
    background-color: var(--popover);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition: all 0.2s ease-in-out;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    text-decoration: none;
    color: var(--foreground);
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
}

.dropdown-item:hover {
    background-color: var(--muted);
    color: var(--accent-foreground);
}

.item-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.item-content {
    flex: 1;
}

.item-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.item-description {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.25;
}

/* Auth Buttons */
.nav-auth {
    display: flex;
    gap: 0.5rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    height: 2.51rem;
    padding-left: 1rem;
    padding-right: 1rem;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border);
    color: var(--foreground);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.btn-primary {
    background-color: #094c8f;
    color: white;
}

.btn-primary:hover {
    background-color: #073a6f;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1faa52;
}

/* Mobile Navigation */
.mobile-nav {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-nav {
        display: none;
    }
}

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

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    background-color: transparent;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    color: var(--foreground);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.mobile-menu-btn:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.menu-icon {
    width: 1rem;
    height: 1rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--background);
    border-left: 1px solid var(--border);
    z-index: 50;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    background-color: transparent;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    border-radius: 0.25rem;
    transition: all 0.2s ease-in-out;
}

.mobile-menu-close:hover {
    background-color: var(--muted);
}

.close-icon {
    width: 1rem;
    height: 1rem;
}

.mobile-menu-body {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Mobile Accordion */
.mobile-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.accordion-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.accordion-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.accordion-link:hover {
    color: var(--muted-foreground);
}

.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease-in-out;
}

.accordion-trigger:hover {
    color: var(--muted-foreground);
}

.accordion-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease-in-out;
}

.accordion-trigger.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    margin-top: 0.5rem;
}

.accordion-content.active {
    max-height: 500px;
}

.mobile-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    text-decoration: none;
    color: var(--foreground);
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
}

.mobile-dropdown-item:hover {
    color: var(--muted-foreground);
}

/* Mobile Auth */
.mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

/* Backdrop */
.mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.mobile-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Complete Turnkey Solutions Section */
.installation-section-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #094c8f;
}

/* Custom Design Process Section */
.design-process-section {
    padding: 5rem 0;
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

/* Business Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background-color: #f9fafb;
    border-bottom: 1px solid #eaeaea;
}

/* Installation Options Section */
.options-section {
    padding: 5rem 0;
    background-color: #f9fafb;
    border-bottom: 1px solid #eaeaea;
}

.options-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Installation Equipment Section */
.equipment-section {
    padding: 5rem 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
}

/* Energy Efficiency Features Section */
.efficiency-section {
    padding: 5rem 0;
    background-color: #f9fafb;
    border-bottom: 1px solid #eaeaea;
}

/* Appliances We Repair Section */
.appliances-section {
    padding: 5rem 0;
    background-color: white;
    border-bottom: 1px solid #eaeaea;
}

/* Brands We Specialize In Section */
.brands-section {
    padding: 5rem 0;
    background-color: #f9fafb;
    border-bottom: 1px solid #eaeaea;
}

/* Emergency Repair Services Section */
.services-section {
    padding-top: 1.5rem;
    padding-bottom: 5rem;
    background-color: white;
    border-bottom: 1px solid #eaeaea;
}

.brands-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .brands-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.brands-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brands-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.brands-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.brands-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background-color: #094c8f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brands-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.brands-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.brands-list {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.brands-text {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
}

/* Repair vs Replacement Guide Section */
.guide-section {
    padding: 5rem 0;
    background-color: #f9fafb;
    border-bottom: 1px solid #eaeaea;
    position: relative;
}

.guide-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    background-color: white;
}

.size-guide-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 1rem;
}

.size-guide-table th {
    background-color: #094c8f;
    color: white;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.size-guide-table th:first-child {
    border-top-left-radius: 0.75rem;
}

.size-guide-table th:last-child {
    border-top-right-radius: 0.75rem;
}

.size-guide-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #eaeaea;
    color: #333;
}

.size-guide-table tr:last-child td {
    border-bottom: none;
}

.size-guide-table tr:last-child td:first-child {
    border-bottom-left-radius: 0.75rem;
}

.size-guide-table tr:last-child td:last-child {
    border-bottom-right-radius: 0.75rem;
}

.size-guide-table tr:nth-child(even) {
    background-color: #f9fafb;
}

.size-guide-table tr {
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.size-guide-table tr:nth-child(1) {
    animation-delay: 0.1s;
}

.size-guide-table tr:nth-child(2) {
    animation-delay: 0.2s;
}

.size-guide-table tr:nth-child(3) {
    animation-delay: 0.3s;
}

.size-guide-table tr:nth-child(4) {
    animation-delay: 0.4s;
}

.size-guide-table tr:nth-child(5) {
    animation-delay: 0.5s;
}

.size-guide-table tr:hover {
    background-color: rgba(9, 76, 143, 0.05);
    transform: translateX(5px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.guide-note {
    margin-top: 1.5rem;
    color: #666;
    font-style: italic;
    font-size: 0.95rem;
}

.guide-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .guide-info {
        flex-direction: row;
    }
}

.guide-card {
    flex: 1;
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.guide-card:nth-child(1) {
    animation-delay: 0.6s;
}

.guide-card:nth-child(2) {
    animation-delay: 0.8s;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.guide-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #094c8f;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guide-card-title i {
    width: 1.5rem;
    height: 1.5rem;
    color: #ff8800;
}

.guide-card-text {
    color: #555;
    line-height: 1.6;
}

.guide-section .btn-primary {
    background-color: #ff8800;
    border-color: #ff8800;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.guide-section .btn-primary:hover {
    background-color: #e67a00;
    border-color: #e67a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 136, 0, 0.3);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 136, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 136, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 136, 0, 0);
    }
}

.guide-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.guide-card {
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.repair-card {
    background-color: #e6f4ea;
    border: 1px solid #4caf50;
}

.replace-card {
    background-color: #fce8e6;
    border: 1px solid #ff5252;
}

.guide-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guide-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.repair-card .guide-icon-wrapper {
    background-color: #4caf50;
}

.replace-card .guide-icon-wrapper {
    background-color: #ff5252;
}

.guide-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.guide-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guide-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #555;
}

.guide-check {
    width: 1.25rem;
    height: 1.25rem;
    color: #4caf50;
    flex-shrink: 0;
}

.guide-x {
    width: 1.25rem;
    height: 1.25rem;
    color: #ff5252;
    flex-shrink: 0;
}

.guide-note {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #555;
}

.appliances-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .appliances-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .appliances-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.appliance-category {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.appliance-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eaeaea;
}

.category-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #094c8f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.appliance-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.appliance-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.appliance-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #094c8f;
    flex-shrink: 0;
}

/* Installation CTA Section */
.installation-cta {
    background-color: #094c8f;
    color: white;
}

.installation-header {
    margin-bottom: 2rem;
}

.installation-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.subtitle-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #4caf50;
}

.subtitle-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.installation-features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.efficiency-con.testimonial-card {
    flex: 0 0 100%;
    padding: 2rem;
    opacity: 0.5;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    transform: scale(0.95);
    border: 1px solid #eaeaea;
    width: 3rem;
    height: 3rem;
    background-color: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eco-icon {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.efficiency-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.efficiency-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .efficiency-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .efficiency-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.efficiency-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-eco-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #4caf50;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.25rem 0;
}

.featur.step-description {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.step-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.step-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: #094c8f;
    border-radius: 50%;
}

.equipment-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .equipment-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

.equipment-column {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 1.5rem;
    border: 1px solid #eaeaea;
}

.equipment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.equipment-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.equipment-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.equipment-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.equipment-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.equipment-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #555;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #4caf50;
    flex-shrink: 0;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Options Section Styles */
@media (min-width: 768px) {
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .options-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.option-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 2rem;
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    height: 100%;
}

.option-card:nth-child(1) {
    animation-delay: 0.1s;
}

.option-card:nth-child(2) {
    animation-delay: 0.3s;
}

.option-card:nth-child(3) {
    animation-delay: 0.5s;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.option-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.option-icon-wrapper.standard {
    background-color: #4caf50; /* Green */
}

.option-icon-wrapper.medium {
    background-color: #ffc107; /* Amber */
}

.option-icon-wrapper.blast {
    background-color: #f44336; /* Red */
}

.option-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.option-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.option-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.option-description {
    font-size: 1rem;
    color: #666;
    margin-top: 0;
    margin-bottom: 1rem;
}

.option-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.option-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #555;
}

.feature-icon-small {
    width: 1rem;
    height: 1rem;
    color: #094c8f;
    flex-shrink: 0;
}

.option-ideal-for {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eaeaea;
}

.ideal-for-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.25rem 0;
}

.ideal-for-text {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.benefits-column {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 2rem;
    border: 1px solid #eaeaea;
}

.benefits-column.blue-card {
    background-color: #094c8f;
    border-color: #094c8f;
    color: white;
}

.benefits-column.blue-card .benefits-title,
.benefits-column.blue-card .benefits-icon {
    color: white;
}

.benefits-column.blue-card .benefits-list li,
.benefits-column.blue-card .benefits-list li strong {
    color: #e0e0e0;
}

.benefits-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefits-icon {
    width: 2rem;
    height: 2rem;
    color: #094c8f;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-card {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 1.5rem;
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card.blue-card {
    background-color: #094c8f;
    border-color: #094c8f;
    color: white;
}

.process-card.blue-card .process-title,
.process-card.blue-card .process-icon {
    color: white;
}

.process-card.blue-card .process-list li {
    color: #e0e0e0;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.process-header {
    margin-bottom: 1.25rem;
    position: relative;
}

.step-badge {
    display: inline-block;
    background-color: #094c8f;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.process-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #555;
}

.process-icon {
    width: 1.125rem;
    height: 1.125rem;
    color: #094c8f;
    flex-shrink: 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.solutions-column {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
}

.solutions-column.blue-card {
    background-color: #094c8f;
    border-color: #094c8f;
    color: white;
}

.solutions-column.blue-card .solutions-heading,
.solutions-column.blue-card .solution-icon,
.solutions-column.blue-card .heading-icon {
    color: white;
}

.solutions-column.blue-card .solutions-list li {
    color: #e0e0e0;
}

.solutions-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #094c8f;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.heading-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.solutions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.solutions-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #333;
}

.solution-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #094c8f;
    flex-shrink: 0;
}
