/* =============================================
   CESUR PEYZAJ PARKE — MAIN STYLESHEET
   ============================================= */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-dark:   #1a4731;
    --green-mid:    #2d6a4f;
    --green-light:  #52b788;
    --green-pale:   #b7e4c7;
    --green-bg:     #d8f3dc;
    --earth:        #b7791f;
    --earth-light:  #f6e9d7;
    --white:        #ffffff;
    --off-white:    #f7f5f0;
    --gray-light:   #f0efea;
    --gray:         #888;
    --text:         #1a1a1a;
    --text-soft:    #555;
    --shadow:       0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
    --radius:       14px;
    --radius-lg:    22px;
    --transition:   0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-mid);
    color: white;
    box-shadow: 0 4px 14px rgba(45,106,79,0.4);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45,106,79,0.5);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 4px 14px rgba(37,211,102,0.4);
}

.btn-whatsapp:hover {
    background: #1ea855;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

.btn-whatsapp-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: #25d366;
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(37,211,102,0.4);
}

.btn-whatsapp-full:hover {
    background: #1ea855;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* =============================================
   SECTION HEADERS
   ============================================= */

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    background: var(--green-bg);
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-soft);
    max-width: 540px;
    margin: 0 auto;
}

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

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow var(--transition);
}

#header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
}

.logo-sub {
    font-size: 0.68rem;
    color: var(--text-soft);
    font-weight: 400;
}

#navbar ul {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-link {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-soft);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--green-mid);
    background: var(--green-bg);
}

.header-call {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--green-mid);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all var(--transition);
    flex-shrink: 0;
}

.header-call:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO
   ============================================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a4731 0%, #2d6a4f 40%, #40916c 70%, #52b788 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(82,183,136,0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(26,71,49,0.5) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 760px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease both;
}

.hero-content h1 {
    font-size: clamp(2rem, 5.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
    animation: fadeInUp 0.8s ease 0.1s both;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-content h1 span {
    color: var(--green-pale);
}

.hero-content p {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    opacity: 0.9;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.2s both;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-btns .btn-primary {
    background: white;
    color: var(--green-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-btns .btn-primary:hover {
    background: var(--green-pale);
    color: var(--green-dark);
    transform: translateY(-2px);
}

.hero-areas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-areas span {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll span {
    display: block;
    width: 2px;
    height: 40px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
    animation: scrollPulse 2s ease infinite;
}

/* =============================================
   STATS
   ============================================= */

.stats {
    background: var(--green-dark);
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--green-pale);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 400;
}

/* =============================================
   SERVICES
   ============================================= */

.services {
    padding: 100px 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-mid), var(--green-light));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--green-mid);
    transition: gap var(--transition);
}

.service-link:hover {
    color: var(--green-dark);
    letter-spacing: 0.5px;
}

/* =============================================
   WHY US
   ============================================= */

.why-us {
    padding: 100px 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.why-text .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.why-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.why-text > p {
    color: var(--text-soft);
    margin-bottom: 32px;
    line-height: 1.75;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text-soft);
}

.why-check {
    width: 26px;
    height: 26px;
    background: var(--green-bg);
    color: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.why-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--green-bg);
}

.why-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--green-mid);
    font-size: 0.9rem;
}

/* =============================================
   AREAS
   ============================================= */

.areas {
    padding: 100px 0;
    background: var(--off-white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.area-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    cursor: default;
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    background: var(--green-mid);
    color: white;
}

.area-card:hover .area-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.area-card:hover h3 {
    color: white;
}

.area-card:hover p {
    color: rgba(255,255,255,0.7);
}

.area-icon {
    width: 56px;
    height: 56px;
    background: var(--green-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--green-dark);
    transition: all var(--transition);
}

.area-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    transition: color var(--transition);
}

.area-card p {
    font-size: 0.78rem;
    color: var(--gray);
    transition: color var(--transition);
}

/* =============================================
   GALLERY
   ============================================= */

.gallery {
    padding: 100px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.gallery-placeholder-item {
    aspect-ratio: 4/3;
    background: var(--gray-light);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gray);
    font-size: 0.88rem;
    border: 2px dashed #ddd;
    transition: all var(--transition);
}

.gallery-placeholder-item:hover {
    border-color: var(--green-light);
    background: var(--green-bg);
    color: var(--green-dark);
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,71,49,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
    color: white;
    font-weight: 600;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.88rem;
    font-style: italic;
}

/* =============================================
   CONTACT
   ============================================= */

.contact {
    padding: 100px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.contact-item:hover {
    transform: translateX(4px);
}

.contact-icon-wrap {
    width: 46px;
    height: 46px;
    background: var(--green-mid);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.contact-item h4 {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    margin-bottom: 4px;
}

.contact-item a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--green-mid);
}

.contact-item a:hover {
    color: var(--green-dark);
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.5;
}

.contact-form {
    background: white;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--off-white);
    transition: border-color var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-light);
    background: white;
}

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

.form-success {
    text-align: center;
    color: var(--green-mid);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 14px;
    padding: 12px;
    background: var(--green-bg);
    border-radius: 10px;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background: var(--green-dark);
    color: white;
    padding: 70px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.88rem;
    opacity: 0.7;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-mid);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background var(--transition);
}

.footer-phone:hover {
    background: var(--green-light);
}

.footer-links h4 {
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    margin-bottom: 18px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links ul li,
.footer-links ul li a {
    font-size: 0.9rem;
    opacity: 0.75;
    transition: opacity var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--green-pale);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    opacity: 0.5;
}

/* =============================================
   FLOATING BUTTONS
   ============================================= */

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 999;
    background: #25d366;
    color: white;
    border-radius: 50px;
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    font-size: 0.82rem;
    font-weight: 600;
    transition: all var(--transition);
    animation: floatBounce 3s ease infinite;
}

.whatsapp-float:hover {
    background: #1ea855;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 28px rgba(37,211,102,0.6);
}

.call-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: var(--green-mid);
    color: white;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(45,106,79,0.5);
    transition: all var(--transition);
}

.call-float:hover {
    background: var(--green-dark);
    transform: scale(1.1);
}

/* =============================================
   ANIMATIONS
   ============================================= */

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

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50%       { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

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

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

@media (max-width: 768px) {
    .header-call { display: none; }
    .logo-sub    { display: none; }

    #navbar {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        padding: 16px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }

    #navbar.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    #navbar ul {
        flex-direction: column;
        padding: 0 24px;
        gap: 4px;
    }

    .nav-link {
        display: block;
        padding: 12px 16px;
    }

    .hamburger { display: flex; }

    .why-grid         { grid-template-columns: 1fr; gap: 40px; }
    .why-image        { order: -1; min-height: 280px; }
    .contact-grid     { grid-template-columns: 1fr; }
    .gallery-grid     { grid-template-columns: repeat(2, 1fr); }
    .footer-inner     { grid-template-columns: 1fr; gap: 32px; }
    .areas-grid       { grid-template-columns: repeat(2, 1fr); }

    .services,
    .why-us,
    .areas,
    .gallery,
    .contact { padding: 70px 0; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.9rem; }
    .hero-btns       { flex-direction: column; align-items: center; }
    .hero-areas      { gap: 8px; }
    .services-grid   { grid-template-columns: 1fr; }
    .gallery-grid    { grid-template-columns: 1fr; }
    .areas-grid      { grid-template-columns: repeat(2, 1fr); }
    .contact-form    { padding: 24px; }
    .whatsapp-float span { display: none; }
    .whatsapp-float  {
        width: 54px;
        height: 54px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}
