/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    color: #FFF;
    text-decoration: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}

/* Navbar RTL Modern Style */
.navbar {
    direction: rtl;
    background: linear-gradient(90deg, #ffffff -1%, #8b7c7c 100%);
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    box-shadow: 0 2px 8px rgba(30,41,59,0.08);
    font-family: 'Cairo', sans-serif;
    transition: box-shadow 0.3s, background 0.3s;

}

/* Navbar effect when scrolled */
.navbar.scrolled {
    background: linear-gradient(90deg, #8b7c7c 0%, #ffffff 100%);
    box-shadow: 0 4px 16px rgba(30,41,59,0.18);
}
.navbar-logo {
    order: 2;
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-left: 0;
    margin-right: 0;
}

.navbar-logo img {
    height: 150px;
    width: 150px;
    max-width: 150px;
    vertical-align: middle;
    opacity: 0;
    transform: translateX(-200px);
    animation: logoEnter 1.2s cubic-bezier(.42,0,.58,1) forwards;
}

@keyframes logoEnter {
    from {
        opacity: 0;
        transform: translateX(-200px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.navbar-links {
    order: 1;
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    transition: none;
    opacity: 1;
    right: 0;
}

.navbar-links li {
    transition: transform 0.2s;
}

.navbar-links li:hover {
    transform: scale(1.1);
}

.navbar-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight:normal;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    
}

.navbar-links a:hover {
    background: #fff;
    color: #1e293b;
    box-shadow: 0 8px 16px 0 #354045;
    
}
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 1rem;
    z-index: 1001;
}

.navbar-toggle span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s;
}

.navbar-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: translateY(-16px) rotate(-45deg);
}

.slider-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    position: relative;
    margin-top: 50px;
}

.side-img {
    width: 180px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.2s ease, box-shadow 0.4s ease, margin-bottom 0.6s ease;
}

.side-img img:hover {
    transform: scale(1.08);
    box-shadow: 4px 5px 50px 0 rgba(108, 108, 108, 0.718);
    margin-bottom: 20px;
    z-index: 3;
}


.side-img-right img {
    animation: enterRight 1.2s cubic-bezier(.42,0,.58,1) forwards;
    animation-delay: 0.3s;
    /* margin-right: -200px; */
}

.side-img-left img {
    animation: enterLeft 1.2s cubic-bezier(.42,0,.58,1) forwards;
    animation-delay: 0.3s;
    /* margin-left: -200px; */
}

@keyframes enterRight {
    from {
        opacity: 0;
        transform: translateX(120px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes enterLeft {
    from {
        opacity: 0;
        transform: translateX(-120px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slider-title {
    position: absolute;
    width: 50rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    background:#71717170 ;
    padding: 1.2rem 1rem;
    border-radius: 18px;
    font-size: 1.3rem;
    font-family: 'Cairo', sans-serif;
    text-align: center;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: none;
    opacity: 1;
    line-height: 50px;
    transition: 0.5s ease;
    }

.slider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.slider {
    /* margin-top: 50px; */
    width: 85%;
    max-width: 1100px;
    position: relative;
    overflow: hidden;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider img {
    filter: blur(10px);
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 2.2s, transform 1.2s;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    transform: translateY(60px);
    filter: blur(4px);
}

.slide.active {
    opacity: 1;
    z-index: 2;
    transform: translateY(0);
    filter: blur(0);
}

@keyframes slideRightToLeft {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeMenu {
    from {
        opacity: 0;
        right: -220px;
    }
    to {
        opacity: 1;
        right: 0;
    }
}

@keyframes slideUpMenu {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .navbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0.7rem 1rem;
    }
    .navbar-logo img {
        height: 100px;
        width: 100px;
    }
    .navbar-toggle {
        display: flex;
    }
    .navbar-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-end;
        width: 180px;
        box-shadow: -2px 4px 16px rgba(30,41,59,0.12);
        padding: 1rem 0.5rem;
        border-radius: 0 0 0 16px;
        display: none;
        z-index: 1000;
        transition: right 0.4s cubic-bezier(.42,0,.58,1), opacity 0.4s;
        opacity: 0;
        right: -220px;
    }
    .navbar-links.open {
        display: flex;
        opacity: 1;
        right: 0;
        animation: slideUpMenu 0.5s ease;
        margin-top: 70px;
    }
    .navbar-links li {
        margin: 0.7rem 0;
    }
    .navbar-links a {
        color: #1e293b;
        font-size: 1.2rem;
        font-weight: bold;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        transition: background 0.2s, color 0.2s;
    }
    .navbar-links a:hover {
        background: #1e293b;
        color: #fff;
    }
}

@media (max-width: 1024px){
    .slider-title {
        padding: 0.5rem 1rem;
        width: 25rem;
        font-size: 1.1rem;
        line-height: 30px;
    }
    }

@media (max-width: 600px) {
    .slider-section {
        flex-direction: column;
        min-height: 40vh;
    }
    .side-img {
        width: 90px;
        height: 220px;
        margin: 10px 0;
    }
    .slider {
        width: 98%;
        height: 320px;
        margin-top: 20px;
    }
    .slider-title {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        width: 17rem;
        font-size: 0.8rem;
    }
}
.line{

    height: 3px;
    width: 20rem;
    background-color: #757d81;
    margin:40px  auto;
    margin-top: 30px;
    transition: 0.3s;
    z-index: 100;
}

.line-animate {
    animation: lineGrowShrink 1.2s cubic-bezier(.42,0,.58,1);
}
.line:hover{
    width: 27rem;
    z-index: 100;
}
@keyframes lineGrowShrink {
    0% { width: 20rem; }
    40% { width: 25rem; }
    60% { width: 25rem; }
    100% { width: 20rem; }
}

/* نص welcome الي عبحرك من فوق وتحت */

.welcome-container {
  text-align: center; 
  margin-top: 40px;
}

.welcome {
  font-size: 1.4rem;
  font-weight: bold;
  color: #717171;
}

.welcome span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeMove 0.6s ease forwards;
}

@keyframes fadeMove {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* الحروف الفردية تطلع من فوق */
.welcome span:nth-child(odd) {
  transform: translateY(-20px);
}

/* التأخير لكل حرف */
.welcome span:nth-child(1)  { animation-delay: 0.4s; }
.welcome span:nth-child(2)  { animation-delay: 0.5s; }
.welcome span:nth-child(3)  { animation-delay: 0.6s; }
.welcome span:nth-child(4)  { animation-delay: 0.7s; }
.welcome span:nth-child(5)  { animation-delay: 0.8s; }
.welcome span:nth-child(6)  { animation-delay: 0.9s; }
.welcome span:nth-child(7)  { animation-delay: 1s; }
.welcome span:nth-child(8)  { animation-delay: 1.2s; }
.welcome span:nth-child(9)  { animation-delay: 1.3s; }
.welcome span:nth-child(10) { animation-delay: 1.4s; }
.welcome span:nth-child(11) { animation-delay: 1.5s; }
.welcome span:nth-child(12) { animation-delay: 1.6s; }
.welcome span:nth-child(13) { animation-delay: 1.7s; }
.welcome span:nth-child(14) { animation-delay: 1.8s; }
.welcome span:nth-child(15) { animation-delay: 1.9s; }
.welcome span:nth-child(16) { animation-delay: 2s; }
.welcome span:nth-child(17) { animation-delay: 2.1s; }
.welcome span:nth-child(18) { animation-delay: 2.2s; }
.welcome span:nth-child(19) { animation-delay: 2.3s; }
.welcome span:nth-child(20) { animation-delay: 2.4s; }
.welcome span:nth-child(21) { animation-delay: 2.5s; }

/* Loader Dots Styles */
.loader-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(120deg, #e0e7ef 0%, #cfd8dc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.7s;
}
.loader-dots {
    display: flex;
    gap: 12px;
}
.loader-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #717171;
    opacity: 0.5;
    animation: loaderDotPulse 1s infinite;
}
.loader-dot:nth-child(2) {
    animation-delay: 0.2s;
}
.loader-dot:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes loaderDotPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}
.loader-bg.hide {
    opacity: 0;
    pointer-events: none;
}

@media (min-width: 601px) {
  .welcome {
    font-size: 2rem;
  }
}
@media (max-width: 500px) {
    .welcome {
      font-size: 1.1rem;
    }
  }

/* ================================================ */

.TT {
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  width: 100%;
  background: #f4f4f4;
}

.gallery {
  display: flex;
  width: 80%;
  gap: 10px;
}
.gallery img {
  width: 150px;
  height: 500px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s;
  flex: 1;
  transition: 0.7s;
  filter: brightness(0.7);
  /* perspective: 1000px; */
}
.gallery img:hover {
  flex: 2;
  transform: scale(1.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  filter: brightness(1);
  transform: skewY(2deg);
  z-index: 100;
}
@media (max-width: 821px) {
    .slider {
        height: 180px;
    }
    .slide {
        height: 180px;
        border-radius: 8px;
    }
    .gallery img {
        width: 90vw;
        height: 24vw;
    }
    .TT{
        min-height: 44vh;
        width: 100%;
    }
}

@media (max-width: 375px) {
    .slider {
        height: 180px;
    }
    .slide {
        height: 180px;
        border-radius: 6px;
    }
    .gallery img {
        width: 95vw;
        height: 20vw;
    }
}

@media (max-width: 768px) {
    .slider {
        height: 260px;
    }
    .slide {
        height: 260px;
        border-radius: 12px;
    }
    .gallery img {
        width: 45vw;
        height: 18vw;
    }
}

@media (max-width: 1024px) {
    .slider {
        height: 400px;
    }
    .slide {
        height: 370px;
        border-radius: 16px;
    }
    .gallery img {
        width: 75px;
        height: 339px;
    }
    .gallery img:hover {
        width: 230px;
      flex: 2;
      transform: scale(1.5);
      box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    }}

@media (max-width: 600px) {
    .gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 10px 0;
        
    }
    .gallery img {
        transition: 0.9s ease-out;
        width: 30vw;
        height: 28vw;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.10);
        margin: 0;
        /* transition: transform 0.2s; */
        display: block;
    }
    .gallery img:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(90deg, #ffffff -95%, #8b7c7c 100%);
    box-shadow: 0 2px 77px rgba(38, 38, 38, 0.7);
    color: #ecf0f1;
    padding: 60px 0 20px;
    margin-top: 80px;
    font-family: 'Cairo', sans-serif;
}

.footer-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 170px;
    width: auto;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #9d9b9b;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    perspective: 1000px;
}

.social-link:hover {
    color: #fff;
    filter: drop-shadow(9px 9px 7px white);
    transform: translateY(-5px) rotateY(29deg) rotateX(-29deg) scale(1.2);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin:0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #000000;
    padding-left: 8px;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #ffffff;
}

.contact-info i {
    margin-left: 10px;
    color: #1f3f37;
    width: 20px;
    font-size: 1.4rem;
    padding-right: 20px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #ffffff;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.5rem;
    }
    .contact-info p{
        justify-content: center;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    .contact-info p{
        justify-content: center;
    }
    .footer-content {
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
}

/* Contact Page Styles */
.contact-page {
    min-height: 100vh;
    padding: 20px 0;
    background-color: white;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b7c7c, #ffffff);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b7c7c, #ffffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(139, 124, 124, 0.3);
}

.contact-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-details {
    color: #666;
    line-height: 1.8;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8b7c7c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.contact-link:hover {
    color: #333;
    transform: translateX(5px);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8b7c7c;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid #8b7c7c;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.map-link:hover {
    background: #8b7c7c;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}

.services-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.services-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #666;
}

.services-list i {
    color: #8b7c7c;
    font-size: 0.9rem;
}

.note {
    font-style: italic;
    color: #999;
    font-size: 0.9rem;
    margin-top: 15px;
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}

.social-link-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.social-link-contact:hover {
    background: #8b7c7c;
    color: #ffffff;
    transform: translateX(5px);
}

.social-link-contact.whatsapp:hover {
    background: #25d366;
}

.contact-cta {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.contact-cta h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn.primary {
    background: #ffffff;
    color: #8b7c7c;
    border: 2px solid #8b7c7c;
}

.cta-btn.primary:hover {
    background: #8b7c7c;
    color: #ffffff;
    transform: translateY(-3px);
}

.cta-btn.secondary {
    background: #25d366;
    color: #ffffff;
}

.cta-btn.secondary:hover {
    background: #25d366;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px #6d6d6d;
}
.cta-btn.secondary .WW{
    transition: all 0.3s ease-in;
}
.cta-btn.secondary:hover .WW{
    font-size: 25px;
    transform: translateX(48px);
    
}
.cta-btn.secondary span{
    transition: all 0.4s ease;
}
.cta-btn.secondary:hover span{
    opacity: 0;
    rotate: 180deg;
    transform: scale(0.4);
}

.cta-btn.tertiary {
    background: #ffffff;
    color: #8b7c7c;
    border: 2px solid #8b7c7c;
}

.cta-btn.tertiary:hover {
    background: #8b7c7c;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Page Responsive Design */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.3rem;
    }
    
    .contact-cta {
        padding: 40px 20px;
    }
    
    .contact-cta h3 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 80%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 0 15px;
    }
    
    .contact-card {
        padding: 25px 15px;
    }
    
    .contact-cta {
        padding: 30px 15px;
    }
    
    .contact-cta h3 {
        font-size: 1.4rem;
    }
    
    .contact-cta p {
        font-size: 1rem;
    }
}
/* ================================ */

/* Catalogs Page Styles */
.catalogs-page {
    min-height: 63vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem 0;
}

.catalogs-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.catalogs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.catalog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.catalog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.catalog-preview {
    height: 200px;
    background: linear-gradient(135deg, #8b7c7c 0%, #a39393 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.catalog-preview i {
    font-size: 4rem;
    color: #ffffff;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.catalog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.catalog-overlay i {
    font-size: 3rem;
    color: #ffffff;
}

.catalog-card:hover .catalog-overlay {
    opacity: 1;
}

.catalog-card:hover .catalog-preview > i {
    transform: scale(1.2);
}

.catalog-info {
    padding: 2rem;
}

.catalog-info h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}


.catalog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.catalog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b7c7c;
    font-size: 0.9rem;
}

.catalog-meta i {
    font-size: 0.8rem;
}

.catalog-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #8b7c7c, #a39393);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 124, 124, 0.3);
}

.catalog-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 124, 124, 0.4);
    background: linear-gradient(135deg, #a39393, #8b7c7c);
}

.catalog-btn i {
    font-size: 1rem;
}

/* Catalogs Responsive Design */
@media (max-width: 1200px) {
    .catalogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .catalogs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .catalog-card {
        margin: 0 1rem;
    }
    
    .catalogs-intro h3 {
        font-size: 1.8rem;
    }
    
    .catalogs-intro p {
        font-size: 1rem;
    }
    
    .catalog-info {
        padding: 1.5rem;
    }
    
    .catalog-info h4 {
        font-size: 1.3rem;
    }
    
    .catalog-preview {
        height: 150px;
    }
    
    .catalog-preview i {
        font-size: 3rem;
    }
    
    .catalog-overlay i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .catalogs-content {
        padding: 0 10px;
    }
    
    .catalog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .catalog-btn {
        width: 82%;
        justify-content: center;
    }
}

/* ================================ */

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: opacity 0.4s ease, transform 0.3s ease;
    opacity: 1;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(139, 124, 124, 0.8);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.nav-btn {
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: all;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(139, 124, 124, 0.8);
    transform: scale(1.1);
}

.lightbox-caption {
    margin-top: 20px;
    text-align: center;
}

.lightbox-caption p {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.gallery-img {
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Lightbox Responsive Design */
@media (max-width: 768px) {
    .lightbox-content {
        padding: 10px;
    }
    
    .close-btn {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .nav-btn {
        font-size: 24px;
        padding: 10px 15px;
        width: 50px;
        height: 50px;
    }
    
    .lightbox-caption p {
        font-size: 1rem;
    }
    
    #lightbox-img {
        max-height: 70vh;
    }
}

@media (max-width: 480px) {
    .lightbox-nav {
        padding: 0 10px;
    }
    
    .nav-btn {
        font-size: 20px;
        width: 45px;
        height: 45px;
    }
    
    .close-btn {
        font-size: 25px;
        width: 35px;
        height: 35px;
    }
    
    .lightbox-caption p {
        font-size: 0.9rem;
    }
}

/* ================================ */

/* About Page Styles */
.about-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding-top: 2rem;
}

.Story {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-height: 900px;
}

.Story img {
    width: 100%;
    height: 900px;
    object-fit: cover;
    display: block;
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(126, 109, 109, 0.7) 0%, rgba(160, 145, 143, 0) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    color: white;
    margin: auto;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.story-content h3 {
    font-size: 2rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.arabic-text {
    direction: rtl;
    text-align: center;
    margin-bottom: 2rem;
}

.english-text {
    direction: ltr;
    text-align: center;
}

/* Story Section Responsive Design */
@media (max-width: 768px) {
    .Story {
        margin: 1rem;
        min-height: 950px;
    }
    
    .story-overlay {
        padding: 2rem;
    }
    
    .story-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .story-content h3 {
        font-size: 1.5rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .story-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .Story img {
        height: 800px;
    }
    
    .arabic-text {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .Story {
        min-height: 700px;
        margin: 0.5rem;
    }
    
    .story-overlay {
        padding: 0.5rem;
        font-size: 0.3rem;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    .story-content {
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .story-content h2 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        text-align: center !important;
        width: 100%;
    }
    
    .story-content h3 {
        font-size: 1.1rem;
        margin: 1rem 0 0.5rem 0;
        text-align: center !important;
        width: 100%;
    }
    
    .story-content p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0.6rem;
        text-align: center !important;
        width: 100%;
    }
    
    .Story img {
        height: 700px;
    }
    
    .arabic-text {
        margin-bottom: 1rem;
        text-align: center !important;
        direction: rtl !important;
        width: 100% !important;
        display: block !important;
    }
    
    .arabic-text h2 {
        text-align: center !important;
        font-size: 1.2rem;
        width: 100%;
        margin: 0 auto;
    }
    
    .arabic-text p {
        text-align: center !important;
        font-size: 0.8rem;
        line-height: 1.5;
        width: 100%;
        margin: 0 auto 0.6rem auto;
    }
    
    .english-text {
        text-align: center !important;
        width: 100% !important;
        display: block !important;
    }
    
    .english-text h3 {
        text-align: center !important;
        width: 100%;
    }
    
    .english-text p {
        text-align: center !important;
        width: 100%;
    }
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.about-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: #8b7c7c;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-text p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
    perspective: 100px;
}

.about-image img:hover {
    transform: scale(1.1) skewY(2deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
    border-radius: 60px;
}

.values-section {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.values-section h3 {
    color: #8b7c7c;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b7c7c 0%, #a0918f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-card h4 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

.why-choose-section {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.why-choose-section h3 {
    color: #8b7c7c;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item i {
    color: #8b7c7c;
    font-size: 1.5rem;
}

.feature-item span {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 500;
}

.about-cta {
    background: linear-gradient(135deg, #8b7c7c 0%, #a0918f 100%);
    color: white;
    text-align: center;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* About Page Responsive Design */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    
    .about-section.reverse {
        flex-direction: column;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-image img {
        height: 250px;
    }
    
    .values-section,
    .why-choose-section,
    .about-cta {
        padding: 2rem;
    }
    
    .values-section h3,
    .why-choose-section h3 {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta h3 {
        font-size: 1.6rem;
    }
    
    .about-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 1rem;
    }
    
    .about-section,
    .values-section,
    .why-choose-section,
    .about-cta {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .value-card h4 {
        font-size: 1.1rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    .feature-item span {
        font-size: 1rem;
    }
}

/* Products Page Styles */
.products-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem 0;
}

.products-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.products-intro h3 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.products-intro p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #ffffff;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.product-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
}

.product-info {
    padding: 2rem;
}

.product-info h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-info p {
    color: #666;
    line-height: 1.6;
}

/* Coming Soon Cards */
.product-card.coming-soon {
    cursor: default;
}

.product-card.coming-soon:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coming-soon-content {
    height: 100%;
    background: linear-gradient(135deg, #8b7c7c, #a39393);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.coming-soon-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.coming-soon-content span {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Product Modal Styles */
.product-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #ffffff;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #666;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #8b7c7c;
    color: #ffffff;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    color: #333;
    font-size: 2rem;
    margin: 0;
    font-weight: 600;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #8b7c7c;
    transform: scale(1.05);
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-contact h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-btn.primary {
    background: #8b7c7c;
    color: #ffffff;
}

.contact-btn.primary:hover {
    background: #a39393;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 124, 124, 0.3);
}

.contact-btn.whatsapp {
    background: #25d366;
    color: #ffffff;
}

.contact-btn.whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Products Page Responsive Design */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-intro h3 {
        font-size: 2rem;
    }
    
    .products-intro p {
        font-size: 1rem;
    }
    
    .product-card {
        margin: 0 1rem;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-body {
        padding: 1rem;
        gap: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .main-image {
        height: 250px;
    }
    
    .thumbnail {
        height: 60px;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .products-content {
        padding: 0 15px;
    }
    
    .products-intro {
        margin-bottom: 2rem;
    }
    
    .products-intro h3 {
        font-size: 1.8rem;
    }
    
    .product-card {
        margin: 0;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-info h4 {
        font-size: 1.3rem;
    }
    
    .modal-content {
        width: 98%;
        margin: 1% auto;
        border-radius: 15px;
    }
    
    .modal-close {
        top: 15px;
        right: 20px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}