/* NAVIGATION */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

nav.scrolled {
  background: var(--white);
  box-shadow: 0 5px 30px rgba(0,0,0,0.15);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  text-decoration: none;
}

.logo-image {
    height: 115px; /* Even larger */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin: -25px 0; /* More negative margin */

}

.logo:hover .logo-image {
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
}

.logo-text span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.cta-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white) !important;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
}

.cta-btn:hover {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.cta-btn::after {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: all 0.3s;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform: translateY(-3px);
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s;
    align-items: flex-start;
  }

  .nav-links.active {
    right: 0;
  }

  .logo-image {
     height: 90px; /* Slightly larger than current 55px */
        margin: -15px 0;
  }

  .logo-text {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .logo-image {
     height: 90px;
        margin: -15px 0;
  }

  .logo-text {
    font-size: 1.2rem;
  }
}
/* Contact Pop Up Button */

.contact-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.contact-popup-overlay.active {
    display: flex;
}

.contact-popup-container {
    background: var(--white);
    max-width: 420px;
    width: 90%;
    border-radius: 15px;
    position: relative;
    animation: contactPopupSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 25px 70px rgba(255, 107, 107, 0.4);
    overflow: hidden;
}

@keyframes contactPopupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.contact-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-popup-close:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
}

.contact-popup-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1.5rem 1.5rem 1.2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-popup-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-popup-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.contact-popup-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-popup-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.contact-popup-header p {
    font-size: 0.85rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.contact-popup-body {
    padding: 1.2rem;
    max-height: 320px;
    overflow-y: auto;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 12px;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.contact-info-item:hover {
    transform: translateX(5px);
    border-left-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.15);
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.phone-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.email-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.address-icon {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.contact-info-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-details {
    flex: 1;
}

.contact-info-details h4 {
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-info-details a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.2rem;
}

.contact-info-details a:hover {
    color: var(--primary-color);
}

.contact-info-details p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.availability {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.2rem;
}

.contact-popup-actions {
    padding: 1rem 1.2rem 1.2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    background: var(--light-bg);
    border-top: 1px solid rgba(255, 107, 107, 0.1);
}

.contact-action-btn {
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--white);
}

.call-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.contact-action-btn i {
    font-size: 1.1rem;
}

/* Scrollbar Styling */
.contact-popup-body::-webkit-scrollbar {
    width: 5px;
}

.contact-popup-body::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 10px;
}

.contact-popup-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-popup-container {
        max-width: 95%;
    }

    .contact-popup-header {
        padding: 1.3rem 1.2rem 1rem;
    }

    .contact-popup-icon {
        width: 55px;
        height: 55px;
    }

    .contact-popup-icon i {
        font-size: 1.6rem;
    }

    .contact-popup-header h2 {
        font-size: 1.3rem;
    }

    .contact-popup-body {
        padding: 1rem;
        max-height: 280px;
    }

    .contact-info-item {
        padding: 0.9rem;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
    }

    .contact-info-icon i {
        font-size: 1.1rem;
    }

    .contact-popup-actions {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
}