/* RESET */
:root {
    --bg: #090d14;
    --card: rgba(255, 255, 255, 0.05);
    --stroke: rgba(255, 255, 255, 0.08);
    --text: #eef2f7;
    --text-light: #f5f8fc;
    --muted: rgba(238, 242, 247, 0.7);
    --muted-light: rgba(238, 242, 247, 0.55);
    --muted-medium: rgba(238, 242, 247, 0.6);
    --muted-alt: rgba(238, 242, 247, 0.45);
    --nav-text: #d1d6de;
    --accent: rosybrown;
    --accent-hover: #d28fa3;
    --accent-soft: rgba(188, 143, 143, 0.16);
    --panel: #12171f;
    --panel-alt: #0f1218;
    --panel-muted: rgba(255, 255, 255, 0.05);
    --icon-bg: rgba(255, 255, 255, 0.08);
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Make images responsive by default */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================== */
/* NAVBAR (MODERN FIXED) */
/* ===================== */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    background: rgba(11, 15, 20, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--stroke);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: clamp(18px, 2.5vw, 45px);
    margin: 0 auto;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--nav-text);
    font-weight: 500;
    font-size: clamp(0.9rem, 1vw, 1rem);
    position: relative;
    transition: 0.2s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: white;
}

.nav-links a.active::after {
    width: 100%;
    background: var(--accent);
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    height: clamp(45px, 6vw, 90px);
    width: auto;
    display: block;
}


/* CTA (RIGHT SIDE) */
.cta,
.service-btn,
.package-btn {
    background: var(--accent);
    color: white;
    transition: 0.2s ease;
    text-decoration: none;
}

.cta {
    margin-left: auto;
    padding: 10px 18px;
    border-radius: 8px;
    white-space: nowrap;
}

/* ===================== */
/* MOBILE RESPONSIVE */
/* ===================== */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 12px;
        padding: 12px 20px;
    }

    .nav-links {
        margin: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .logo img {
        height: 55px;
    }

    .cta {
        margin-left: 0;
    }

    .split-section,
    .services-section {
        flex-direction: column;
        padding: 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}

/* Improve tap targets on small screens */
@media (max-width: 900px) {
    .nav-links a {
        padding: 10px 12px;
        border-radius: 8px;
    }
}

/* Footer responsive: stack columns on narrow screens */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 30px 18px;
        gap: 24px;
    }
}

/* ===================== */
/* HERO */
/* ===================== */

.hero,
.pricing-hero,
.contact-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero {
    padding: 80px 20px 40px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    color: var(--muted-alt);
}

/* ===================== */
/* SPLIT SECTION */
/* ===================== */

.split-section {
    display: flex;
    height: 80vh;
    width: 100%;
    margin-top: 40px;
}

.split-box {
    flex: 1;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    color: white;

    overflow: hidden;
    transition: 0.3s ease;
}

/* BACKGROUND IMAGES (REPLACE THESE) */
.web {
    background-image: url("images/web.jpg");
    background-size: cover;
    background-position: center;
}

.social {
    background-image: url("images/social.jpg");
    background-size: cover;
    background-position: center;
}

/* OVERLAY */
.overlay {
    background: rgba(0, 0, 0, 0.55);

    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 40px;

    transition: 0.3s ease;
}

.overlay h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.overlay p {
    max-width: 320px;
    font-size: 1rem;
    opacity: 0.9;
}

/* Stack split boxes on smaller screens */
@media (max-width: 900px) {
    .split-section {
        flex-direction: column;
        height: auto;
        gap: 18px;
        margin-top: 20px;
    }

    .split-box {
        padding: 20px;
    }
}

/* HOVER EFFECT */
.split-box:hover .overlay {
    background: rgba(0, 0, 0, 0.35);
    transform: scale(1.02);
}

/* ===================== */
/* FOOTER */
/* ===================== */

.footer {
    background: var(--panel-alt);
    color: white;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* MAIN CONTAINER */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* BRAND */
.footer-brand h2 {
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--muted-light);
    max-width: 260px;
}

/* LINKS */
.footer-links h3,
.footer-contact h3 {
    margin-bottom: 15px;
}

.footer a {
    display: block;
    color: var(--muted-medium);
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.2s ease;
}

.footer a:hover {
    color: var(--accent);
}

/* CONTACT */
.footer-contact p {
    color: var(--muted-medium);
    margin-bottom: 8px;
}

/* BOTTOM BAR */
.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted-alt);
    font-size: 0.9rem;
}

/* ===================== */
/* MOBILE FIX */
/* ===================== */
@media (max-width: 768px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
    }

    .footer a {
        margin-bottom: 10px;
    }
}

/* ===================== */
/* SERVICES PAGE LAYOUT */
/* ===================== */

.services-column,
.package-content,
.contact-card,
.service-details {
    display: flex;
    flex-direction: column;
}

.services-section {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Each side column */
.services-column {
    flex: 1;
    padding: 60px 40px;
    gap: 20px;
}

/* Column titles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* LEFT SIDE (WEB) */
.web-dev {
    background: var(--panel);
    border-right: 1px solid var(--accent);
}

/* RIGHT SIDE (SOCIAL) */
.social-media {
    background: var(--panel-alt);
}

/* ===================== */
/* SERVICE BLOCKS */
/* ===================== */

.service-block {
    position: relative;

    height: 330px; 

    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;

    display: flex;
    align-items: flex-end;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover lift effect */
.service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* TEXT OVERLAY */
.service-overlay {
    width: 100%;
    padding: 15px 18px;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.2),
        transparent
    );

    color: white;
}

.service-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.service-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ===================== */
/* PLACEHOLDER BACKGROUNDS */
/* (REPLACE WITH YOUR IMAGES) */
/* ===================== */

/* WEB DEV */
.web1 {
    background: url("images/web1.jpg") center/cover no-repeat;
}

.web2 {
    background: url("images/web2.jpg") center/cover no-repeat;
}

.web3 {
    background: url("images/web3.jpg") center/cover no-repeat;
}

.web4 {
    background: url("images/web4.jpg") center/cover no-repeat;
}

.web5 {
    background: url("images/web5.jpg") center/cover no-repeat;
}

/* SOCIAL MEDIA */
.social1 {
    background: url("images/social1.jpg") center/cover no-repeat;
}

.social2 {
    background: url("images/social2.jpg") center/cover no-repeat;
}

.social3 {
    background: url("images/social3.jpg") center/cover no-repeat;
}

.social4 {
    background: url("images/social4.jpg") center/cover no-repeat;
}

.social5 {
    background: url("images/social5.jpg") center/cover no-repeat;
}

/* ===================== */
/* RESPONSIVE (IMPORTANT) */
/* ===================== */

@media (max-width: 900px) {
    .services-section {
        flex-direction: column;
    }

    .web-dev {
        border-right: none;
        border-bottom: 1px solid var(--accent);
    }

    .services-column {
        padding: 40px 20px;
    }
}

/* ===================== */
/* EXPAND / COLLAPSE STATE */
/* ===================== */

.service-details {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.88);

    padding: 25px;

    justify-content: center;
    align-items: center;
    text-align: center;

    opacity: 0;
    transform: scale(0.98);

    transition: 0.3s ease;

    pointer-events: none;
}

/* when expanded */
.service-block.active .service-details {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* dim original content when active */
.service-block.active .service-overlay {
    opacity: 0.15;
}

/* CTA button inside expanded view */
.service-btn {
    margin-top: 15px;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    background: var(--accent);
    color: white;
    cursor: pointer;
    transition: 0.2s ease;
}


/* ===================== */
/* PRICING PAGE */
/* ===================== */

.pricing-hero {
    text-align: center;
    padding: 80px 20px 50px;
    max-width: 800px;
    margin: auto;
}

.pricing-hero h1 {
    font-size: 2.7rem;
    margin-bottom: 15px;
}

.pricing-hero p {
    color: var(--muted-light);
    font-size: 1.05rem;
}

/* SECTION */

.pricing-section {
    max-width: 1400px;

    margin: auto;
    padding: 40px 30px 100px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

/* FLOATING CARDS */

.package-card {
    background: var(--panel);

    border-radius: 18px;
    overflow: hidden;

    border: 1px solid var(--panel-muted);

    transition: 0.3s ease;

    /* ✅ FIX: makes all cards equal height */
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
}

/* FEATURED CARD */

.featured-card {
    border: 1px solid var(--accent);
    position: relative;
}

/* IMAGE */

.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;

    flex-shrink: 0;
}

/* CONTENT */

.package-content {
    padding: 25px;

    flex: 1; /* pushes button to bottom */
}

.package-content h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.package-description {
    color: var(--muted-light);
    margin-bottom: 20px;
}

/* FEATURE BOXES */

.package-features {
    display: flex;
    flex-direction: column;
    gap: 10px;

    margin-bottom: 25px;
}

.package-features span {
    background: var(--panel-muted);
    border-radius: 10px;

    padding: 12px;

    color: var(--text);
    font-size: 0.95rem;
}

/* FEATURED TAG */

.featured-tag {
    position: absolute;
    top: 15px;
    right: 15px;

    background: var(--accent);
    color: white;

    padding: 6px 12px;
    border-radius: 999px;

    font-size: 0.75rem;
    font-weight: 500;

    z-index: 5;
}

/* BUTTON */

.package-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    background: var(--accent);
    color: white;
    padding: 14px;
    border-radius: 10px;
    transition: 0.2s ease;
    margin-top: auto;
}

.cta:hover,
.service-btn:hover,
.package-btn:hover {
    background: var(--accent-hover);
    opacity: 1;
    transform: translateY(-2px);
}

.cta:focus-visible,
.service-btn:focus-visible,
.package-btn:focus-visible,
.lead-form button[type="submit"]:focus-visible {
    outline: 2px solid var(--accent-soft);
    outline-offset: 3px;
}

.lead-form button[type="submit"]:hover {
    background: var(--accent-hover);
}

/* TABLET */

@media (max-width: 1100px) {
    .pricing-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */

@media (max-width: 700px) {
    .pricing-section {
        grid-template-columns: 1fr;
    }

    .pricing-hero h1 {
        font-size: 2rem;
    }
}

/* ===================== */
/* CONTACT PAGE */
/* ===================== */

/* PAGE BACKGROUND ONLY */
body.contact-page {
    background: url("images/contact-bg.jpg") center/cover no-repeat fixed;
    color: var(--text-light);
}

/* DARK OVERLAY */
body.contact-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

/* HERO */
.contact-hero {
    text-align: center;
    padding: 100px 20px 40px;
    max-width: 800px;
    margin: auto;
}

.contact-hero h1 {
    font-size: 2.7rem;
    margin-bottom: 10px;
}

.contact-hero p {
    color: var(--muted-medium);
    font-size: 1.1rem;
}

/* GRID (3 + 3 desktop layout) */
.contact-grid {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px 80px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.contact-card {
    background: var(--panel);
    border: 1px solid var(--panel-muted);
    border-radius: 16px;

    padding: 25px;

    gap: 8px;

    text-decoration: none;
    color: inherit;

    transition: transform 0.25s ease, border-color 0.25s ease;
}

/* HOVER */
.contact-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
}

.contact-card:hover .fa-whatsapp {
    color: #25D366;
}

.contact-card:hover .fa-instagram {
    color: #E1306C;
}

.contact-card:hover .fa-linkedin {
    color: #0A66C2;
}

.contact-card:hover .fa-facebook {
    color: #1877F2;
}

.contact-card:hover .fa-x-twitter {
    color: var(--text);
}

/* ICON */
.contact-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--icon-bg);

    font-size: 1.1rem;
    color: white;
}
/* TEXT */
.contact-card h3 {
    font-size: 1.1rem;
}

.contact-card p {
    color: var(--muted-alt);
    font-size: 0.95rem;
}

.contact-card span {
    font-size: 0.8rem;
    color: var(--muted-medium);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================== */
/* GET STARTED ISLAND UI */
/* ===================== */

/* Background (island ocean feel) */
body.get-started {
    background: url("images/get-started-bg.jpg") center/cover no-repeat fixed;
    position: relative;
    color: var(--text);
}

/* dark ocean overlay */
body.get-started::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, rgba(0,0,0,0.4), rgba(0,0,0,0.85));
    z-index: -1;
}

/* HERO ISLAND */
.gs-hero {
    display: flex;
    justify-content: center;
    padding: 100px 20px 40px;
}

.gs-hero-card {
    background: var(--card);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(14px);

    padding: 40px 30px;
    border-radius: 18px;

    max-width: 700px;
    text-align: center;

    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.gs-hero-card h1 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.gs-hero-card p {
    color: var(--muted);
}

/* MAIN ISLAND LAYOUT */
.gs-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;

    max-width: 1200px;
    margin: auto;
    padding: 40px 20px 100px;
}

/* ISLAND BASE */
.gs-island {
    flex: 1;
    background: var(--card);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(16px);

    border-radius: 18px;
    padding: 30px;

    box-shadow: 0 15px 50px rgba(0,0,0,0.35);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gs-island:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* HEADINGS */
.gs-island h2 {
    margin-bottom: 20px;
    font-size: 1.6rem;
}

/* FORM ELEMENTS */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lead-form label {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
    background: var(--panel);
    border: 1px solid var(--stroke);
    border-radius: 10px;

    padding: 12px 14px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;

    outline: none;
}

.lead-form select {
    cursor: pointer;
}

.lead-form select option {
    background: var(--panel);
    color: var(--text);
    padding: 8px;
}

.lead-form select option:checked {
    background: var(--accent);
    color: white;
}

.lead-form textarea {
    resize: none;
}

/* CHECKBOX STYLES */
.services-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-dropdown {
    border: 1px solid var(--stroke);
    border-radius: 10px;
    background: var(--panel);
    padding: 0;
    margin: 0;
}

.service-dropdown summary {
    padding: 14px;
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s ease;
    background: var(--accent-soft);
    border-radius: 10px;
}

.service-dropdown summary:hover {
    background: rgba(188, 143, 143, 0.3);
}

.service-dropdown summary::marker {
    color: var(--accent);
}

.service-dropdown[open] summary {
    background: var(--accent-soft);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
    padding: 8px 14px 14px 14px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.checkbox-label:hover {
    background: rgba(255, 255, 255, 0.05);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.checkbox-label span {
    color: var(--text);
    font-size: 0.95rem;
    user-select: none;
}

/* BUTTONS */
.lead-form button {
    padding: 12px;
    border: none;
    border-radius: 10px;

    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;

    transition: 0.2s ease;
}

.lead-form button[type="submit"] {
    background: var(--accent);
    color: white;
}

.whatsapp-btn {
    background: var(--panel-alt);
    color: var(--text-light);
    border: 1px solid var(--stroke);
}

.lead-form button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.lead-form button[type="submit"]:hover {
    background: var(--accent-hover);
}

/* INFO ISLAND */
.gs-island.info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    border: 1px solid var(--stroke);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.info-item summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
}

.info-item summary:hover {
    background: var(--accent-soft);
}

.info-item[open] summary {
    background: var(--accent-soft);
    border-bottom: 1px solid var(--stroke);
}

.step-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-title {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
}

.step-description {
    padding: 0 14px 14px 14px;
    color: var(--muted-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.small-note {
    font-size: 0.85rem;
    color: var(--muted);
    padding: 12px;
    border-radius: 8px;
    background: var(--accent-soft);
    border-left: 3px solid var(--accent);
    margin-top: 8px;
}

.whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 12px;
}

.whatsapp-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(188, 143, 143, 0.3);
}

.whatsapp-cta i {
    font-size: 1.1rem;
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .gs-wrapper {
        flex-direction: column;
    }
}

/* ===================== */
/* MOBILE IMPROVEMENTS   */
/* ===================== */

@media (max-width: 900px) {

    /* overall spacing cleanup */
    .gs-wrapper {
        flex-direction: column;
        gap: 18px;
        padding: 20px 14px 80px;
    }

    /* islands become full width + cleaner breathing room */
    .gs-island {
        width: 100%;
        padding: 20px;
        border-radius: 14px;
    }

    /* hero becomes tighter and more readable */
    .gs-hero {
        padding: 70px 16px 25px;
    }

    .gs-hero-card {
        padding: 26px 18px;
        border-radius: 14px;
    }

    .gs-hero-card h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .gs-hero-card p {
        font-size: 0.95rem;
    }

    /* form spacing becomes less “tall stack” */
    .lead-form {
        gap: 10px;
    }

    .lead-form input,
    .lead-form textarea,
    .lead-form select {
        font-size: 0.95rem;
        padding: 11px 12px;
    }

    /* service dropdowns tighter */
    .service-dropdown summary {
        padding: 12px;
        font-size: 0.9rem;
    }

    .checkbox-group {
        padding: 8px 12px 12px;
        gap: 8px;
    }

    .checkbox-label {
        padding: 6px;
    }

    /* info panel spacing */
    .steps-container {
        gap: 10px;
    }

    .info-item summary {
        padding: 12px;
    }

    .step-description {
        font-size: 0.88rem;
    }

    /* buttons easier to tap */
    .lead-form button,
    .whatsapp-cta {
        padding: 14px;
        font-size: 1rem;
    }

    /* prevent horizontal overflow issues */
    body {
        overflow-x: hidden;
    }
}
