/* =============== GLOBAL RESET =============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: hsl(0, 0%, 10%);
    background-color: #ffffff;
}

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

/* =============== HEADER =============== */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: 1px solid hsl(0, 0%, 90%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.header-content {
    display: flex;
    align-items: center;          /* vertical centering */
    justify-content: space-between;
    height: 80px;
    gap: 2rem;
}

/* logo on the left, fixed size */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: hsl(38, 92%, 50%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: bold;
    color: hsl(0, 0%, 10%);
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.75rem;
    color: hsl(0, 0%, 40%);
}


/* nav + Call Now grouped on the right */
nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin-left: auto;            /* pushes nav group to the right */
}

nav a,
nav button {
    color: hsl(0, 0%, 10%);
    text-decoration: none;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0;                   /* keeps text vertically centered */
    line-height: 1;
}

nav a:hover,
nav button:hover {
    color: hsl(38, 92%, 50%);
}

/* Call Now button inside nav stays same alignment */
nav a.btn-primary {
    margin-left: 0.75rem;
}

/* icon buttons on the far right – visible only on mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}
/* Buttons */
.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background: hsl(38, 92%, 50%);
    color: #ffffff;
}

.btn-primary:hover {
    background: hsl(38, 92%, 45%);
}

.btn-secondary {
    background: #ffffff;
    color: hsl(0, 0%, 25%);
    border: 1px solid hsl(0, 0%, 90%);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.full-width {
    width: 100%;
}

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

/* Mobile dropdown menu */
.mobile-menu {
    display: none;
    border-top: 1px solid hsl(0, 0%, 90%);
    padding: 1rem 0;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: hsl(0, 0%, 10%);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background 0.3s;
}

.mobile-menu a:hover {
    background: hsl(0, 0%, 96%);
}

/* =============== HERO SECTION =============== */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            rgba(245, 159, 11, 0.732) 0%,
            rgba(17, 24, 39, 0.65) 75%,
            rgba(17, 24, 39, 0.7) 100%
        ),
        url('assets/img2.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 65rem;
    padding: 4rem 3rem 5rem 14rem;
    margin-left: 0;
    margin-right: auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2rem;
}

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

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.trust-badge-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.trust-badge p {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.875rem;
    margin: 0;
}

/* =============== GENERAL SECTIONS =============== */
section {
    padding: 4rem 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.125rem;
    color: hsl(0, 0%, 40%);
}

.bg-muted {
    background-color: hsl(0, 0%, 96%);
}

/* =============== BUILDER LOGOS =============== */
.builder-band {
    padding: 3rem 0;
    background: #ffffff;
    border-top: 1px solid hsl(0, 0%, 90%);
    border-bottom: 1px solid hsl(0, 0%, 90%);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-card {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.partner-card:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.partner-logo {
    width: 100%;
    height: 64px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* =============== FEATURES =============== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #ffffff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(242, 153, 18, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: hsl(38, 92%, 50%);
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: hsl(0, 0%, 40%);
}

/* =============== CONCRETE GRADES =============== */
.grades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.grade-card {
    background: #ffffff;
    border: 1px solid hsl(0, 0%, 90%);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

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

.grade-card.popular {
    border: 2px solid hsl(38, 92%, 50%);
}

.popular-badge {
    display: inline-block;
    background: hsl(38, 92%, 50%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
}

.grade-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.grade-strength {
    color: hsl(38, 92%, 50%);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.grade-card p {
    color: hsl(0, 0%, 40%);
    margin-bottom: 1rem;
}

/* =============== GALLERY SLIDER =============== */
.gallery-slider {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gallery-viewport {
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
    flex: 1;
}

.gallery-track {
    display: flex;
    transition: transform 0.4s ease;
}

.gallery-slide {
    min-width: 100%;
    height: 0;
    padding-top: 56.25%;
    position: relative;
    background: #0f172a;
}

.gallery-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-arrow {
    border: none;
    background: rgba(15, 23, 42, 0.7);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.1s;
}

.gallery-arrow:hover {
    background: rgba(15, 23, 42, 0.95);
    transform: translateY(-1px);
}

.gallery-arrow:active {
    transform: translateY(0);
}

/* =============== ABOUT + MAP =============== */
.about-card {
    background: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin-bottom: 2rem;
}

.about-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
    border-top: 1px solid hsl(0, 0%, 90%);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(38, 92%, 50%);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: hsl(0, 0%, 40%);
}

.about-location-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-location-text {
    color: hsl(0, 0%, 40%);
    margin-bottom: 1rem;
}

.map-container {
    aspect-ratio: 16 / 9;
    border-radius: 0.5rem;
    overflow: hidden;
}

/* =============== SERVICE AREAS (FIXED ALIGNMENT) =============== */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;       /* centers the row */
    gap: 1.25rem 1.75rem;          /* vertical / horizontal gaps */
    max-width: 64rem;
    margin: 0 auto 2rem;
}

.area-card {
    flex: 0 1 190px;               /* consistent card width */
    background: #ffffff;
    border: 1px solid hsl(0, 0%, 90%);
    border-radius: 0.75rem;
    padding: 1.1rem 1.25rem;
    transition: all 0.3s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
}

.area-card:hover {
    border-color: hsl(38, 92%, 50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.area-icon {
    color: hsl(38, 92%, 50%);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.area-name {
    font-weight: 500;
    white-space: normal;
}

.service-areas-note p {
    text-align: center;
    color: hsl(0, 0%, 40%);
}

/* =============== QUOTE FORM =============== */
.form-container {
    max-width: 42rem;
    margin: 0 auto;
}

.quote-form {
    background: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid hsl(0, 0%, 90%);
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 1rem;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.4);
    background: #ffffff;
}

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

.form-cta {
    background: rgba(242, 153, 18, 0.1);
    border: 2px solid hsl(38, 92%, 50%);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    margin-top: 1.5rem;
}

.form-cta p {
    color: hsl(0, 0%, 40%);
    margin-bottom: 0.5rem;
}

.form-cta a {
    color: hsl(38, 92%, 50%);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.125rem;
}

.form-cta a:hover {
    text-decoration: underline;
}

/* =============== TESTIMONIALS =============== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid hsl(0, 0%, 90%);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: hsl(38, 92%, 50%);
}

.testimonial-text {
    font-style: italic;
    color: hsl(0, 0%, 10%);
    margin-bottom: 1rem;
}

.testimonial-author {
    border-top: 1px solid hsl(0, 0%, 90%);
    padding-top: 1rem;
}

.testimonial-author h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-project {
    font-size: 0.875rem;
    color: hsl(0, 0%, 40%);
}

/* =============== FAQ =============== */
.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid hsl(0, 0%, 90%);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: hsl(0, 0%, 98%);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: hsl(0, 0%, 40%);
    display: none;
}

.faq-answer.active {
    display: block;
}

/* =============== FOOTER =============== */
footer {
    background: hsl(0, 0%, 25%);
    color: #ffffff;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

footer h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(38, 92%, 50%);
    margin-bottom: 1rem;
}

footer h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer p,
footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

footer a:hover {
    color: hsl(38, 92%, 50%);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact a {
    display: flex;
    gap: 0.75rem;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    padding-bottom: 50px;
}

/* =============== STICKY CALL BUTTONS =============== */
.sticky-call-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, #ffffff, transparent);
    z-index: 999;
    pointer-events: none;
}

.sticky-call-mobile .btn {
    pointer-events: all;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.sticky-call-desktop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-call-desktop.visible {
    display: block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* =============== WHATSAPP BUTTON =============== */
.whatsapp-button {
    position: fixed;
    bottom: 7rem;
    right: 1rem;
    z-index: 999;
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    width: auto;
    height: auto;
    padding: 0.8rem 1.3rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
    animation: bounce 2s infinite;
    text-decoration: none;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #128c7e;
    animation: none;
}

.whatsapp-icon {
    font-size: 1.4rem;
}

/* default: text hidden on mobile, JS shows/adjusts */
.whatsapp-text {
    display: none;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* =============== SUCCESS MODAL =============== */
.success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.success-overlay.active {
    display: flex;
    animation: fadeIn 0.2s ease-out;
}

.success-modal {
    background: #ffffff;
    border-radius: 1rem;
    max-width: 380px;
    width: 90%;
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.25);
    position: relative;
    animation: slideUp 0.25s ease-out;
    text-align: center;
}

.success-icon {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    background: #ecfdf5;
    border: 2px solid #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #16a34a;
    margin: 0 auto 0.75rem;
}

.success-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.success-text {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1.1rem;
}

.success-highlight {
    font-weight: 600;
    color: #f59e0b;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.8rem 1.2rem;
    border-radius: 9999px;
    background: #f59e0b;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s, box-shadow 0.1s;
}

.btn-call:hover {
    background: #d97706;
    box-shadow: 0 10px 18px rgba(217, 119, 6, 0.25);
    transform: translateY(-1px);
}

.btn-secondary-ghost {
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    padding: 0.7rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.btn-secondary-ghost:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.modal-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: #9ca3af;
}

.modal-close:hover {
    color: #6b7280;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* =============== RESPONSIVE =============== */
@media (max-width: 1024px) {
    .hero {
        min-height: 600px;
    }
}


@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        min-height: 560px;
    }

    .hero-bg {
        background-position: center;
        background-size: cover;
        background-image:
            linear-gradient(
                to bottom,
                rgba(17, 24, 39, 0.94),
                rgba(17, 24, 39, 0.94)
            ),
            url('assets/img2.png');
    }

    .hero-content {
        padding: 3rem 1.25rem 4rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.25rem;
        line-height: 1.3;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .trust-badges {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .section-title h2 {
        font-size: 1.875rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-button {
        bottom: 6rem;
    }

    .sticky-call-desktop {
        display: none !important;
    }

    .gallery-slider {
        gap: 0.25rem;
    }

    .gallery-arrow {
        width: 34px;
        height: 34px;
        font-size: 1.25rem;
    }

    .areas-grid {
        gap: 0.9rem 1rem;
    }

    .area-card {
        flex: 0 1 46%;
    }
}

@media (min-width: 768px) {
    .whatsapp-text {
        display: inline;
    }

    .sticky-call-mobile {
        display: none;
    }  
   
}
@media (max-width: 768px) {
    .hero-content {
      position: relative;
      z-index: 10;
      padding: 3rem 1.25rem 4rem; /* less side padding on mobile */
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
      text-align: left;          /* or center if you prefer */
    }
  
    .hero h1 {
      font-size: 2.2rem;
      line-height: 1.3;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .hero-buttons {
      flex-direction: column;
      align-items: stretch;
    }
  }

 
