/* ============================================
   GCube — Civil Construction Website
   Color: White + Orange (#e87a2e)
   Fonts: Poppins + Open Sans
   ============================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
    --color-primary: #e87a2e;
    --color-primary-dark: #c9651e;
    --color-primary-light: #f5a66a;
    --color-primary-rgb: 232, 122, 46;

    --color-white: #ffffff;
    --color-black: #1a1a1a;
    --color-dark: #333333;
    --color-gray: #666666;
    --color-light-gray: #f5f5f5;
    --color-border: #e0e0e0;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.07);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: 0.3s ease;
    --header-height: 80px;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-black);
}

.text-accent {
    color: var(--color-primary);
}

.section {
    padding: 100px 0;
}

.section--gray {
    background: var(--color-light-gray);
}

.section__header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section__label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.section__title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--color-black);
}

.section__desc {
    font-size: 1.05rem;
    color: var(--color-gray);
    line-height: 1.7;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn--primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn--outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn--white {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn--white:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all var(--transition);
    height: var(--header-height);
}

.header.scrolled {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    height: 70px;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.header__logo img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.header.scrolled .header__logo img {
    width: 40px;
    height: 40px;
}

.header__brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 1px;
}

.header.scrolled .header__brand {
    color: var(--color-black);
}

.header__nav-list {
    display: flex;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 50px;
    transition: all var(--transition);
}

.header.scrolled .nav-link {
    color: var(--color-dark);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--color-primary);
    background: rgba(var(--color-primary-rgb), 0.08);
}

.header__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-primary);
    padding: 10px 22px;
    border-radius: 50px;
    transition: all var(--transition);
}

.header__cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.header__hamburger span {
    width: 26px;
    height: 3px;
    background: var(--color-white);
    border-radius: 3px;
    transition: all var(--transition);
}

.header.scrolled .header__hamburger span {
    background: var(--color-dark);
}

.header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.header__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../assets/DreamHomePoster.png') center/cover no-repeat;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.82) 0%,
        rgba(26, 26, 26, 0.55) 50%,
        rgba(232, 122, 46, 0.25) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 20px 80px;
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-primary-light);
    margin-bottom: 20px;
}

.hero__title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero__title .text-accent {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-style: italic;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll-indicator a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-12px); }
    60% { transform: translateY(-6px); }
}

/* ---------- STATS ---------- */
.stats {
    background: var(--color-primary);
    padding: 50px 0;
    position: relative;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats__icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.stats__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
}

.stats__number::after {
    content: '+';
    font-size: 1.8rem;
}

.stats__number[data-suffix="%"]::after {
    content: '%';
}

.stats__label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 6px;
    font-weight: 500;
}

/* ---------- ABOUT ---------- */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

.about__image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about__badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about__badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about__content .section__label {
    text-align: left;
}

.about__content .section__title {
    text-align: left;
}

.about__text {
    color: var(--color-gray);
    margin-bottom: 16px;
    font-size: 1rem;
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0 30px;
}

.about__highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--color-dark);
}

.about__highlight-item i {
    color: var(--color-primary);
    font-size: 1.1rem;
}

/* ---------- SERVICES ---------- */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card__icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.3);
}

.service-card__image {
    height: 220px;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.08);
}

.service-card__content {
    padding: 28px;
}

.service-card__title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--color-black);
}

.service-card__text {
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-card__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-dark);
}

.service-card__list li i {
    color: var(--color-primary);
    font-size: 0.8rem;
}

/* ---------- GALLERY ---------- */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__overlay h4 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.gallery__overlay p {
    color: var(--color-primary-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ---------- WHY CHOOSE US ---------- */
.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-us__card {
    background: var(--color-white);
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.why-us__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.why-us__card:hover::before {
    transform: scaleX(1);
}

.why-us__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.why-us__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(var(--color-primary-rgb), 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all var(--transition);
}

.why-us__card:hover .why-us__icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.why-us__title {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.why-us__text {
    font-size: 0.92rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background: url('../assets/Landscaping.png') center/cover no-repeat fixed;
    text-align: center;
}

.cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 122, 46, 0.9), rgba(200, 80, 20, 0.92));
}

.cta-banner__content {
    position: relative;
    z-index: 2;
}

.cta-banner__title {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-banner__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- CONTACT ---------- */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact__info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact__info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(var(--color-primary-rgb), 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact__info-item h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--color-black);
}

.contact__info-item p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact__info-item a {
    color: var(--color-primary);
}

.contact__info-item a:hover {
    text-decoration: underline;
}

.contact__form-wrap {
    background: var(--color-light-gray);
    padding: 36px;
    border-radius: var(--radius-lg);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__form-group input,
.contact__form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    color: var(--color-dark);
    transition: border-color var(--transition);
    outline: none;
}

.contact__form-group input:focus,
.contact__form-group textarea:focus {
    border-color: var(--color-primary);
}

.contact__form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__map {
    margin-top: 20px;
}

.contact__map iframe {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--color-black);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 70px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer__logo img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
}

.footer__logo span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
}

.footer__tagline {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
}

.footer__social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer__links h4,
.footer__contact h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer__links h4::after,
.footer__contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    transition: all var(--transition);
}

.footer__links a:hover {
    color: var(--color-primary);
    padding-left: 6px;
}

.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.9rem;
}

.footer__contact li i {
    color: var(--color-primary);
    font-size: 1rem;
    margin-top: 3px;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.65);
}

.footer__contact a:hover {
    color: var(--color-primary);
}

.footer__bottom {
    padding: 20px 0;
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 100px;
    width: 46px;
    height: 46px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
}

/* ---------- FADE-IN ANIMATION ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 1024px) {
    .section__title {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 3rem;
    }

    .about__grid {
        gap: 40px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-white);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .header__nav.active {
        opacity: 1;
        visibility: visible;
    }

    .header__nav-list {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .nav-link {
        color: var(--color-dark);
        font-size: 1.3rem;
        padding: 12px 20px;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--color-primary);
        background: rgba(var(--color-primary-rgb), 0.08);
    }

    .header__cta {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }

    /* When mobile nav is open, always show dark hamburger lines */
    .header__hamburger.active span {
        background: var(--color-dark);
    }

    .hero__title {
        font-size: 2.4rem;
    }

    .hero__subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .hero__tagline {
        font-size: 1.05rem;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stats__number {
        font-size: 2.2rem;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about__image-badge {
        bottom: -10px;
        right: 10px;
        padding: 14px 18px;
    }

    .about__badge-number {
        font-size: 1.8rem;
    }

    .about__content .section__label,
    .about__content .section__title {
        text-align: center;
    }

    .about__highlights {
        grid-template-columns: 1fr;
    }

    .about__content {
        text-align: center;
    }

    .about__content .btn {
        margin: 0 auto;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .gallery__overlay {
        opacity: 1;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
    }

    .cta-banner__title {
        font-size: 1.8rem;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }

    .back-to-top {
        right: 82px;
        bottom: 20px;
        width: 42px;
        height: 42px;
    }

    .section {
        padding: 70px 0;
    }

    .section__header {
        margin-bottom: 40px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

    .contact__form-wrap {
        padding: 24px;
    }
}
