:root{
    --body-color: rgb(250, 250, 250);
    --color-white: rgb(255, 255, 255) ;

    --text-color-second: rgb(68, 68, 68) ;
    --text-color-third:  rgb(30, 159, 171);

    --first-color: rgba(54, 52, 53, 0.8);
    --first-color-hover: rgb(40, 91, 212);

    --second-color: rgb(0, 201, 255) ;
    --third-color: rgb(191, 166, 49);
    --first-shadow-color:  rgba(0, 0, 0, 0.1);
}

*{
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif ;

}

body {
  overflow-x: hidden;
}

/* Smooth scrolling */

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(54, 52, 53, 0.8);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 10vh;
    background-color: #363435;
    font-family: 'Poppins', sans-serif;
}

.logo img {
    height: 150px; /* fits nicely in 8vh nav */
    width: auto;
    object-fit: contain;
}
.nav-links {
    display: flex;
    justify-content: space-around;
    width: 35%;
}
.nav-links li{
    list-style: none;
}

.nav-links a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: bold;
}
.nav-links a:hover{
    color: #000000;
    transition: all 0.3s ease;

}

.burger{
    display: none;
    cursor: pointer;
}
.burger div{
    width: 25px;
    height: 3px;
    background-color: rgb(226, 226, 226);
    margin: 5px;
    transition: all 0.3s ease;
}


@media screen and (max-width: 1024px){
    .nav-links {
        width: 50%;
    }
}

@media screen and (max-width: 768px){
    body {
        overflow-x: hidden;
    }
    .nav-links{
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: #363435;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 40%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;

    }
    .nav-links li{
        opacity: 0;
    }
    .burger{
        display: block;
    }
}

.nav-active{
    transform: translateX(0%);
}

@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}



.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hide language dropdown above burger on large screens */
.language-switcher {
  margin-left: 20px;
}

.language-switcher select {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #363435;
  font-size: 0.9rem;
  cursor: pointer;
  color: #fff;
}

/* Responsive behavior */
@media screen and (max-width: 768px) {
  .nav-right {
    flex-direction: column;
    align-items: flex-end;
    position: relative;
  }

  .language-switcher {
    order: -1; /* moves it above burger */
    margin: 0;
    margin-bottom: 8px;
  }

  .language-switcher select {
    font-size: 0.85rem;
    padding: 4px 8px;
  }
}


.section {
    padding-block: 5em;
}

.container{
    width: 100%;
    position: relative;
}

.wrapper {
    padding-top: 10vh;
    padding-inline:30px;
}


/* ===== ABOUT SECTION ===== */
.about {
    margin-top: 8vh;
    background-color: #000000;
    color: rgba(226, 223, 218);
    padding: 80px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 4px 12px 30px 8px rgba(0, 0, 0, 0.4);
    border-radius: 20px;

}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    
}

.about-image img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.about-text {
    font-family: 'Poppins', sans-serif;
    flex: 1;
}

.about-text h2 {
    font-size: 2.3rem;
    color: rgba(252, 252, 252);
    margin-bottom: 10px;
}

.about-text h3 {
    font-size: 1.4rem;
    color: rgba(226, 223, 218);
    opacity: 0.85;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background-color: #363435;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: rgba(225, 225, 225);
    color: #000000;
}

.row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
    align-items: stretch;
}

.col {
    display: flex;
    width: 50%;
    justify-content: center;
}



.about-info {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-block: 30px 70px;
    padding-inline: 20px;
    width: 100%;
    background: var(--color-white);
    box-shadow: 1px 8px 10px 2px var(--first-shadow-color);
    border-radius: 20px;
}
.about-info p{
    text-align: center;
    font-size: 25px;
    color: #777;
}
.about-info h1{
    font-size: 30px;
    margin-bottom: 10px;

}


.about-btn button {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: white;
    color: #000000;
    border-radius: 30px;
}
.about-btn button:hover {
    background: #000000;
    color: var(--color-white);
}

/* ===== NEWS SLIDES ===== */
.big-news { max-width: 1400px; margin: 0 auto; }
.news-slider { position: relative; width: 100%; height: 500px; border-radius: 20px; overflow: hidden; box-shadow: 1px 8px 15px rgba(0,0,0,0.25); }
.news-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.news-slide.news-active { opacity: 1; z-index: 1; }
.news-slide img { width: 100%; height: 100%; object-fit: cover; }

/* Text overlay */
.news-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  max-width: 500px;
  background: rgba(0,0,0,0.55);
  padding: 20px 25px;
  border-radius: 15px;
  color: #fff;
}
.news-text h2 { margin-bottom: 10px; font-size: 1.8rem; }
.news-text p { font-size: 1.05rem; line-height: 1.6; }

/* Read More Button */
.news-more-btn {
  margin-top: 12px;
  padding: 8px 16px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
}
.news-more-btn:hover { background: #333; }

/* Slider Buttons */
.news-prev, .news-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 26px;
  padding: 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s ease, transform 0.3s ease;
}
.news-prev { left: 20px; } 
.news-next { right: 20px; }
.news-prev:hover, .news-next:hover { background: rgba(0,0,0,0.85); transform: translateY(-50%) scale(1.1); }

/* ===== NEWS FULL TEXT PANEL ===== */
.news-full-text {
  position: fixed;          /* overlay entire viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;             /* full screen */
  background: #fff;
  padding: 20px;
  overflow-y: auto;         /* scroll if content exceeds viewport */
  z-index: 9999;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-sizing: border-box;
}
.news-full-text p {
font-size: 1.55rem; line-height: 1.6;
}
.news-full-text h2 {
  text-align: center;
  align-items: center;
  font-size: 2rem;
}

/* Show panel when active */
.news-full-text.show {
  transform: translateY(0);
  opacity: 1;
}

/* Close button */
.news-close-btn {
  position: absolute; /* absolute to the relative parent */
  top: 10px;
  right: 10px; /* padding from the right edge */
  background: #000;
  color: #fff;
  padding: 8px 12px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  z-index: 10000;
  font-size: 1rem;
}

.full-images {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap; /* for smaller screens */
}

.full-images img {
  width: calc(33.333% - 6.66px); /* 3 images in a row with gap */
  object-fit: cover;
  border-radius: 10px;
}


/* Mobile adjustments */
@media(max-width: 768px) {
  .news-text {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    font-size: 0.9rem;
    max-width: 100%;
    text-align: left;
  }
  .full-images img {
    width: calc(50% - 5px); /* 2 images per row on small screens */
  }
}





.skills-box {
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.skills-box img {
    width: 100%;
    max-width: 1050px;   /* limits how big the image can get */
    height: auto;
    border-radius: 20px;
    box-shadow: 1px 8px 10px 2px var(--first-shadow-color);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.skills-box img:hover {
    transform: scale(1.05);
}


.slide-container {
    position: relative;
    width: 100%;
    max-width: 1500px; /* optional max width */
    height: 600px;      /* adjust as needed */
    margin: 0 auto;
    overflow: hidden;
    border: 3px solid #ede6d6;
    box-shadow: 0 0 8px 2px rgba(0,0,0,0.2);
}

.slide-container .slides img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide-container .slides img.active {
    opacity: 1;
    z-index: 1;
}
span.next, span.prev {
    position: absolute;
    top: 50%;
    padding: 14px;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #eee;
    font-size: 24px;
    font-weight: bold;
    transition: 0.5s;
    border-radius: 3px;
    user-select: none;
    cursor: pointer;
    z-index: 1;
}
span.next {
    right: 20px;
}
span.prev {
    left: 20px;
}
span.next:hover, span.prev:hover {
    background-color: #ede6d6;
    opacity: 0.8;
    color: #222;
}

.dotsContainer {
    position: absolute;
    bottom: 5px;
    z-index: 3;
    left: 50%;
    transform: translateX(-50%);
}
.dotsContainer .dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    border: 3px solid #bbb;
    border-radius:  50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.dotsContainer .dot.active {
    background-color: #555;
}





/* ===== DOGS SECTION ===== */
.dog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row on large screens */
  gap: 30px;
  padding: 20px 5%;
  text-align: center;
}

.dog-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 1px 8px 10px 2px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.dog-card img:hover {
  transform: scale(1.05);
}

.dog-card h3 {
  margin-top: 10px;
  font-size: 1.1rem;
  color: var(--text-color-second);
}



.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  animation: fadeIn 1s ease;
}

.modal-content img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 20px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  object-fit: cover;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: #000;
}

/* Adjust image focus for Grinch only */
.dog-card[data-dog="grinch"] img {
  object-position: center 15%; /* shift view upward to show face */
}


.slides img[data-img="barbe"] {
  object-position: center 20%;
}
.slides img[data-img="bella"] {
  object-position: center 50%;
}
.slides img[data-img="amigo"] {
  object-position: center 40%;
}

/* For medium screens */
@media (max-width: 1024px) {
  .dog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* For small screens */
@media (max-width: 600px) {
  .dog-grid {
    grid-template-columns: 1fr;
  }
}



.mail-success {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 250px;
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 9999;
  pointer-events: none;
  font-family: 'Poppins', sans-serif;
}

.mail-success.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Checkmark circle */
.checkmark-circle {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px auto;
  position: relative;
}

.checkmark-circle .background {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #4caf50;
  position: absolute;
  top: 0;
  left: 0;
}

.checkmark-circle .checkmark {
  display: block;
  height: 20px;
  width: 10px;
  border-left: 4px solid white;
  border-bottom: 4px solid white;
  transform: rotate(-45deg);
  position: absolute;
  top: 12px;
  left: 15px;
  opacity: 0;
}

/* Animation */
.checkmark-circle .checkmark.draw {
  animation: drawCheck 0.5s ease forwards;
}

@keyframes drawCheck {
  0% { opacity: 0; height: 0; width: 0; }
  50% { opacity: 1; height: 20px; width: 0; }
  100% { opacity: 1; height: 20px; width: 10px; }
}

.mail-success p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.project-box::after, .contact-info::after{
    content: "";
    position: absolute;
    bottom: -100%;
    background: var(--second-color);
    width: 100%;
    height: 100%;
    transition: .4s;
    z-index: 1;
}

/*  contact box  */
.contact-info {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    width: 100%;
    height: 315px;
    background: #363435;
    border-radius: 10px;
    box-shadow: 1px 8px 10px 2px var(--first-shadow-color);
    overflow: hidden;
}
.contact-info>h2{
    color: var(--color-white);
    margin-bottom: 20px;
}
.contact-info>p{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    margin-block: 5px;
}
.contact-info p>i{
    font-size: 25px;
}
.contact-info::after{
    background: var(--color-white);
}
.contact-info:hover.contact-info h2,
.contact-info:hover.contact-info p,
.contact-info:hover.contact-info i {
    color: #000000;
    z-index: 2;
}
.contact-info:hover.contact-info::after{
    bottom: 0;
}

/*  Contact FORM */
.form-control {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.form-inputs {
    display: flex;
    gap: 10px;
    width: 100%;
}
.input-field {
    width: 50%;
    height: 55px;
    background: transparent;
    border: 2px solid #AAA;
    border-radius: 10px;
    padding-inline: 20px;
    outline: none;
}
textarea {
    width: 100%;
    height: 250px;
    background: transparent;
    border: 2px solid #AAA;
    border-radius: 10px;
    padding: 15px 20px;
    outline: none;
    resize: none;
}
.form-button>.btn{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #000000;
}
.form-button>.btn:hover{
    background: #000000;
    color: #ffffff;
}
.form-button i {
    font-size: 12px;
    margin-bottom: 5px;
    margin-left: 5px;
    rotate: -45deg;
}

/*  media query on 540px response  */
@media only screen and (max-width: 540px){
    .featured-name{
        font-size: 40px;
    }
    .project-box {
        width: 100%;
    }
    .form-inputs{
        flex-direction: column;
    }
    .input-field{
        width: 100%;
    }
}



.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}
.icon i{
    font-size: 20px;
}
.icon:hover {
    color: var(--first-color);
}






/*  Resuable css  */
.top-header {
    text-align: center;
    margin-bottom: 5em;
}
.top-header h1 {
    font-weight: 600;
    color: var(--text-color-second);
    margin-bottom: 10px;
}
.top-header span {
    color: #999;
}



#litterName {
    font-family: 'Imperial Script', cursive;
    font-size: 2.5rem; /* adjust size as you like */
    text-align: center;
    color: #333; /* optional color */
    margin-bottom: 10px;
}
#litterDate{
    font-family: 'Imperial Script', cursive;
    font-size: 1.5rem; /* adjust size as you like */
    text-align: center;
    color: #333; /* optional color */
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.litters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px 5%;
  text-align: center;
}

.litter-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 1px 8px 10px 2px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.litter-card:hover {
  transform: scale(1.05);
}

.litter-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}

.litter-card h2 {
  margin-top: 10px;
  font-size: 2rem;
  color: var(--text-color-second);
  font-family: 'Imperial Script', cursive;
  color: #555;
  letter-spacing: 0.5px;
}

.litter-card p {
  margin-bottom: 10px;
  color: #555;
  font-family: 'Imperial Script', cursive;
  font-size: 1.5rem;
  color: #555;
  letter-spacing: 0.5px;
}

/* Litter Modal */
.litter-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  overflow-y: auto;
  padding: 40px 20px;
  
}

.litter-modal-content {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 900px;
  text-align: center;
  position: relative;
  margin: 80px auto;
  
}

.litter-modal-content .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #aaa;
}

.litter-modal-content .close:hover {
  color: #000;
}

/* Puppies grid */
.puppies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  
}

.puppy-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
}

.puppies-grid img[data-name="Baika"] {
  object-fit: cover;
  object-position: center 15%;
}

.puppy-card h4 {
  font-family: 'Imperial Script', cursive;
  font-size: 2rem;
  color: #333;
  letter-spacing: 0.5px;
  margin-top: 8px;
  color: var(--text-color-second);
}

@media(max-width: 1024px) {
  .litters-grid, .puppies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .litters-grid, .puppies-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 600px) {
  .litter-modal-content {
    max-height: 90vh;      /* ✅ keeps modal visible */
    overflow-y: auto;      /* ✅ scroll within modal if needed */
  }
}



footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 30px;
    background: #F8F8F8;
    padding-block: 40px 60px;
}
.top-footer p{
    font-size: 25px;
    font-weight: 600;
}
.middle-footer .footer-menu {
    display: flex;
}
.footer_menu_list {
    list-style: none;
}
.footer_menu_list a{
    text-decoration: none;
    color: var(--text-color-second);
    font-weight: 500;
    margin-inline: 20px;
}
.footer-social-icons {
    display: flex;
    gap: 30px;
}
.bottom-footer{
    font-size: 14px;
    margin-top: 10px;
}
.footer-social-icons a {
  color: var(--text-color-second);
  font-size: 24px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.footer-social-icons a:hover {
  transform: scale(1.2);
  color: var(--first-color); /* or any accent color you already use */
}


/* --- Social Links Section Below Slideshow --- */
.social-links {
  text-align: center;
  margin-top: 30px;
}

.social-links p {
  font-size: 1.1rem;
  color: var(--text-color-second);
  margin-bottom: 15px;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-btn i {
  font-size: 1.2rem;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Custom colors for each button */
.social-btn.instagram { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); }
.social-btn.facebook { background-color: #1877f2; }
.social-btn.tiktok { background: linear-gradient(45deg, #010101, #69c9d0, #ee1d52); }

@media (max-width: 600px) {
  .social-btn {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
}






/* Responsive */
@media screen and (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 80%;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-info, .contact-info {
        width: 100%;
    }

    .row {
    flex-direction: column;
    align-items: center;
  }

    .col {
        width: 100%;
        justify-content: center;
    }

    .about-info {
        width: 100%;
        max-width: 600px; /* optional: keeps content nicely centered */
        box-sizing: border-box;
    }

    .skills-box img {
        width: 100%;
        max-width: 700px;
        height: auto;
        border-radius: 20px;
        box-shadow: 1px 8px 10px 2px var(--first-shadow-color);
    }
}

@media screen and (max-width: 540px) {
  .contact-info p {
    flex-direction: column; /* stack icon above text */
    align-items: center;    /* center horizontally */
    text-align: center;     /* center text */
    gap: 5px;               /* smaller gap for compact look */
    font-size: 14px;        /* optional: smaller font on phone */
  }

  .contact-info p i {
    font-size: 22px;        /* slightly smaller icon */
  }
}

@media (max-width: 600px) {
  .middle-footer .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}