:root {
    --navy: #1a2e5a;
    --green: #5db230;
    --green-dark: #4a9326;
    --light: #f4f8f0;
    --white: #ffffff;
    --gray: #6b7280;
    --light-gray: #f0f4f8;
  }
 
  * { margin: 0; padding: 0; box-sizing: border-box; }
 
  body {
    font-family: 'Barlow', sans-serif;
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
  }

  html {
    scroll-behavior: smooth;
  }
 
  /* ─── SCROLL ANIMATION SETUP ─── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
  }
  .reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
  }
  .reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
  }
 
  /* ─── NAVBAR ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 60px;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    animation: slideDown 0.6s ease 0.1s both;
  }
 
  @keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
 
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
 
  .logo-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .logo-icon svg { width: 28px; height: 28px; }
 
  .logo-text {
    line-height: 1;
  }
 
  .logo-text strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: var(--navy);
    letter-spacing: 1px;
  }
 
  .logo-text span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    color: var(--green);
    letter-spacing: 3px;
    font-weight: 700;
  }
 
  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }
 
  .nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }
 
  .nav-links a:hover { color: var(--green); }
 
  .nav-cta {
    background: var(--green);
    color: white !important;
    padding: 10px 22px;
    border-radius: 6px;
    transition: background 0.2s !important;
  }
 
  .nav-cta:hover { background: var(--green-dark) !important; color: white !important; }
 
  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 60px 60px;
    background: var(--light);
    position: relative;
    overflow: hidden;
  }
 
  .hero::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(93,178,48,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
 
  .hero-content { z-index: 1; }
 
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(93,178,48,0.12);
    border: 1.5px solid rgba(93,178,48,0.3);
    color: var(--green-dark);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    animation: fadeInUp 0.7s ease 0.3s both;
  }
 
  .hero-badge::before {
    content: '✦';
    font-size: 10px;
  }
 
  .hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(64px, 8vw, 100px);
    line-height: 0.9;
    color: var(--navy);
    text-transform: uppercase;
    animation: fadeInUp 0.7s ease 0.4s both;
  }
 
  .hero-title .accent {
    color: var(--green);
    display: block;
  }
 
  .hero-tagline {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin: 24px 0 12px;
    animation: fadeInUp 0.7s ease 0.5s both;
  }
 
  .hero-tagline .green { color: var(--green); }
 
  .hero-desc {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 36px;
    animation: fadeInUp 0.7s ease 0.6s both;
  }
 
  .hero-buttons {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.7s ease 0.7s both;
  }
 
  .btn-primary {
    background: var(--green);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
  }
 
  .btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
  }
 
  .btn-secondary {
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
  }
 
  .btn-secondary:hover {
    background: var(--navy);
    color: white;
  }
 
  /* Hero image area */
  .hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 520px;
    animation: fadeInRight 0.9s ease 0.4s both;
  }
 
  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
  }
 
  .hero-photo-placeholder {
    width: 380px;
    height: 480px;
    border-radius: 20px;
    background: linear-gradient(135deg, #d0e8c8 0%, #b8d9a8 50%, #a0ca88 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(26,46,90,0.15);
  }
 
  .hero-photo-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26,46,90,0.2));
  }
 
  .hero-photo-placeholder .icon-big {
    font-size: 80px;
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
  }
 
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
 
  .hero-photo-placeholder p {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    opacity: 0.7;
    position: relative;
    z-index: 1;
  }
 
  /* floating badge on hero image */
  .float-badge {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: white;
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeInLeft 0.9s ease 0.8s both, floatBadge 4s ease-in-out 2s infinite;
  }
 
  @keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
  }
 
  @keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
 
  .float-badge .num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--green);
  }
 
  .float-badge .label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
  }
 
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
 
  /* ─── TRUST BAR ─── */
  .trust-bar {
    background: var(--navy);
    padding: 28px 60px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
  }
 
  .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
  }
 
  .trust-icon {
    width: 42px;
    height: 42px;
    background: rgba(93,178,48,0.2);
    border: 1.5px solid rgba(93,178,48,0.4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
 
  .trust-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
 
  .trust-item span {
    font-size: 12px;
    opacity: 0.65;
  }
 
  /* ─── SECTION SHARED ─── */
  section {
    padding: 90px 60px;
  }
 
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
  }
 
  .section-label::before, .section-label::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
  }
 
  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 5vw, 56px);
    text-transform: uppercase;
    line-height: 1;
    color: var(--navy);
    margin-bottom: 16px;
  }
 
  .section-desc {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
    max-width: 560px;
  }
 
  /* ─── SERVICES ─── */
  .services {
    background: var(--white);
  }
 
  .services-header {
    text-align: center;
    margin-bottom: 60px;
  }
 
  .services-header .section-desc { margin: 0 auto; }
 
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
 
  .service-card {
    background: var(--light);
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
  }
 
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26,46,90,0.1);
    border-color: var(--green);
  }
 
  .service-card:nth-child(2) { transition-delay: 0.1s; }
  .service-card:nth-child(3) { transition-delay: 0.2s; }
  .service-card:nth-child(4) { transition-delay: 0.3s; }
 
  .service-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
  }
 
  .service-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }
 
  .service-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
  }
 
  /* ─── GALLERY / SPACES ─── */
  .spaces {
    background: var(--navy);
    color: white;
    padding: 90px 60px;
  }
 
  .spaces .section-title { color: white; }
  .spaces .section-desc { color: rgba(255,255,255,0.6); }
 
  .spaces-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 16px;
    margin-top: 48px;
  }
 
  .space-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
  }
 
  .space-card:hover { transform: scale(1.02); }
 
  /* LEFT - Home Cleaning */
.space-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  
  /* MIDDLE TOP - Office */
  .space-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  
  /* RIGHT - Deep Clean */
  .space-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1 / 3;
  }
  
  /* MIDDLE BOTTOM - Move */
  .space-card:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
 
  .space-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 48px;
    position: relative;
    transition: filter 0.3s;
  }
 
  .space-card:hover .space-thumb { filter: brightness(1.1); }
 
  .space-thumb-home {
    background: linear-gradient(135deg, #c8e6b8 0%, #a8d098 100%);
  }
 
  .space-thumb-office {
    background: linear-gradient(135deg, #b8cce8 0%, #98acd8 100%);
  }
 
  .space-thumb-deep {
    background: linear-gradient(135deg, #e8d0b8 0%, #d0b898 100%);
  }
 
  .space-thumb-move {
    background: linear-gradient(135deg, #d8b8e8 0%, #c098d8 100%);
  }
 
  .space-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    padding: 40px 20px 16px;
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
 
  .center-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--green);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    line-height: 1.3;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(93,178,48,0.5);
    animation: pulse 2.5s ease-in-out infinite;
  }
 
  @keyframes pulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(93,178,48,0.5); transform: translate(-50%,-50%) scale(1); }
    50% { box-shadow: 0 10px 60px rgba(93,178,48,0.8); transform: translate(-50%,-50%) scale(1.05); }
  }
 
  /* ─── WHY US ─── */
  .why-us {
    background: var(--light);
    display: flex;
    gap: 80px;
    align-items: center;
  }
 
  .why-content { flex: 1; }
  .why-visual { flex: 1; }
 
  .why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
  }
 
  .why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border-radius: 14px;
    transition: box-shadow 0.3s, transform 0.3s;
  }
 
  .why-item:hover {
    box-shadow: 0 8px 30px rgba(26,46,90,0.08);
    transform: translateX(6px);
  }
 
  .why-check {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 700;
  }
 
  .why-item-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
  }
 
  .why-item-text p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
  }
 
  .why-visual-inner {
    background: var(--navy);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
  }
 
  .why-visual-inner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: rgba(93,178,48,0.15);
    border-radius: 50%;
  }
 
  .big-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 96px;
    color: var(--green);
    line-height: 1;
    position: relative;
  }
 
  .why-visual-inner h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    position: relative;
  }
 
  .why-visual-inner p {
    font-size: 14px;
    opacity: 0.65;
    margin-top: 12px;
    line-height: 1.6;
    position: relative;
  }
 
  .stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
  }
 
  .stat-box {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
  }
 
  .stat-box .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 36px;
    color: var(--green);
  }
 
  .stat-box .stat-label {
    font-size: 12px;
    opacity: 0.65;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
 
  /* ─── CTA SECTION ─── */
  .cta-section {
    background: var(--green);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
 
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(255,255,255,0.04) 20px,
      rgba(255,255,255,0.04) 40px
    );
  }
 
  .cta-section h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 6vw, 64px);
    text-transform: uppercase;
    color: white;
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
  }
 
  .cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin-bottom: 36px;
    position: relative;
  }
 
  .cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--green);
    padding: 18px 40px;
    border-radius: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 32px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  }
 
  .cta-phone:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  }
 
  .cta-phone .phone-icon {
    width: 40px;
    height: 40px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    animation: ring 2s ease-in-out infinite;
  }
 
  @keyframes ring {
    0%, 100% { transform: rotate(0); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50% { transform: rotate(0); }
  }
 
  /* ─── FOOTER ─── */
  footer {
    background: #101c38;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
  }
 
  footer .footer-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: white;
    letter-spacing: 1px;
  }
 
  .footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }
 
  .footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 14px;
  }
 
  .footer-links a:hover { color: var(--green); }
 
  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 14px 24px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
    .hero-image { display: none; }
    section { padding: 60px 24px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .spaces-layout { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .space-card:first-child { grid-row: auto; }
    .space-card:nth-child(4) { 
        grid-row: auto; 
      }
    .why-us { flex-direction: column; gap: 40px; }
    .trust-bar { gap: 28px; padding: 24px; }
    footer { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
    .cta-section { padding: 60px 24px; }
  }