  /* --- 1. Main Container & Layout --- */
  .custom-hero-section {
    /* Background Image */
    background-image: url('https://customedtiles.com.au/wp-content/uploads/2025/11/ctiles-marco-1.png'); 
    background-size: cover;
    background-position: 40% center;
    position: relative;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 80px 20px; 
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
  }

  .hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
  }

  .hero-content-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px; 
    width: 100%;
    gap: 60px; 
    align-items: flex-end; 
  }

  /* --- 2. Left Side (Headline & CTA) --- */
  .hero-left {
    flex: 1;
    min-width: 300px; 
    color: white;
  }

  /* UPDATED HEADLINE STYLE */
  .hero-headline {
    font-family: 'Arial Black', 'Helvetica Neue', sans-serif; 
    font-size: clamp(2.0rem, 3.1vw, 2.9rem); 
    line-height: 1.1; 
    font-weight: 900;
    margin: 0 0 30px 0;
    text-transform: uppercase; 
    text-shadow: 0 3px 1px rgba(0,0,0,0.6);
    color: #fff;
    letter-spacing: -1px; 
  }

  /* --- Button Styling --- */
  .cta-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    max-width: 450px; 
  }

  .cta-button {
    display: block;
    width: 100%; 
    box-sizing: border-box;
    /* Updated Yellow Color */
    background-color: #FFC735; 
    color: #003366; 
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, background-color 0.2s;
    text-align: center;
  }

  .cta-button:hover {
    transform: scale(1.05);
    background-color: #ffd54f;
  }

  /* --- Phone Number Styling --- */
  .phone-link {
    display: block;
    width: 100%; 
    box-sizing: border-box;
    background-color: transparent; 
    color: #1AE2DA; 
    padding: 10px 20px; 
    font-weight: 800; 
    text-decoration: none;
    font-size: 2.2rem; 
    border-radius: 4px;
    text-align: center;
    line-height: 1.1;
    /* Added strong shadow for readability */
    text-shadow: 0 3px 1px rgba(0,0,0,0.6);
  }

  @media (min-width: 993px) {
    .phone-number-mob {
      pointer-events: none; 
      cursor: default;      
    }
  }

  /* --- Guarantee / Checkmark Text --- */
  .guarantee-wrapper {
    margin-top: 10px;
    display: inline-flex;
    flex-wrap: wrap; 
    align-items: center; 
    gap: 15px; 
    background-color: #ffffff; 
    padding: 10px 15px;
    border-radius: 4px;
  }

  .guarantee-item {
    display: flex;
    align-items: center;
  }

  .guarantee-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #000; 
    line-height: 1.2;
    margin-left: 6px; 
  }

  /* --- 3. Right Side (Testimonial) --- */
  .hero-right {
    flex: 1;
    min-width: 300px; 
    display: flex;
    justify-content: flex-end; 
    margin-top: 50px; 
    padding-right: 10px;
  }

  .testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 8px;
    position: relative;
    max-width: 500px;
    width: 100%;
    /* Removed large box shadow or made it very subtle since bg is transparent */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    
    /* Pushes card right on LARGE screens */
    transform: translateX(80px); 
  }

  .testimonial-body {
    display: flex;
    align-items: flex-start; 
    gap: 15px;
    margin-bottom: 20px;
    text-align: left;
  }

  .quote-mark {
    font-size: 5rem;
    color: #FFC735;
    font-family: Georgia, serif;
    line-height: 0.6; 
    margin-top: 10px; 
    flex-shrink: 0; 
  }

  .quote-text {
    font-style: italic;
    color: #000; 
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
    font-weight: 500;
  }

  .quote-author {
    display: block;
    /* Normal weight and case as requested */
    font-weight: normal;
    color: #000;
    font-size: 0.95rem;
    text-transform: none; 
    letter-spacing: 0;
    text-align: right; 
    border-top: 1px solid rgba(0,0,0,0.2);
    padding-top: 10px;
  }

  /* --- 4. RESPONSIVE BREAKPOINTS --- */
  
  @media (max-width: 1300px) and (min-width: 993px) {
    .testimonial-card {
      /* Reset shift so it fits in the narrower container */
      transform: translateX(0);
      margin-right: 0;
    }
  }

  @media (max-width: 992px) {
    .hero-content-grid {
      flex-direction: column;
      text-align: center;
      gap: 40px;
    }

    .hero-left {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .cta-container {
        align-items: center;
        width: 100%;
        max-width: 500px;
    }

    .hero-right {
      width: 100%; 
      min-width: auto;
      margin-top: 0; 
      justify-content: center;
      padding-right: 0;
    }
    
    .testimonial-card {
      margin: 0 auto; 
      transform: none;
      background: rgba(255, 255, 255, 0.6); /* Slightly more opaque on mobile for readability */
    }
  }

  @media (max-width: 576px) {
    .custom-hero-section {
      padding: 50px 15px;
    }

    .hero-headline {
      font-size: 2.2rem; 
    }
    
    .cta-button {
      font-size: 1rem;
      padding: 15px 20px;
    }
    
    .phone-link {
        font-size: 1.8rem; 
    }

    .guarantee-wrapper {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .testimonial-card {
      padding: 20px;
    }
    
    .quote-mark {
        font-size: 3rem;
    }
  }
/* ==============================================
   FORM STYLING - Contact Form 7
   ============================================== */

/* Container principal du formulaire */
.wpcf7-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

/* Paragraphes de champs */
.wpcf7-form p.field {
    margin-bottom: 20px;
    width: 100%;
}

/* Champ single (pleine largeur) */
.wpcf7-form p.field.single-field {
    width: 100%;
    margin-bottom: 25px;
}

/* Layout deux colonnes pour desktop */
.wpcf7-form p.field.first-row,
.wpcf7-form p.field.last-row {
    width: 48%;
    display: inline-block;
    vertical-align: top;
}

.wpcf7-form p.field.first-row {
    margin-right: 4%;
}

.wpcf7-form p.field.last-row {
    margin-right: 0;
}

/* Labels en gras */
.wpcf7-form b {
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
}

/* Styles des inputs et textarea */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    border-color: #007bff; /* Ajustez la couleur selon votre thème */
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Textarea spécifique */
.wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Placeholder styling */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: #999;
    opacity: 1;
}

/* Radio buttons styling */
.wpcf7-form .wpcf7-radio {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.wpcf7-form .wpcf7-list-item {
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.wpcf7-form .wpcf7-list-item-label {
    margin-left: 8px;
    cursor: pointer;
    font-size: 15px;
}

.wpcf7-form input[type="radio"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
}

/* Bouton Submit - CENTRÉ avec espacement */
.wpcf7-form p.field.submit {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 35px;
}

.wpcf7-form .custom-button-ctiles {
    display: inline-block;
    padding: 15px 40px;
    background-color: #007bff; /* Ajustez selon votre couleur convenue */
    color: #fff !important;
    font-weight: 700; /* BOLD comme demandé */
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: auto; /* PAS pleine largeur */
    max-width: 300px;
}

.wpcf7-form .custom-button-ctiles:hover {
    background-color: #0056b3; /* Ajustez selon votre couleur */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.wpcf7-form .custom-button-ctiles:active {
    transform: translateY(0);
}

/* Messages de validation */
.wpcf7-form .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.wpcf7-form .wpcf7-validation-errors,
.wpcf7-form .wpcf7-mail-sent-ok {
    border: 2px solid;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.wpcf7-form .wpcf7-validation-errors {
    border-color: #dc3545;
    background-color: #f8d7da;
    color: #721c24;
}

.wpcf7-form .wpcf7-mail-sent-ok {
    border-color: #28a745;
    background-color: #d4edda;
    color: #155724;
}

/* Masquer les champs hidden (au cas où) */
.wpcf7-form input[type="hidden"] {
    display: none;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .wpcf7-form p.field.first-row,
    .wpcf7-form p.field.last-row {
        width: 100%;
        margin-right: 0;
        display: block;
    }
    
    .wpcf7-form .wpcf7-radio {
        flex-direction: column;
        gap: 12px;
    }
    
    .wpcf7-form .custom-button-ctiles {
        width: 100%;
        max-width: 100%;
        padding: 15px 20px;
    }
}

/* Interlignes uniformes et aérés */
.wpcf7-form p {
    line-height: 1.6;
}

/* reCAPTCHA invisible */
.grecaptcha-badge {
    visibility: hidden;
}
/* ==============================================
   CUSTOM CTA BUTTON - Style identique au formulaire
   ============================================== */

.custom-cta-button {
    text-align: center;
    margin: 35px auto;
    padding: 20px 0;
}

.custom-cta-button .custom-button-aluko {
    display: inline-block;
    padding: 15px 40px;
    background-color: #007bff; /* Ajustez selon votre couleur */
    color: #fff !important;
    font-weight: 700; /* BOLD */
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    width: auto;
    max-width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-cta-button .custom-button-aluko:hover {
    background-color: #0056b3; /* Ajustez selon votre couleur */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    color: #fff !important;
    text-decoration: none;
}

.custom-cta-button .custom-button-aluko:active {
    transform: translateY(0);
}

.custom-cta-button .custom-button-aluko:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .custom-cta-button {
        padding: 15px 0;
    }
    
    .custom-cta-button .custom-button-aluko {
        width: 90%;
        max-width: 100%;
        padding: 15px 20px;
        font-size: 15px;
    }
}

/* Scroll smooth pour l'ancre #contact */
html {
    scroll-behavior: smooth;
}