/* ===========================
   GLOBAL SETTINGS
=========================== */

:root{
    --primary:#0B1F3A;
    --accent:#19B6D2;
    --accent-dark:#128aa0;
    --text:#0E1A2B;
    --bg:#ffffff;
    --bg-light:#F5F8FB;
}


body {
    margin: 0;
    font-family: 'Tajawal', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
}

* {
    box-sizing: border-box;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section {
    padding: 70px 0;
    text-align: center;
}

h2 {
    font-size: 32px;
    color: var(--text);
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: var(--accent);
    display: block;
    margin: 15px auto 0;
    border-radius: 3px;
}

.btn {
    padding: 12px 25px;
    background: var(--accent);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--accent-dark);
}

/* ===========================
   HEADER
=========================== */

.lux-header {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    transition: 0.35s;
}

.lux-header.shrink {
    padding: 6px 0;
    backdrop-filter: blur(18px);
    border-bottom-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 65px;
    transition: 0.3s;
}

.lux-header.shrink .logo {
    height: 50px;
}

/* NAV */

nav {
    display: flex;
    align-items: center;
}

nav a {
    margin: 0 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text);
    transition: 0.3s;
}

nav a:hover {
    color: var(--accent);
    text-shadow: 0 0 6px rgba(212,175,55,0.55);
}

/* LANGUAGE SWITCH */

.lang-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 15px;
}

.lang-switch i {
    color: var(--accent);
    font-size: 20px;
}

.lang-switch a {
    color: var(--text);
    text-decoration: none;
}

.lang-switch a:hover,
.lang-switch .active {
    color: var(--accent);
}

/* MOBILE MENU */

.mobile-menu {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text);
}

/* ===========================
   FLOATING MOBILE NAV
=========================== */

.mobile-floating-nav {
    display: none;
}

@media (max-width: 900px) {
    .mobile-floating-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        width: 100%;
        justify-content: space-around;
        padding: 12px 0;
        background: rgba(255,255,255,0.75);
        backdrop-filter: blur(14px);
        border-top: 1px solid rgba(212,175,55,0.4);
        z-index: 3000;
    }

    .mobile-floating-nav a {
        font-size: 24px;
        color: var(--text);
    }
}

/* ===========================
   BACK TO TOP
=========================== */

#backToTop {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #0E1A2B;
    border: 2px solid var(--accent);
    color: #fff;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 3000;
    transition: 0.3s;
}

#backToTop:hover {
    background: var(--accent);
    color: var(--text);
}

/* ===========================
   HERO
=========================== */
/* ===========================
   HERO SECTION
=========================== */

.hero {
    background: url('../assets/images/hero_1920x1080.webp') center/cover no-repeat;
    height: 85vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/* طبقة الظل فوق الخلفية */
.hero::after {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(14, 26, 43, 0.60);
    z-index: 1; /* تحت النص */
}

/* محتوى الهيرو فوق الظل */
.hero-content {
    position: relative;
    z-index: 2; /* فوق الظل */
    text-align: center;
    padding: 0 20px;
}

/* تحسين نص الهيرو */
.hero-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 0 4px 10px rgba(0,0,0,0.65);  /* ظل فاخر */
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 15px;
    text-shadow: 0 3px 8px rgba(0,0,0,0.55); /* ظل خفيف */
}

/* MOBILE HERO */
@media (max-width: 900px) {
    .hero {
        background: url('../assets/images/hero_mobile_900x1200.webp') center/cover no-repeat;
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }
}


/* ===========================
   ABOUT – PREMIUM CARDS
=========================== */

.about-section {
    background: var(--bg);
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 45px;
}

.about-card {
    background: linear-gradient(
        135deg,
        rgba(255,255,255,1) 0%,
        rgba(255,250,240,0.9) 100%
    );
    padding: 35px 25px;
    border-radius: 14px;
    border: 2px solid rgba(212,175,55,0.45);
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    transition: 0.35s ease;
}

.about-card i {
    font-size: 55px;
    margin-bottom: 18px;
    color: var(--accent);
}

.about-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text);
    font-weight: 700;
}

.about-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}

/* Highlight middle card */
.about-cards .about-card:nth-child(2) {
    transform: scale(1.06);
    border-color: rgba(212,175,55,0.70);
    box-shadow:
        0 12px 24px rgba(0,0,0,0.12),
        0 0 22px rgba(212,175,55,0.40);
}

.about-cards .about-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--accent);
    box-shadow:
        0 10px 25px rgba(0,0,0,0.12),
        0 0 18px rgba(212,175,55,0.55);
}

.about-cards .about-card:nth-child(2):hover {
    transform: translateY(-10px) scale(1.10);
}

/* MOBILE ABOUT */
@media (max-width: 900px) {
    .about-cards {
        grid-template-columns: 1fr;
    }

    .about-cards .about-card:nth-child(2) {
        transform: scale(1.00);
    }
}

/* ===========================
   SERVICES
=========================== */

.bg-light {
    background: #f6f6f6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.service-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #eee;
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.service-box i {
    font-size: 45px;
    color: var(--accent);
    margin-bottom: 10px;
}

.service-box h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   COLLECTIONS
=========================== */

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.collections-grid img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid rgba(212,175,55,0.35);
    box-shadow: 0 4px 10px rgba(0,0,0,0.10);
    transition: 0.35s;
}

.collections-grid img:hover {
    transform: scale(1.05);
    border-color: rgba(212,175,55,0.85);
}

@media (max-width: 900px) {
    .collections-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   WHY US
=========================== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.why-grid div {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #eee;
    transition: 0.3s;
}

.why-grid div:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
}

.why-grid i {
    font-size: 45px;
    color: #4F6F51;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   TESTIMONIALS
=========================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-top: 30px;
}

.testimonial-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #eee;
    transition: 0.3s;
}

.testimonial-box:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
}

.testimonial-box i {
    font-size: 35px;
    color: var(--accent);
    margin-bottom: 15px;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   GALLERY SLIDER
=========================== */

.myGallerySlider {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 60px;
}

.myGallerySlider .swiper-slide {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(212,175,55,0.35);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.myGallerySlider .swiper-slide:hover {
    transform: scale(1.03);
    border-color: rgba(212,175,55,0.85);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--text);
}

.swiper-pagination-bullet {
    background: var(--accent);
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background: #0E1A2B;
}

/* ===========================
   CONTACT FORM
=========================== */

.contact-form {
    width: 70%;
    margin: auto;
    text-align: right;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 7px;
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

.error {
    color: #b30000;
    font-size: 14px;
    margin-bottom: 10px;
}

/* ===========================
   SUCCESS POPUP
=========================== */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(6px);
    z-index: 5000;
}

.popup-box {
    background: #ffffffee;
    padding: 40px;
    width: 90%;
    max-width: 420px;
    border-radius: 18px;
    border: 2px solid var(--accent);
    box-shadow: 0 8px 30px rgba(212,175,55,0.35);
    text-align: center;
    animation: popupZoom 0.45s ease;
}

@keyframes popupZoom {
    0% { transform: scale(0.6); opacity: 0; }
    60% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); }
}

.popup-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(212,175,55,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: iconPulse 1.5s infinite ease-in-out;
}

.popup-icon i {
    font-size: 55px;
    color: var(--accent);
}

@keyframes iconPulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.12); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

.popup-btn {
    margin-top: 20px;
    width: 100%;
}

/* ===========================
   FOOTER
=========================== */

.footer {
    background: #0E1A2B;
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
    text-align: right;
}

.footer-col h3 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col p,
.footer-col a {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
}

.footer-col i {
    color: var(--accent);
    margin-left: 8px;
    font-size: 18px;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 15px;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}

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

/* FOOTER MOBILE */
@media(max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    iframe {
        height: 180px !important;
    }
}

/* ===========================
   RESPONSIVE NAV
=========================== */

@media (max-width: 900px) {

    nav {
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background: rgba(255,255,255,0.97);
        border-bottom: 1px solid rgba(212,175,55,0.4);
        padding: 15px 0;
        display: none;
        flex-direction: column;
        text-align: center;
        z-index: 2500;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }

    nav.open {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .contact-form {
        width: 100%;
    }
}
/* Fix gallery image scaling */
.myGallerySlider .swiper-slide {
    height: 320px; /* يمكن تغييره لـ 350 أو 400 حسب الذوق */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.myGallerySlider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* أهم سطر */
    object-position: center; /* يركز على منتصف الصورة */
    display: block;
    border-radius: 10px;
}


/* ===========================
   MEDICAL EXTRAS (ADDED)
=========================== */
.hero-actions{
    display:flex;
    gap:12px;
    justify-content:center;
    flex-wrap:wrap;
    margin-top: 18px;
}

.btn-outline{
    background: transparent;
    border: 1px solid rgba(255,255,255,.75);
    color:#fff;
}
.btn-outline:hover{
    background: rgba(255,255,255,.12);
}

.section-lead{
    max-width: 820px;
    margin: -10px auto 20px;
    color: rgba(14,26,43,.78);
    font-size: 17px;
    line-height: 1.9;
}

.products-tags{
    margin-top: 18px;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:center;
}
.products-tags span{
    padding: 8px 12px;
    border: 1px solid rgba(25,182,210,.35);
    border-radius: 999px;
    color: var(--text);
    background: rgba(25,182,210,.08);
    font-size: 14px;
}

.contact-cards{
    display:grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap:16px;
    margin: 22px 0 14px;
}
.contact-card{
    background: #fff;
    border: 1px solid rgba(25,182,210,.22);
    border-radius: 14px;
    padding: 14px 14px;
    display:flex;
    gap:12px;
    align-items:flex-start;
    box-shadow: 0 10px 25px rgba(0,0,0,.04);
}
.contact-card i{
    font-size: 20px;
    color: var(--accent);
    margin-top: 2px;
}
.contact-card h3{
    margin: 0 0 6px;
    font-size: 16px;
    color: var(--text);
}
.contact-card p{
    margin: 0;
    color: rgba(14,26,43,.8);
    font-size: 15px;
    word-break: break-word;
}
.contact-card a{ color: inherit; text-decoration:none; }
.contact-card a:hover{ color: var(--accent); }
.contact-card .sep{ margin: 0 6px; opacity:.7; }

.whatsapp-actions{
    display:flex;
    gap:12px;
    justify-content:center;
    flex-wrap:wrap;
    margin: 8px 0 18px;
}
.btn-whatsapp{
    background: #25D366;
}
.btn-whatsapp:hover{
    filter: brightness(.95);
}

.btn-sm{
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 10px;
}

.map-wrap{
    margin-top: 20px;
    border-radius: 16px;
    overflow:hidden;
    border: 1px solid rgba(25,182,210,.18);
    box-shadow: 0 12px 26px rgba(0,0,0,.06);
}

/* Mobile */
@media (max-width: 768px){
    .contact-cards{ grid-template-columns: 1fr; }
}


/* ===== Footer contact cards ===== */
.footer .footer-contact .contact-cards{
    margin: 14px 0 0;
}
.footer .footer-contact .contact-card{
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.12);
    box-shadow:none;
}
.footer .footer-contact .contact-card h3{ color:#fff; }
.footer .footer-contact .contact-card p,
.footer .footer-contact .contact-card a{
    color: rgba(255,255,255,.88);
}
.footer .footer-contact .contact-card a:hover{
    color: var(--accent);
}



/* ===== Footer two-column layout ===== */
.footer-main{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}
.footer-map .map-wrap{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(25,182,210,.22);
  box-shadow: 0 14px 32px rgba(0,0,0,.10);
  background: rgba(255,255,255,.02);
}
.footer-map iframe{
  width: 100%;
  height: 320px;
  display:block;
}
.links-list{
  list-style:none;
  padding:0;
  margin: 12px 0 0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.links-list a{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.88);
  text-decoration:none;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.links-list a i{
  color: var(--accent);
  font-size: 18px;
}
.links-list a:hover{
  border-color: rgba(25,182,210,.35);
  background: rgba(25,182,210,.10);
  color: #fff;
}

/* Footer bottom row */
.fb-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  flex-wrap:wrap;
}
.powered{
  color: rgba(255,255,255,.70);
  font-size: 12px;
}

@media (max-width: 992px){
  .footer-main{ grid-template-columns: 1fr; }
  .footer-map iframe{ height: 280px; }
}



/* ===== Contact Action Panel (Premium Medical) ===== */
.contact-panel{
  margin-top: 22px;
  border-radius: 22px;
  border: 1px solid rgba(25,182,210,.26);
  background: linear-gradient(180deg, rgba(11,31,58,.10), rgba(255,255,255,.92));
  box-shadow: 0 18px 44px rgba(0,0,0,.10);
  overflow:hidden;
}

.cp-header{
  padding: 18px 18px 14px;
  display:flex;
  gap: 14px;
  align-items:flex-start;
  justify-content:space-between;
  border-bottom: 1px solid rgba(11,31,58,.10);
  background: linear-gradient(90deg, rgba(25,182,210,.10), rgba(255,255,255,.0));
}

.cp-badge{
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(25,182,210,.14);
  border: 1px solid rgba(25,182,210,.22);
  flex: 0 0 52px;
}
.cp-badge i{
  font-size: 22px;
  color: var(--accent);
}

.cp-title{
  flex: 1 1 auto;
  min-width: 200px;
}
.cp-title h3{
  margin: 2px 0 6px;
  font-size: 18px;
  color: var(--text);
}
.cp-title p{
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(11,31,58,.80);
}

.cp-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.cp-btn{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  border: 1px solid rgba(11,31,58,.12);
  text-decoration:none;
  transition: .2s ease;
  white-space:nowrap;
}
.cp-btn i{ font-size: 16px; }

.cp-btn-primary{
  background: var(--accent);
  color:#08202a;
  border-color: rgba(25,182,210,.35);
}
.cp-btn-primary:hover{
  filter: brightness(.96);
  transform: translateY(-1px);
}

.cp-btn-whatsapp{
  background: rgba(34,197,94,.18);
  color:#06210f;
  border-color: rgba(34,197,94,.32);
}
.cp-btn-whatsapp:hover{
  filter: brightness(.98);
  transform: translateY(-1px);
}

.cp-grid{
  padding: 16px 18px 18px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.cp-item{
  border-radius: 18px;
  border: 1px solid rgba(11,31,58,.10);
  background: rgba(255,255,255,.78);
  padding: 14px 12px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  position:relative;
  overflow:hidden;
}
.cp-item::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.75;
  background: radial-gradient(500px 140px at 85% 15%, rgba(25,182,210,.18), transparent 55%);
  pointer-events:none;
}
.cp-item-address::before{ background: radial-gradient(500px 140px at 85% 15%, rgba(25,182,210,.20), transparent 55%); }
.cp-item-phone::before{ background: radial-gradient(500px 140px at 85% 15%, rgba(34,197,94,.20), transparent 55%); }
.cp-item-fax::before{ background: radial-gradient(500px 140px at 85% 15%, rgba(59,130,246,.20), transparent 55%); }
.cp-item-email::before{ background: radial-gradient(500px 140px at 85% 15%, rgba(168,85,247,.20), transparent 55%); }

.cp-ic{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(11,31,58,.08);
  border: 1px solid rgba(11,31,58,.10);
  flex: 0 0 44px;
  position:relative;
  z-index:1;
}
.cp-ic i{
  font-size: 20px;
  color: var(--accent);
}
.cp-item-phone .cp-ic i{ color:#22C55E; }
.cp-item-fax .cp-ic i{ color:#3B82F6; }
.cp-item-email .cp-ic i{ color:#A855F7; }

.cp-content{
  position:relative;
  z-index:1;
  flex: 1 1 auto;
}
.cp-label{
  display:inline-block;
  font-size: 12px;
  color: rgba(11,31,58,.70);
  margin-bottom: 6px;
}
.cp-value{
  font-size: 13px;
  line-height: 1.7;
  color: rgba(11,31,58,.90);
  font-weight: 600;
}
.cp-sep{ opacity:.55; padding: 0 6px; }

.cp-sub{
  display:block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(11,31,58,.70);
  line-height:1.6;
}

.cp-link{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--primary);
  text-decoration:none;
}
.cp-link:hover{ color: var(--accent); }

.cp-mini-actions{
  margin-top: 10px;
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}
.cp-chip{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  text-decoration:none;
  border: 1px solid rgba(11,31,58,.12);
  background: rgba(255,255,255,.85);
  color: rgba(11,31,58,.92);
  transition:.2s ease;
}
.cp-chip:hover{
  transform: translateY(-1px);
  border-color: rgba(25,182,210,.35);
}
.cp-chip-wa{
  border-color: rgba(34,197,94,.30);
  background: rgba(34,197,94,.14);
  color:#06210f;
}
.cp-chip-wa:hover{ border-color: rgba(34,197,94,.42); }

.cp-mail{
  color: var(--primary);
  text-decoration:none;
  font-weight:700;
}
.cp-mail:hover{ color: var(--accent); }

/* Responsive */
@media (max-width: 992px){
  .cp-header{ flex-direction:column; align-items:flex-start; }
  .cp-actions{ justify-content:flex-start; }
  .cp-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .cp-grid{ grid-template-columns: 1fr; }
  .cp-btn{ width: 100%; justify-content:center; }
}

/* Clickable phone numbers */
.cp-tel{
  color: rgba(11,31,58,.95);
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px dashed rgba(25,182,210,.45);
  padding-bottom: 1px;
}
.cp-tel:hover{
  color: var(--accent);
  border-bottom-color: rgba(25,182,210,.85);
}

/* Powered by link */
.powered-link{
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-weight: 500;
}
.powered-link:hover{
  color: var(--accent);
  text-decoration: underline;
}

/* Floating WhatsApp Button */
.whatsapp-float{
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #22C55E;
  color: #06210f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  z-index: 999;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover{
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 36px rgba(0,0,0,.35);
}



/* ================= HERO Responsive Background ================= */
.hero {
  background-image: url("../assets/images/hero_1920x1080.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .hero {
    background-image: url("../assets/images/hero_mobile_900x1200.webp");
    background-position: center;
  }
}

@media (max-width: 480px) {
  .hero {
    background-position: center top;
  }
}


/* Honeypot anti-bot field (hidden safely without causing horizontal scroll) */
.hp-field{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  pointer-events: none !important;
}
.hp-field input{
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
/* Safety: prevent accidental horizontal overflow */
html, body{
  overflow-x: hidden;
}

/* ===== Partners Logos ===== */
.partners-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
    gap:30px;
    align-items:center;
    margin:40px 0 10px;
    }
    
    
    .partners-grid img{
    max-height:70px;
    width:auto;
    margin:auto;
    filter: opacity(.75);
    transition:all .35s ease;
    }
    
    
    .partners-grid img:hover{
    filter:none;
    transform:scale(1.06);
    }
    
    
    @media(max-width:768px){
    .partners-grid{
    gap:20px;
    }
    .partners-grid img{
    max-height:55px;
    }
    }