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

    :root {
      --primary: #2d6a4f;
      --primary-dark: #1b4332;
      --primary-light: #52b788;
      --accent: #d4a373;
      --bg: #fefae0;
      --bg-white: #ffffff;
      --text: #333333;
      --text-light: #666666;
      --text-white: #ffffff;
      --shadow: 0 4px 20px rgba(0,0,0,0.08);
      --radius: 12px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      line-height: 1.6;
      background: var(--bg-white);
    }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(0,0,0,0.06);
      transition: background 0.3s;
    }
    .navbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 24px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .navbar .logo {
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--primary-dark);
      text-decoration: none;
      letter-spacing: -0.5px;
    }
    .navbar .logo span { color: var(--accent); }
    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--text);
      font-weight: 500;
      font-size: 0.95rem;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--primary); }
    .hamburger {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--text);
    }

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
      color: var(--text-white);
      padding: 120px 24px 80px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: url('images/hero-bg.jpg') center/cover;
      opacity: 0.15;
    }
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
    }
    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 16px;
      line-height: 1.1;
    }
    .hero p {
      font-size: 1.2rem;
      opacity: 0.9;
      margin-bottom: 32px;
      line-height: 1.7;
    }
    .btn {
      display: inline-block;
      padding: 14px 36px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: pointer;
      border: none;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
    .btn-primary {
      background: var(--accent);
      color: var(--text-white);
    }
    .btn-outline {
      background: transparent;
      color: var(--text-white);
      border: 2px solid rgba(255,255,255,0.5);
      margin-left: 12px;
    }
    .btn-outline:hover { border-color: #fff; }

    /* ===== SECTIONS ===== */
    .section {
      padding: 100px 24px;
    }
    .section-alt { background: var(--bg); }
    .section .container {
      max-width: 1100px;
      margin: 0 auto;
    }
    .section-label {
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--primary);
      margin-bottom: 8px;
    }
    .section-title {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--primary-dark);
      letter-spacing: -0.5px;
    }
    .section-desc {
      color: var(--text-light);
      max-width: 600px;
      font-size: 1.05rem;
      line-height: 1.7;
    }

    /* ===== ABOUT ===== */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      margin-top: 48px;
    }
    .about-text { }
    .about-text p {
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 24px;
    }
    .about-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 12px;
    }
    .about-images img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: var(--radius);
    }
    .about-images img:first-child {
      grid-row: 1 / 3;
      min-height: 300px;
    }

    /* ===== PROMISE ===== */
    .promise-content {
      display: flex;
      gap: 48px;
      align-items: center;
      margin-top: 48px;
    }
    .promise-icon {
      flex-shrink: 0;
      width: 100px;
      height: 100px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 2.2rem;
    }
    .promise-text p {
      color: var(--text-light);
      line-height: 1.8;
      font-size: 1.05rem;
    }

    /* ===== SERVICES ===== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 48px;
    }
    .service-card {
      background: var(--bg-white);
      border-radius: var(--radius);
      padding: 36px 28px;
      box-shadow: var(--shadow);
      transition: transform 0.3s, box-shadow 0.3s;
      text-align: center;
    }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    }
    .service-icon {
      width: 64px;
      height: 64px;
      background: var(--bg);
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 1.6rem;
      margin-bottom: 20px;
    }
    .service-card h3 {
      font-size: 1.15rem;
      margin-bottom: 12px;
      color: var(--primary-dark);
    }
    .service-card p {
      color: var(--text-light);
      font-size: 0.95rem;
      line-height: 1.6;
    }
    .services-image {
      margin-top: 48px;
      border-radius: var(--radius);
      overflow: hidden;
    }
    .services-image img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      display: block;
    }

    /* ===== LOCATION ===== */
    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      margin-top: 48px;
    }
    .location-info { }
    .location-item {
      margin-bottom: 28px;
    }
    .location-item h4 {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--primary);
      margin-bottom: 8px;
    }
    .location-item p {
      color: var(--text-light);
      line-height: 1.6;
    }
    .social-links {
      display: flex;
      gap: 16px;
      margin-top: 24px;
    }
    .social-links a {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--primary);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 1.1rem;
      transition: background 0.2s, transform 0.2s;
    }
    .social-links a:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
    }
    .location-image {
      border-radius: var(--radius);
      overflow: hidden;
    }
    .location-image img {
      width: 100%;
      height: 100%;
      min-height: 300px;
      object-fit: cover;
      display: block;
    }

    /* ===== CONTACT ===== */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      margin-top: 48px;
    }
    .contact-details { }
    .contact-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 28px;
    }
    .contact-item-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--bg);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .contact-item h4 {
      font-size: 0.95rem;
      margin-bottom: 4px;
      color: var(--primary-dark);
    }
    .contact-item p,
    .contact-item a {
      color: var(--text-light);
      text-decoration: none;
      font-size: 0.95rem;
    }
    .contact-item a:hover { color: var(--primary); }
    .contact-image {
      border-radius: var(--radius);
      overflow: hidden;
    }
    .contact-image img {
      width: 100%;
      height: 100%;
      min-height: 300px;
      object-fit: cover;
      display: block;
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--primary-dark);
      color: rgba(255,255,255,0.7);
      padding: 40px 24px;
      text-align: center;
    }
    .footer .container {
      max-width: 1100px;
      margin: 0 auto;
    }
    .footer-brand {
      font-size: 1.3rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 12px;
    }
    .footer-brand span { color: var(--accent); }
    .footer p { font-size: 0.9rem; margin-bottom: 8px; }
    .footer a { color: var(--accent); text-decoration: none; }
    .footer a:hover { text-decoration: underline; }
    .footer-social {
      display: flex;
      gap: 12px;
      justify-content: center;
      margin-top: 16px;
    }
    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      transition: background 0.2s;
    }
    .footer-social a:hover { background: rgba(255,255,255,0.2); color: #fff; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .hamburger { display: block; }
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      }
      .nav-links.active { display: flex; }
      .hero h1 { font-size: 2.4rem; }
      .hero p { font-size: 1rem; }
      .about-grid,
      .location-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }
      .services-grid { grid-template-columns: 1fr; }
      .promise-content { flex-direction: column; text-align: center; }
      .btn-outline { margin-left: 0; margin-top: 12px; }
    }
