/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cyan-50: #ecfeff;
    --cyan-100: #cffafe;
    --cyan-600: #0891b2;
    --cyan-700: #0e7490;
    --orange-100: #ffedd5;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --yellow-400: #facc15;
    --red-500: #ef4444;
    --green-500: #22c55e;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--cyan-600);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyan-600);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--gray-900);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-cyan {
    background: var(--cyan-600);
    color: var(--white);
}

.btn-cyan:hover {
    background: var(--cyan-700);
}

.btn-orange {
    background: var(--orange-500);
    color: var(--white);
}

.btn-orange:hover {
    background: var(--orange-600);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--cyan-600);
    color: var(--cyan-600);
}

.btn-outline:hover {
    background: var(--cyan-50);
}

.btn-white {
    background: var(--white);
    color: var(--orange-600);
}

.btn-white:hover {
    background: var(--gray-100);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn .icon {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--cyan-50) 0%, var(--white) 50%, var(--orange-100) 100%);
     margin-bottom: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.badge {
    display: inline-block;
    background: var(--orange-100);
    color: var(--orange-600);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.hero-text {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.stars {
    display: flex;
    gap: 0.125rem;
}

.star {
    width: 20px;
    height: 20px;
    color: var(--yellow-400);
}

.rating-score {
    font-weight: 600;
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.hero-image {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--cyan-100) 0%, var(--orange-100) 100%);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge-float {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cyan-600);
    line-height: 1;
}

.badge-label {
    color: var(--gray-600);
    font-weight: 500;
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--cyan-600);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon.cyan {
    background: var(--cyan-100);
}

.benefit-icon.orange {
    background: var(--orange-100);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-icon.cyan svg {
    color: var(--cyan-600);
}

.benefit-icon.orange svg {
    color: var(--orange-600);
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Warranty Section */
.warranty {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--cyan-600) 0%, var(--cyan-700) 100%);
    color: var(--white);
}

.warranty-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.warranty-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.warranty-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.warranty-text h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.warranty-text p {
    font-size: 1.125rem;
    color: var(--cyan-100);
    line-height: 1.6;
}

/* Re-imagine Section */
.reimagine {
    padding: 5rem 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.before-after-card {
    aspect-ratio: 4 / 3;
    background: var(--gray-200);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.before-after-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ribbon common style */
.before-label,
.after-label {
    position: absolute;
    top: 10px;
    width: 175px;
    height: 35px;
    line-height: 30px;
    color: #fff;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.85rem;
    z-index: 2;
}

/* Before ribbon - top left */
.before-label {
    left: -10px;
    background: var(--red-500);
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
}

/* After ribbon - top right */
.after-label {
    right: -10px;
    background: var(--green-500);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 10% 100%, 0 50%);
}



.locations-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.locations-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.location-item svg {
    width: 24px;
    height: 24px;
    color: var(--cyan-600);
    flex-shrink: 0;
}

.location-item span {
    color: var(--gray-700);
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--orange-100);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, var(--cyan-50) 0%, var(--white) 50%, var(--orange-100) 100%);
}

.page-hero-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Story Section */
.story {
    padding: 4rem 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-text p {
    color: var(--gray-600);
    line-height: 1.6;
}

.story-image {
    aspect-ratio: 4 / 3;
    background: var(--gray-200);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Values Section */
.values {
    padding: 4rem 0;
    background: var(--gray-50);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    background: var(--white);
}

.value-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cyan-600);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-600);
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-card {
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 2rem;
}

.contact-form-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan-600);
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 2rem;
}

.info-card.primary {
    border-color: var(--cyan-600);
}

.info-card>div:first-child {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon.cyan {
    background: var(--cyan-100);
}

.info-icon.orange {
    background: var(--orange-100);
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-icon.cyan svg {
    color: var(--cyan-600);
}

.info-icon.orange svg {
    color: var(--orange-600);
}

.info-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyan-600);
    text-decoration: none;
    display: block;
    margin-bottom: 0.25rem;
}

.phone-number:hover {
    color: var(--cyan-700);
}

.info-detail {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.info-card p {
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.why-choose-card {
    background: linear-gradient(135deg, var(--cyan-600) 0%, var(--cyan-700) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
}

.why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-choose-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.why-choose-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}





















/* Upgrade CTA Section */
.upgrade-cta {
    padding: 4rem 0;
    background: #f9f9f9;
}

.upgrade-grid {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.upgrade-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.upgrade-text p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.upgrade-text a {
    margin-right: 1rem;
}

/* Opportunities Section */
.opportunities {
    padding: 4rem 0;
    background: #fff;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.opportunity-item {
    background: #e5f6f8;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: #f3f3f3;
    text-align: center;
    position: relative;
}

.testimonial-slider {
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.testimonial-item {
    display: none;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-item p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-item h4 {
    font-weight: 600;
    color: #333;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.testimonial-nav button {
    background: #00bcd4;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    cursor: pointer;
}

.testimonial-nav button:hover {
    background: #0097a7;
}

/* Request Estimate Form Section */
.request-estimate {
    padding: 4rem 0;
    background: #fff;
}

.form-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.form-text {
    flex: 1;
    min-width: 250px;
}

.form-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-text p {
    font-size: 1.1rem;
}

.form-wrapper {
    flex: 1;
    min-width: 250px;
}

form input,
form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}



/* === Custom Contact Form === */
.custom-contact-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.custom-contact-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.custom-contact-info {
    flex: 1;
    min-width: 280px;
}

.custom-contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.custom-contact-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.custom-call-now {
    font-weight: 600;
    font-size: 1rem;
}

.custom-call-now a {
    display: inline-block;
    margin-top: 0.5rem;
    color: #f97316;
    /* orange-600 */
    font-weight: 700;
}

/* Form Wrapper */
.custom-contact-form-wrapper {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.custom-contact-form .custom-form-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Only first & last name side by side */
.custom-contact-form .name-row {
    flex-direction: row;
    gap: 0.75rem;
}

.custom-contact-form input,
.custom-contact-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* Textarea specific */
.custom-contact-form textarea {
    resize: vertical;
}

/* Button */
.custom-btn {
    background-color: #f97316;
    /* orange-600 */
    color: #fff;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background-color: #ea580c;
    /* darker orange */
}

.custom-btn:active {
    background-color: #c2410c;
    /* active pressed */
    transform: scale(0.98);
}


/* Base state - invisible */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    /* default from bottom */
    transition: all 0.8s ease-out;
}

/* Fade in from top */
.animate-from-top {
    transform: translateY(-20px);
}

/* Fade in from left */
.animate-from-left {
    transform: translateX(-40px);
}

/* Fade in from right */
.animate-from-right {
    transform: translateX(40px);
}

/* Fade in from bottom (default) */
.animate-from-bottom {
    transform: translateY(40px);
}

/* Active state - visible */
.animate-on-scroll.active {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.hero-benefits li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

/* Section Wrapper */
.reimagine-section {
    padding: 100px 20px;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

/* Grid Layout */
.reimagine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    align-items: center;
}

/* Text Content */
.reimagine-content {
    flex: 1;
    min-width: 300px;
}

.reimagine-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
    line-height: 1.2;
}

.reimagine-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Call-to-Action Button */
.cta2 .btn-primary {
    display: inline-block;
    background: #ff6f1e;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.cta2 .btn-primary:hover {
    background: #ff4b00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Image Styling */
.reimagine-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.reimagine-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.reimagine-image img:hover {
    transform: scale(1.02);
}


.upgrade-text a {
    margin-top: 10px !important;
}










/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

/* Footer logo section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.footer-logo .logo-icon {
    color: var(--cyan-600);
    width: 22px;
    height: 22px;
}

/* Text & paragraph styles */
.footer-col p {
    color: var(--gray-400);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

/* Section headings */
.footer-col h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

/* Lists */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--cyan-600);
}

/* Phone icon alignment */
.icon-inline {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* Service Areas map */
.service-areas-map .map-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-areas-map .map-image img {
    display: block;
    width: 160px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Footer bottom section */
.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Initial state */
.animate-on-scroll {
    opacity: 0;
    transition: all 1s ease-out;
}

/* Active state */
.animate-on-scroll.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Directions */
.from-bottom {
    transform: translateY(40px);
}

.from-left {
    transform: translateX(-40px);
}

.from-right {
    transform: translateX(40px);
}



.Web_Logo {
    width: 65px;
}

.footer_logo{
    width: 40px;
}








@media screen and (max-width: 768px) {

    .upgrade-grid,
    .form-grid {
        flex-direction: column;
    }

    .testimonial-slider {
        max-width: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .custom-contact-grid {
        flex-direction: column;
    }

    .custom-contact-form-wrapper {
        width: 95%;
        margin: 0 auto;
    }

    .custom-contact-form .name-row {
        flex-direction: column;
    }
}


/* Responsive */
@media (max-width: 900px) {
    .reimagine-grid {
        flex-direction: column;
        text-align: center;
    }

    .reimagine-content h2 {
        font-size: 2.2rem;
    }

    .reimagine-content p {
        font-size: 1rem;
    }

    .cta .btn-primary {
        width: 100%;
    }

    .reimagine-image {
        margin-top: 40px;
    }
}

/* === Responsive Layout === */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small screens: stack columns except Service Areas + Map */
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo,
    .footer-col:not(.service-areas):not(.service-areas-map) {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {

    .hero-grid,
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--gray-200);
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .benefits-grid,
    .values-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .before-after-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .warranty-content {
        flex-direction: column;
        text-align: center;
    }

    .warranty-text {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .page-hero {
        padding: 7rem 0 3rem;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}


