/* Root & Variables */
    :root {
      --green-primary: #006f47;
      --green-secondary: #2a9d8f;
      --font-heading: 'Playfair Display', serif;
      --font-body: 'Open Sans', sans-serif;
    }
    /* Global Reset */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); color: #333; line-height: 1.6; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    /* Container */
    .container { width: 90%; max-width: 1200px; margin: 0 auto; }

    /* Navbar */
    .navbar {
      position: fixed; top: 0; width: 100%; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 2rem; z-index: 100;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .logo { height: 100px; }
    .nav-links { display: flex; gap: 1.5rem; font-weight: 600; color: #555; }
    .nav-links a:hover { color: var(--green-primary); }

    /* Hero */
    header {
      background: linear-gradient(rgba(0,111,71,0.6), rgba(0,111,71,0.4)),
                  url('https://source.unsplash.com/1600x900/?tailoring,clothes') center/cover no-repeat;
      height: 70vh; display: flex; align-items: center; justify-content: center; position: relative;
    }
    .hero-content { text-align: center; color: #fff; padding: 0 1rem; animation: fadeIn 1.5s ease-in;
    }
    .hero-content h1 {
      font-family: var(--font-heading); font-size: 3rem; margin-bottom: 0.5rem;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
    }
    .hero-content p {
      font-size: 1.1rem; margin-bottom: 1.5rem; opacity: 0.9;
    }
    .btn {
      display: inline-block; padding: 0.75rem 2rem; background: var(--green-secondary);
      color: #fff; border-radius: 50px; font-weight: 600; transition: transform 0.3s, background 0.3s;
    }
    .btn:hover { background: var(--green-primary); transform: translateY(-3px); }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: translateY(0);} }

    /* Section Titles */
    section h2 {
      font-family: var(--font-heading); font-size: 2rem;
      color: var(--green-primary); text-align: center; margin-bottom: 2rem;
      position: relative;
    }
    section h2::after {
      content: '';
      width: 60px; height: 4px; background: var(--green-secondary);
      position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
    }

    /* Services */
    .services {
      background: #f9f9f9; padding: 4rem 0;
    }
    .services .grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2.5rem;
    }
    .service-item {
      background: #fff; padding: 2rem; border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s;
      text-align: center; border-top: 4px solid var(--green-secondary);
    }
    .service-item:hover {
      transform: translateY(-8px); box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }
    .service-item h3 {
      font-family: var(--font-heading); margin-bottom: 0.75rem;
      color: var(--green-secondary);
    }
    .service-item p { color: #555; }

    /* Gallery */
    .gallery { padding: 4rem 0;
    }
    .gallery .grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem;
    }
    .gallery img {
      border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    .gallery img:hover { transform: scale(1.05); }

    /* Testimonials */
    .testimonials { background: #f0f0f0; padding: 4rem 0;
    }
    .testimonials .grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem;
    }
    .testimonial {
      background: #fff; padding: 2.5rem; border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      display: flex; flex-direction: column;
    }
    .testimonial p { font-style: italic; flex-grow: 1; color: #444; }
    .testimonial h4 {
      text-align: right; margin-top: 1.5rem; color: var(--green-primary);
      font-weight: 600;
    }

    /* Contact */
    .contact { padding: 4rem 0;
    }
    .contact-form {
      max-width: 600px; margin: 0 auto;
      background: #fff; padding: 2rem; border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }
    .contact-form label {
      display: block; margin-bottom: 0.5rem;
      font-weight: 600; color: var(--green-primary);
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%; padding: 0.75rem; margin-bottom: 1rem;
      border: 1px solid #ccc; border-radius: 6px;
      font-family: var(--font-body);
    }
    .contact-form button {
      background: var(--green-primary); color: #fff;
      padding: 0.75rem 1.5rem; border: none; border-radius: 50px;
      font-weight: 600; transition: background 0.3s;
    }
    .contact-form button:hover { background: var(--green-secondary); }
    #form-status { text-align: center; margin-top: 1rem; color: var(--green-primary); font-style: italic; }

    /* Footer */
    footer { 
      background: var(--green-primary); 
      color: #fff; 
      padding: 3rem 0 1rem 0;
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }
    
    .footer-widget h3 {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #fff;
      border-bottom: 2px solid var(--green-secondary);
      padding-bottom: 0.5rem;
    }
    
    .contact-info p {
      margin-bottom: 0.5rem;
      opacity: 0.9;
    }
    
    .contact-info strong {
      color: var(--green-secondary);
    }
    
    .social-media {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    .social-link {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.5rem 0;
      color: #fff;
      opacity: 0.9;
      transition: all 0.3s ease;
      border-radius: 6px;
    }
    
    .social-link:hover {
      opacity: 1;
      color: var(--green-secondary);
      transform: translateX(5px);
    }
    
    .social-link svg {
      width: 24px;
      height: 24px;
      transition: transform 0.3s ease;
    }
    
    .social-link:hover svg {
      transform: scale(1.1);
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 1rem;
      text-align: center;
    }
    
    .footer-bottom p { 
      font-size: 0.875rem; 
      opacity: 0.7; 
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .hero-content h1 { font-size: 2.25rem; }
      .nav-links { display: none; }
      .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      
      .social-media {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
      }
      
      .social-link {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
      }
    }