@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400&family=Poppins:ital,wght@0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-padding-top: 2rem;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}
:root {
    --main-color: #37bae2;
    --second-color: #000000;
}
section {
    padding: 50px 10%;
}
img{
    width: 100%;
}
*::selection {
    color: #fff;
    background: var(--main-color);
}

.hidden-section {
    display: none !important;
}

/* Our Team */
.team {
    background: linear-gradient(135deg, #f0faff 0%, #d8efff 100%);
    padding: 80px 10%;
    display: none;
}

#team:target {
    display: block;
}

.team-heading {
    text-align: center;
    margin-bottom: 50px;
}

.team-heading h2 {
    font-size: 2.8rem;
    color: var(--second-color);
    margin-bottom: 15px;
}

.team-heading p {
    font-size: 1.1rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-groups {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-group-title {
    font-size: 1.6rem;
    color: var(--main-color);
    margin-bottom: 1.5rem;
    text-align: left;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.team-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.team-photo {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.team-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 20px 18px 26px;
}

.team-info h3 {
    font-size: 1.3rem;
    color: var(--second-color);
    margin-bottom: 8px;
}

.team-info p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .team {
        padding: 60px 8%;
    }

    .team-heading h2 {
        font-size: 2.3rem;
    }

    .team-heading p {
        font-size: 1rem;
    }
}

header {
    position: fixed;
    width:100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10%;
    transition: 0.2s;
}
header.active {
    background: #d5f0ff;
    box-shadow: 0 0 4px rgb(14 55 54 / 55%);
}
.logo {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
}
.logo img {
    width: 50px;
}
.nav {
    display: flex;
}
.nav a{
    font-size: 1rem;
    padding: 5px 10px;
    color: #000000;
    font-weight: 500;
}
.nav a:hover {
    color: #fff;
    background: #37bae2 ;
    border-radius: 4px;
}

/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: #37bae2;
    color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;
}
.sidenav a{
    font-size: 1rem;
    padding: 10px 20px;
    color: #000000;
    font-weight: 500;
}
#menu-icon{
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    display: none;
}
.log-in:hover {
    color: #fff;
    background: #37bae2 ;
    border-radius: 4px;
}
.book-online{
    background-color: var(--main-color);
    padding: 10px 20px;
    border: 2px solid var(--main-color);
    border-radius: 40px;
    color: var(--second-color);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.book-online:hover{
    color: #fff;
    background: var(--main-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.walk-in{
    background-color: #10b981;
    padding: 10px 20px;
    border: 2px solid #10b981;
    border-radius: 40px;
    color: #fff;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.walk-in:hover{
    color: #fff;
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.walk-in::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.walk-in:hover::after {
    animation: shimmer 0.6s ease-in-out;
}

.book-online::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    20%, 100% {
        transform: translateX(100%) rotate(45deg);
    }
}
.container {
    max-width: 1060px;
    margin: auto;
}
.home{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: url(img/hhh.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    gap: 1rem;
}
.home-text{
    flex: 1 1 17rem;
}
.home-img{
    flex: 1 1 17rem;
}
.home-text span {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--main-color);
}
.home-text h1{
    font-size: 3rem;
    color: var(--second-color);
}
.home-text p{  
    margin: 0.5rem 0 1.4rem;
}
.btn{
    padding: 10px 20px;
    border: 2px solid var(--main-color);
    border-radius: 40px;
    color: var(--second-color);
    font-weight: 500;
}
.btn:hover{
    letter-spacing: 2px;
    color: #fff;
    background: var(--main-color);
}
/*---- about ----*/
.about{
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 10%;
}
.about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    align-items: center;
}
.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.about-img:hover {
    transform: scale(1.05);
}
.about-img img {
    width: 100%;
    /* height: 500px; */
    object-fit: cover;
    display: block;
}
.about-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(55, 186, 226, 0.9));
    color: white;
    padding: 20px;
    text-align: center;
}
.about-overlay h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}
.about-overlay p {
    margin: 5px 0 0 0;
    font-size: 1rem;
}
.about-text {
    padding: 0 20px;
}
.a-title{
    color: var(--main-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.about-text h1{
    font-size: 2.5rem;
    color: var(--second-color);
    margin-bottom: 20px;
    line-height: 1.2;
}
.about-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.feature-icon {
    background: var(--main-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.feature-content h3 {
    font-size: 1.3rem;
    color: var(--second-color);
    margin-bottom: 8px;
}
.feature-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* -----------------------booking online-------------------- */
#booking {
  display: none; /* Hide booking section by default */
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.booking-container {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #007bff;
}

/* Form Styles */
.booking-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.form-row.full-width {
  flex-direction: column;
}

.form-row.center {
  justify-content: center;
  text-align: center;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="time"],
select {
  flex: 1;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  transition: border 0.3s;
   border: 2px solid var(--main-color);
}

input:focus,
select:focus {
  border-color: #007bff;
  outline: none;
}

/* Button */
.submit-btn {
  padding: 14px 28px;
  font-size: 16px;
  background: #007bff;
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #0056b3;
}

/* Alert Message */
.alert {
  padding: 12px 16px;
  margin-top: 10px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
}

.hidden {
  display: none;
}

.alert.success {
  background-color: #d1e7dd;
  color: #0f5132;
}

.alert.error {
  background-color: #f8d7da;
  color: #842029;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}


/* -- Services -- */
#services{
    background: linear-gradient(135deg, #f8fffe 0%, #e0f7fa 100%);
    padding: 80px 10%;
}
.sheading {
    text-align: center;
    margin-bottom: 50px;
}
.sheading h2 {
    font-size: 2.8rem;
    color: var(--second-color);
    margin-bottom: 15px;
}
.sheading span {
    color: var(--main-color);
    font-weight: 700;
}
.sheading p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
.services-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}
.service-box{
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}
.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--main-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(55, 186, 226, 0.3);
}
.service-img{
    position: relative;
    height: 200px;
    overflow: hidden;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.service-box:hover .service-img img {
    transform: scale(1.1);
}
.service-content {
    padding: 25px;
}
.service-content h3 {
    font-size: 1.4rem;
    color: var(--second-color);
    margin-bottom: 12px;
    font-weight: 600;
}
.service-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* -- Customers -- */
#c-headind{
    font-size: 2.8rem;
    color: var(--main-color);
    margin-bottom: 15px;
}

.customer-container{
    display: flex ;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;

}

#c-headind, #c-text {
    display: flex;
    justify-content: center;
    margin: 2rem;
}
.box{
    height: 400px;
    background-color: white;
    flex: 1 1 16rem;
    text-align: center;
    box-shadow: 0px 4px 4px rgb(14 55 54 / 15%);
    padding: 20px;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 350px;
}
.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.box img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--second-color);
}
.box img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.box .bx{
    color: rgb(242, 255, 64);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.box .stars {
    margin: 0.5rem 0;
}

.box p{
    margin: 0.5rem 0 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    min-height: 0;
    text-align: center;
}

.box h2{
    font-size: 1.2rem;
    color: var(--main-color);
    letter-spacing: 1px;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Review Delete Button */
.review-box {
    position: relative;
}

.review-delete-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    z-index: 10;
    opacity: 0.8;
}

.review-delete-btn:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.review-delete-btn i {
    font-size: 0.9rem;
    pointer-events: none;
}


/* -- Contact -- */

#contact-us {
    display: flex;
    justify-content: center;
}
#p-contact {
    display: flex;
    justify-content: center;
}
    
   
.contact-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.contact-info{
    flex: 1 1 20rem;
}
.contact-form{
    flex: 1 1 20rem;
    display: flex; 
    justify-content: center;
}
.contact-info h3{
    color: var(--second-color);
}
.contact-info p{
    margin: 0.5rem 0 1rem;
}
.address{
    display: flex;
    flex-direction: column;
}
.address i{
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 20px;
}
.address span{
    font-size: 1rem;
    margin-left: 1rem;
}
.social{
    margin-top: 1rem;
}
.social a{
    font-size: 24px;
    color: var(--main-color);
    margin-right: 1rem;
}
.social a:hover{
    color: var(--second-color);
}
.contact-form form{
    width: 100%;
    display: flex;
    flex-direction: column;
}
form input ,
textarea{
    /* width: 100%; */
    padding: 17px;
    border-radius: 0.5rem;
    outline: none;
    margin-bottom: 1rem;
    border: 2px solid var(--main-color);
    box-shadow: 0 4px 4px 2px rgb(14 55 54 / 15%);
}
.form-select {
    width: 100%;
    padding: 17px;
    border-radius: 0.5rem;
    outline: none;
    margin-bottom: 1rem;
    border: 2px solid var(--main-color);
    box-shadow: 0 4px 4px 2px rgb(14 55 54 / 15%);
}
form input::placeholder,
textarea::placeholder{
    color: var(--main-color);
}
form textarea{
    resize: none;
    height: 150px;
}
form .btn {
    /* max-width: 100px; */
    background: var(--main-color);
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
}

#btn-contact:hover{
    background: #009926;
}

@media (max--width:1100px){
  .home-text h1{
    font-size: 3rem;
  }
}
/* =========================
   MOBILE NAVBAR FIX (GLOBAL)
   ========================= */

/* IMPORTANT: your existing media queries use max--width (wrong).
   This block forces proper mobile behavior. */
@media (max-width: 991px){

  header{
    padding: 10px 6% !important;
  }

  /* show hamburger */
  #menu-icon{
    display: block !important;
    font-size: 28px;
    cursor: pointer;
    z-index: 10001;
  }

  /* dropdown panel */
  header .nav.container{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    width: 100%;
    max-width: none !important;  /* overrides .container { max-width:1060px; margin:auto } */
    margin: 0 !important;

    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;

    padding: 14px 6%;
    border-top: 1px solid rgba(0,0,0,0.06);

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all .2s ease;
    z-index: 9999;
  }

  header .nav.container.active{
    max-height: 75vh;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    box-shadow: 0 10px 20px rgba(0,0,0,0.10);
  }

  header .nav.container li{ width: 100%; }
  header .nav.container a{
    width: 100%;
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
  }

  /* dropdown in mobile: click-to-open (JS controls .open) */
  header .dropdown-content{
    position: static !important;
    display: none;
    box-shadow: none !important;
    min-width: 100%;
    margin-top: 6px;
    border-radius: 10px;
    overflow: hidden;
  }
  header .dropdown.open .dropdown-content{
    display: block;
  }
}

/* @media(max--width:991px){
  header{ 
    padding: 18% 4%;
  }
  #menu-icon {
    display: initial;
  }
  header.active #menu-icon{
    color: #fff;
  }
  heaver .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--second-color);
    transition: 0.2 ease;
    text-align: center;
  }.nav a{
    padding: 1.5rem;
    display: block;
    color: #fff
  }
} */

/* Footer Styles */
footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #fff;
  padding: 60px 10% 30px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

/* Add animated background pattern */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.footer-section {
  position: relative;
  transition: all 0.3s ease;
}

.footer-section:hover {
  transform: translateY(-5px);
}

.footer-section h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--main-color);
  transition: width 0.3s ease;
}

.footer-section:hover h3::after {
  width: 50px;
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #bdc3c7;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-section ul li a:hover {
  color: var(--main-color);
}

.footer-section ul li a i {
  width: 20px;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #bdc3c7;
  padding: 8px 0;
  transition: all 0.3s ease;
  border-radius: 8px;
  cursor: pointer;
}

.contact-item:hover {
  background: rgba(55, 186, 226, 0.1);
  color: #fff;
  transform: translateX(5px);
  padding-left: 10px;
}

.contact-item i {
  color: var(--main-color);
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(55, 186, 226, 0.1);
  border: 2px solid var(--main-color);
  border-radius: 50%;
  color: var(--main-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.social-links a:hover::before {
  left: 100%;
}

.social-links a:hover {
  background: var(--main-color);
  color: #fff;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(55, 186, 226, 0.4);
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 30px;
  text-align: center;
  color: #95a5a6;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

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

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

/* Footer Contact Form Styles */
.footer-contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.footer-contact-form input,
.footer-contact-form textarea {
  padding: 12px 15px;
  border: 2px solid #34495e;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.footer-contact-form input::placeholder,
.footer-contact-form textarea::placeholder {
  color: #bdc3c7;
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
  outline: none;
  border-color: var(--main-color);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px rgba(55, 186, 226, 0.3);
}

.footer-contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.footer-contact-form .submit-btn {
  padding: 12px 20px;
  background: var(--main-color);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-contact-form .submit-btn:hover {
  background: #2a9bc7;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(55, 186, 226, 0.4);
}

.footer-contact-form .submit-btn:active {
  transform: translateY(0);
}

.form-message {
  font-size: 0.9rem;
  min-height: 20px;
  text-align: center;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.form-message.success {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.form-message.error {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Footer Responsive */
@media (max-width: 768px) {
  footer {
    padding: 40px 5% 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-contact-form {
    gap: 12px;
  }
  
  .footer-contact-form input,
  .footer-contact-form textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 30px 5% 15px;
  }
  
  .footer-section h3 {
    font-size: 1.2rem;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

