  /* RESET */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f7fa;
    color: #333;
}
/* ================= NAVBAR ================= */

html {
    scroll-behavior: smooth;
}
nav {
   /* background: transparent;*/
   background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
    padding: 5px 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
/* LIENS */
nav ul li a:hover {
    background: #007BFF;
    color: white;
   
}
nav ul li a.active {
    background: #007BFF;
    color: white;
}
nav ul {
  
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
nav a {
    text-decoration: none;
    font-size: 20px;
    border-radius: 8px;
    transition: 0.3s;
    position: relative;
    margin-right: 10px;
    color: white;
    font-weight: 500;
    width: 90px;
}
nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #007BFF;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}
nav a:hover::after {
    width: 100%;
}
nav a .active {
    color: #007BFF;
    border-bottom: 2px solid #007BFF;
    padding-bottom: 3px;
}
/* LOGO */
#logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}
#logo img {
    width: 90px;
}
/* BURGER */
.burger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}
/* ================= HERO ================= */
header {
    background-color: #007BFF;
    color: white;
    padding: 30px 20px;
    text-align: center;
}
    .hero {
        height: 80vh;
        background: url("media/vitre.webp") center/cover no-repeat;
        position: relative;
        color: white;
        background-size: cover;
        background-position: center center;
        
        }
    
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    /*background: rgba(31, 32, 24, 0.5);*/
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);   
    display: flex; 
    gap: 10px;
    flex-direction: column;
    align-items: center;

}
/* BONUS (le mieux) */
/* ARGUMENTS */
.hero-arguments {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-arguments span {
    background: rgba(255,255,255,0.15);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
}

/* BOUTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #007BFF, #00c6ff);
}

.hero-btn.secondary {
    background: #25D366;
}

/* EFFET PULSE (attire l’œil) */
.pulse {
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* URGENCE */
.hero-urgency {
    margin-top: 10px;
    color: #ffcc00;
    font-size: 14px;
}

/* CONFIANCE */
.hero-trust {
    margin-top: 10px;
    font-size: 15px;
    opacity: 0.9;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero-content a {
    display: inline-block;
}
.hero-content .hero-btn {
    display: inline-block;
}
/* LIGNE DES BOUTONS */
.hero-content .hero-btn {
    margin: 5px;
    display: inline-block;
}
/* GALERIE */
.prestas {
    padding: 0px 40px;
}
    .gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 25px;
    }
    
    .gallery img {
        width: 100%;
        border-radius: 10px;
        height: 300px;
        
    }
/* ============ CONTAINER ============= */
.immediat0, .immediat{
    text-align: center;
    margin-bottom: 20px ;
}
.container h3 {
    text-align: center;
    font-size: 25px;
}
.container h4 {
    font-size: 25px;
}
.container p {
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
}
.card {
    background: white;
    padding: 25px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.card ul {
    text-align: center;
    justify-content: space-around;
    align-items: center;
    list-style: none;
}
.card p {
  font-size: larger;
}
.container .card1 p {
    padding: 15px;
    font-size: x-large;
}
h2 {
    font-size: 30px;
    text-align: center;
    }
.before-after {
    position: relative;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}
.before-after img {
    width: 100%;
    display: block;
}
.before-after .after {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    overflow: hidden;
    border-right: 3px solid white;
}
.card2 ul li{
    text-align: center;
    font-size: x-large;
    background: white;
    padding: 25px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.card2 ul {
    list-style: none;
}
.card2 a {
    text-decoration: none;
    padding-left: 10px 10px;
    margin-left: 15px;
}
.card3 h4 {
    font-size: x-large;
    text-align: center;
}
.card3 p {
    padding: 22px 0px;
    font-size: x-large;
}
.card3 a {
   margin: 0px 22px;
   text-align: center;
}
/* ========= GALERIE TARIFS ========= */
 .gallery-pro { 
    text-align: center;
   /* margin-top: 50px;*/
}
.gallery-pro p { 
    text-align: center;
   margin: 15px 0px;
    font-size: x-large;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}
.gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    text-align: center;
}
.gallery-item:hover {
    transform: translateY(-10px);
}
.gallery-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: 0.4s;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
/* TEXTE */
.desc {
    padding: 18px;
    font-size: 14px;
    color: #444;
}
.desc strong {
    display: block;
    font-size: 17px;
    color: #007BFF;
}
.sans-engagement a{
    text-align: center;
    margin-top: 20px;
}
/*---- terasse ---*/
.terrasse-section {
    padding: 0px 20px;
    background: #f5f7fa;
    text-align: center;
}
.terrasse-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
.subtitle {
    color: #666;
    margin-bottom: 40px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}
/* CARTE prix */
.price-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
}
.price-card:hover {
    transform: translateY(-10px);
}
.price-card h3 {
    margin-bottom: 10px;
}
.price {
    font-size: 24px;
    color: #007BFF;
    font-weight: bold;
    margin-bottom: 15px;
}
.price-card ul {
    list-style: none;
    padding: 0;
}
.price-card ul li {
    margin: 8px 0;
    color: #555;
}
/* BADGE */
.badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #007BFF;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}
/* HIGHLIGHT */
.popular {
    border: 2px solid #007BFF;
}
.premium {
    background: linear-gradient(135deg, #007BFF, #00c6ff);
    color: white;
}
.premium .price {
    color: white;
}
.premium ul li {
    color: white;
}
/* ------------- 50% de reduction à coté du click et sap-------------- */
.cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.cta-img {
    width: 60px; /* taille propre et responsive */
}
/* 🔥 BOUTON BOOSTÉ */
.hero-btn {
    white-space: nowrap;
    background: linear-gradient(135deg, #00c853, #00e676);
    color: white;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
/* effet hover */
.hero-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* effet clic */
.hero-btn:active {
    transform: scale(0.97);
}

/* INFO */
.info {
    margin-top: 30px;
    font-size: 15px;
    color: #444;
    text-align: center;
}
/* RESPONSIVE */
@media(max-width: 900px){
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
 /* ---------AVIS --&-- Caroussel-------
 .reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
    }
    .review {
    background: white;
    padding: 25px;
    min-width: 250px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
    }
    .review:hover {
    transform: translateY(-8px);
    }
    .review::before {
    content: "★★★★★";
    color: #FFD700;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
    }
    .review p {
    font-style: italic;
    color: #555;
    }
    .review strong {
    display: block;
    margin-top: 15px;
    color: #007BFF;
    }
    .carousel {
        overflow: hidden;
        position: relative;
    }
    .carousel-track {
        display: flex;
        gap: 20px;
        animation: scroll 10s linear infinite;
    }*/
    /* CONTACT */
    .Contactez-moi {
        background: #ffffff;
        padding: 30px 20px;
        margin-top: 50px;
    }
    .Contactez-moi p {
        text-align: center;
        font-size:x-large;
        margin-bottom: 30px;
        }
    h5 {
        text-align: center;
         font-size:x-large;
         margin-bottom: 30px;
        }
    .contact-container {
        max-width: 1100px;
        margin: auto;
    }
    .contact-container h6 {
        text-align: center;
        font-size: 25px;
        margin-bottom: 15px;
    }
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .num {
        padding-bottom: 15px;
    }
    .btn-mail {
        display: inline-block;
        background: linear-gradient(135deg, #007BFF, #00c6ff);
        color: white;
        padding: 12px 20px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        transition: 0.3s;
    }
    .btn-mail:hover {
        transform: scale(1.05);
    }
    .btn-center {
        display: flex;
        justify-content: center;
        margin-top: 0px;
    }
    .netlify {
        text-align: center;
        margin-top: 15px;
    }
    .contact-card {
        background: #f9fafc;
        padding: 105px 0px;
        border-radius: 15px;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
    
    /* TITRE */
    .contact-card .title {
        font-size: 22px;
        font-weight: bold;
    }
    
    /* TELEPHONE */
    .contact-card .num {
        font-size: 18px;
        font-weight: bold;
    }
    
    /* BOUTONS */
    .contact-card a {
        display: inline-block;
        margin-top: 5px;
        
    }
    /* BOUTON SITE */
    .btn-site {
        display: inline-block;
        background: linear-gradient(135deg, #007BFF, #00c6ff);
        color: white;
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 16px;
        transition: 0.3s;
        box-shadow: 0 5px 15px rgba(0,123,255,0.3);
    }
    
    /* HOVER */
    .btn-site:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 25px rgba(0,123,255,0.5);
    }
    
    /* CLICK */
    .btn-site:active {
        transform: scale(0.98);
    }
/* Décalage pour menu sticky */
section {
    scroll-margin-top: 80px;
    padding: 20px 40px;
    
}
.border-top{
    border-top: 6px solid gold;
}
/* FORMULAIRE */
.my-form {
background: white;
padding: 35px;
border-radius: 15px;
box-shadow: 0 15px 40px rgba(0,0,0,0.08);
transition: 0.3s;
}.my-form input,
.my-form select,
.my-form textarea {
width: 100%;
padding: 14px;
margin-bottom: 15px;
border: 1px solid #e0e0e0;
border-radius: 8px;
font-size: 15px;
transition: 0.3s;
}
.my-form input:focus,
.my-form select:focus,
.my-form textarea:focus {
border-color: #007BFF;
outline: none;
box-shadow: 0 0 8px rgba(0,123,255,0.2);
}
.my-form textarea {
min-height: 150px;
resize: none;
}
.my-form button {
width: 100%;
padding: 15px;
background: linear-gradient(135deg, #007BFF, #00c6ff);
color: white;
border: none;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
transition: 0.3s;
}
.my-form button:hover {
transform: scale(1.03);
box-shadow: 0 10px 20px rgba(0,123,255,0.3);
}
.my-form:hover {
transform: translateY(-5px);
}
/* INFOS */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-box {
    background: #f9fafc;
    padding: 20px;
    border-radius: 10px;
}
.contact-form button {
    width: 100%;
    padding: 15px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
/* ================= CTA ================= */
.cta {
    text-align: center;
}
.cta p {
    margin-bottom: 20px;
    font-size: 18px;
    }
    .cta .btn {
    display: inline-block;
    background: linear-gradient(135deg, #007BFF, #00c6ff);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
    }
    .cta .btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0,123,255,0.4);
    }
   
    
    .cta-img {
        width: 150px;
        transition: transform 0.3s ease;
    }
    
    .cta-img:hover {
        transform: scale(1.1);
    }
/* ================= BOUTONS FLOTTANTS ================= */
.floating-call,
.floating-whatsapp {
    position: fixed;
    right: 20px;
    padding: 15px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    z-index: 999;
    text-decoration: none;
    padding: 15px;
}
.floating-call { 
    bottom: 20px;
    background: #007BFF;
    z-index: 1000;
}
.floating-whatsapp {
    bottom: 80px;
    background: #25D366;
   }
/* ====== BOUTONS ======*/
.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 12px;
    text-align: center;
    display: block;
    margin-top: 10px;
    border-radius: 55px;
    text-decoration: none;
}
.btn {
    background-color: #28a745;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 55px;
    text-decoration: none;
    font-size: 36px;
    }
.btn-sms {
    background: #28a745;
    color: white;
    padding: 12px;
    text-align: center;
    display: block;
    margin-top: 10px;
    border-radius: 55px;
    text-decoration: none;
}
.btn {
        background: #007BFF;
        color: white; 
        border-radius: 10px;
        text-decoration: none;
    }
.btn-btn {
    background: #007BFF;
    color: white;
    padding: 5px;
    border-radius: 10px;
    text-decoration: none;
}
.btn-avis {
    margin-top: 25px;
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-weight: bold;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* effet hover */
.btn-avis:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* effet clic */
.btn-avis:active {
    transform: scale(0.98);
}

/* petit effet brillant */
.btn-avis::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.btn-avis:hover::after {
    left: 120%;
}
/*  carte bretonne avec drapeau + map */

.cardbretagne {
    text-align: center;
    padding: 35px 20px;
    max-width: 900px;
  margin: 0px auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cardbretagne h6 {
    font-size: 26px;
    margin-bottom: 15px;
}

.zone-text {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.zone-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.zone-badges span {
    background: #f1f5f9;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.cardbretagne img {
    display: block;
    margin: 20px auto;
    max-width: 300px;
    width: 100%;
    border-radius: 10px;
}

.cardbretagne p  {
    padding: 10px 0px;
    font-size: large;
    margin-bottom: 25px;
}


/*.map {
    margin-top: 30px;
}

iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
}*/
.map-container {
    text-align: center;
    margin: 22px auto;
    max-width: 900px;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.map-text {
    margin-top: 10px;
    font-size: 16px;
}

.btn-map {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: black;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.btn-map:hover {
    background: #333;
}
.faq {
    max-width: 500px;
    margin: 0px auto;
  
}

.faq h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* ITEM */
.faq-item {
    border-bottom: 1px solid #ddd;
}

/* QUESTION */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-size: 22px;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* HOVER */
.faq-question:hover {
    color: #007BFF;
}

/* FLÈCHE */
.arrow {
    transition: transform 0.3s ease;
}

/* ROTATION */
.faq-item.active .arrow {
    transform: rotate(180deg);
}

/* RÉPONSE */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 15px 15px;
    color: #555;
    font-size: 18px;
}

/* ================= SEO CONTENT ================= */
.seo-zone {
    margin: 0px auto;
    max-width: 900px;
    text-align: center;
    font-size: 15px;
    padding: 20px 0px;
    color: #444;
}
.seo-zone h2 {
    margin-bottom: 12px;
}
.seo-content {
    opacity: 1;
    height: auto;
    max-width: 900px;
    margin: 0px auto;
    padding: 0px 40px;
    color: #333;
    line-height: 1.6;
}
 /* FOOTER */

.footer {

    background: #0f172a;
    color: #fff;
    padding: 60px 20px 30px;
    font-family: Arial, sans-serif;
    border-top: 5px solid gold
}

/* GRID */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

/* COLONNES */
.footer-col h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

/* LISTES */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.9;
}

/* LIENS */
.footer-col a {
    color: #fff;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

/* BOUTON */
.footer-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background: #22c55e;
    color: #fff;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.footer-btn:hover {
    background: #16a34a;
}

/* LOGOS */
.img-footer {
    margin-top: 10px;
    text-align: center;
}

.img-footer img {
    height: 130px;
    margin: 0px 15px;
    object-fit: contain;
    filter: brightness(0.9);
}

/* COPYRIGHT */
.img-footer p {
    border-bottom: 2px solid gold;
    margin: 20px auto;
    font-size: 13px;
    opacity: 0.7;
    max-width: 333px;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* ================= RESPONSIVE ================= */
/* RESPONSIVE */
@media(max-width: 900px){
    .pricing-grid {
        grid-template-columns: 1fr;
        justify-items: center; /* ✅ centre les items horizontalement */
        gap: 25px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width:768px){
    .hero {
        height: auto; /* permet au hero de s’adapter à son contenu */
        padding: 80px 20px; /* espace interne */
        background-position: center top;
    }

    .hero-content {
        top: auto;
        transform: none; /* supprime le centrage vertical fixe */
        margin-top: 20px;
    }

    .hero-content h1 {
        font-size: 28px; /* réduit la taille du titre */
    }

    .hero-content p {
        font-size: 16px; /* texte plus petit */
    }

    .hero-arguments {
        flex-direction: column; /* empile les arguments */
        gap: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btn {
        /*width: 100%;  boutons prennent toute la largeur */
      
        font-size: 18px;
    }
    .cta-row {
       
        gap: 15px;
        margin: 20px 0px;
    }
    
    .cta-img {
        width: 50px;
        transition: transform 0.3s ease;
    }
    .hero-urgency,
    .hero-trust {
        font-size: 14px;
    }
    .gallery {
        display: grid;
        justify-items: center;
        grid-template-columns: repeat(1,1fr);
        gap: 15px;
        margin-top: 25px;
    }
    .gallery img {
        padding: 0px 0px;
       max-width: fit-content;
        border-radius: 10px;
        height: 250px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr ;
    }
    nav ul li a {
        text-decoration: none;
        font-size: medium;
        color: white;
        border-radius: 8px;
        transition: 0.3s;
    }
   /* .floating-call,
    .floating-whatsapp {
        right: 10px;
        padding: 12px;
    }*/
}
@media (max-height: 600px) {
    .hero {
        padding: 50px 15px;
    }
}

