
    /* RESET ET BASE */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #2E7D32;
      --secondary: #f39c12;
      --light: #f8f9fa;
      --dark: #343a40;
      --gray: #6c757d;
      --light-blue: #e3f2fd;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      overflow-x: hidden;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    h1, h2, h3, h4 {
      margin-bottom: 1rem;
      color: var(--primary);
      font-weight: 700;
    }

    p {
      margin-bottom: 1rem;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    .btn {
      display: inline-block;
      padding: 12px 30px;
      background: var(--secondary);
      color: white;
      border-radius: 4px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .btn:hover {
      background: #e67e22;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .btn-service {
      background: var(--primary);
    }

    .btn-service:hover {
      background: #0c6b94;
    }

    .section-header {
      text-align: center;
      margin: 4rem 0 3rem;
    }

    .section-header h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }

    .section-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--secondary);
    }

    .section-header p {
      font-size: 1.2rem;
      color: var(--gray);
      max-width: 700px;
      margin: 0 auto;
    }

    .intro-box {
      background: var(--light-blue);
      border-radius: 10px;
      padding: 2.5rem;
      margin: 3rem 0;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .intro-box h3 {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }

    .intro-box h3 span {
      color: var(--secondary);
    }

    /* LOADER */
    .loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: opacity 0.5s ease;
    }

    .loader-logo {
      width: 150px;
      margin-bottom: 2rem;
    }

    .loader-spinner {
      width: 50px;
      height: 50px;
      border: 5px solid rgba(10, 90, 125, 0.2);
      border-top: 5px solid var(--primary);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    .loader-text {
      margin-top: 1.5rem;
      font-size: 1.2rem;
      color: var(--primary);
      font-weight: 600;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* HEADER */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #f39c12;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      z-index: 1000;
      padding: 15px 0;
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      height: 50px;
    }

    .nav-links {
      display: flex;
    }

    .nav-links li {
      margin-left: 1.5rem;
    }

    .nav-links a {
      font-weight: 600;
      position: relative;
      padding: 5px 0;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--secondary);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .navbar-right {
      display: flex;
      align-items: center;
    }

    .menu-container {
      position: relative;
      margin-right: 1rem;
    }

    .grid-icon {
      font-size: 2rem;
      color: var(--primary);
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .grid-icon:hover {
      transform: scale(1.1);
    }

    .dropdown {
      position: absolute;
      top: 100%;
      right: 0;
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      padding: 1rem;
      width: 250px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 100;
    }

    .dropdown.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .app-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .app-icon {
      display: block;
      padding: 10px;
      background: var(--light);
      border-radius: 5px;
      text-align: center;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .app-icon:hover {
      background: var(--primary);
      color: white;
    }

    .hamburger {
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--primary);
      cursor: pointer;
      display: none;
    }

    /* HERO BANNER */
    .hero-banner {
      height: 100vh;
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80') no-repeat center center/cover;
      display: flex;
      align-items: center;
      margin-top: 80px;
    }

    .banner-overlay {
      width: 100%;
      padding: 2rem;
    }

    .banner-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      color: white;
    }

    .banner-content h1 {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      color: white;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .banner-content p {
      font-size: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .btn-banner {
      font-size: 1.1rem;
      padding: 15px 40px;
    }

    /* SERVICES SECTION */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .service-card {
      background: white;
      border-radius: 10px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
      opacity: 0;
      transform: translateY(20px);
    }

    .service-card:hover {
      transform: translateY(-10px);
    }

    .service-card i {
      font-size: 3rem;
      color: var(--secondary);
      margin-bottom: 1.5rem;
    }

    .service-card h4 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
    }

    /* PHOTO GALLERY */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .gallery-item {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      height: 300px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      opacity: 0;
      transform: translateY(20px);
    }

    .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;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 1.5rem;
      background: linear-gradient(transparent, rgba(0,0,0,0.8));
      color: white;
      transform: translateY(100px);
      transition: transform 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
      transform: translateY(0);
    }

    .gallery-overlay h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: white;
    }

    .price-tag {
      position: absolute;
      top: 20px;
      right: 20px;
      background: var(--secondary);
      color: white;
      padding: 5px 15px;
      border-radius: 30px;
      font-weight: 600;
    }

    .gallery-cta {
      text-align: center;
      margin: 3rem 0;
    }

    .btn-gallery {
      background: var(--primary);
      padding: 15px 40px;
      font-size: 1.1rem;
    }

    /* LONG-TERM RENTAL SECTION */
    .long-term-rental {
      background: var(--light);
      padding: 5rem 0;
    }

    .rental-benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }

    .benefit-card {
      background: white;
      border-radius: 10px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .benefit-card i {
      font-size: 3rem;
      color: var(--primary);
      margin-bottom: 1.5rem;
    }

    .benefit-card h4 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
    }

    .rental-process {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin: 3rem 0;
    }

    .process-step {
      flex: 0 0 calc(25% - 2rem);
      text-align: center;
      min-width: 200px;
    }

    .step-number {
      width: 60px;
      height: 60px;
      background: var(--secondary);
      color: white;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5rem;
      font-weight: bold;
      margin: 0 auto 1.5rem;
    }

    /* PROPERTY MANAGEMENT */
    .property-management {
      padding: 5rem 0;
      background: var(--light-blue);
    }

    .management-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }

    .step-card {
      background: white;
      border-radius: 10px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .benefits-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .benefit-item {
      display: flex;
      align-items: flex-start;
    }

    .benefit-icon {
      margin-right: 1rem;
      color: var(--secondary);
      font-size: 1.5rem;
    }

    /* FOOTER */
    footer {
      background: #2E7D32;
      color: white;
      padding: 4rem 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .footer-col {
      margin-bottom: 2rem;
    }

    .footer-logo {
      width: 180px;
      margin-bottom: 1.5rem;
    }

    .footer-col h4 {
      color: white;
      margin-bottom: 1.5rem;
      font-size: 1.4rem;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-col h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--secondary);
    }

    .footer-links {
      display: flex;
      flex-direction: column;
    }

    .footer-links a {
      margin-bottom: 0.8rem;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--secondary);
    }

    .footer-col p {
      margin-bottom: 0.5rem;
      display: flex;
      align-items: flex-start;
    }

    .footer-col i {
      margin-right: 10px;
      color: var(--secondary);
      min-width: 20px;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .social-links a {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      background: var(--secondary);
      transform: translateY(-3px);
    }

    .newsletter input {
      width: 100%;
      padding: 12px 15px;
      border: none;
      border-radius: 4px;
      margin-bottom: 10px;
    }

    .newsletter button {
      width: 100%;
      background: var(--secondary);
      color: white;
      border: none;
      padding: 12px;
      border-radius: 4px;
      cursor: pointer;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .newsletter button:hover {
      background: #e67e22;
    }

    .footer-bottom {
      text-align: center;
      padding: 1.5rem 0;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .footer-bottom p {
      margin-bottom: 0;
    }

    .footer-bottom i {
      color: var(--secondary);
    }

    /* BACK TO TOP */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--secondary);
      color: white;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.3s ease;
      z-index: 99;
    }

    .back-to-top.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
      .nav-links {
        display: none;
      }
      
      .hamburger {
        display: block;
      }
      
      .banner-content h1 {
        font-size: 2.8rem;
      }
      
      .banner-content p {
        font-size: 1.3rem;
      }
    }

    @media (max-width: 768px) {
      .section-header h2 {
        font-size: 2rem;
      }
      
      .process-step {
        flex: 0 0 100%;
      }
      
      .banner-content h1 {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 576px) {
      .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
      }
      
      .intro-box {
        padding: 1.5rem;
      }
    }
  