:root {
    --primary-orange: #e67e22;  
    --primary-black: #000000;
    --orange-hover: #d35400;  
    --text-dark: #333;
    --text-secondary: #666;
    --bg-light: #ffffff;
    --bg-white: #fff;
    --bg-footer: #212d39;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
}
html, body {
  overflow-x: hidden;
  width: 100%;
}

section { opacity: 1 !important; display: block !important; }


body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    background: white;  
}

.container {
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: var(--bg-white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
  /* background: linear-gradient(to bottom, #fff2ab, #bffdbf); */
  background: white;
  padding: 5px 5px; 
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: white; 
  margin-left: 10px;
}

.logo img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--primary-orange);
    outline: none; 
}

.nav-link{
    color: #000;
    text-decoration: none;
    transition: color 0.3 ease;

}
.nav-link.active{
    color: #e67e22;
    font-weight: bold;
}

.pp{
    color: white !important;
    text-align: justify;
}


.pluit img {
  width: 100%;        
  max-width: 500px;   
  height: auto;       
  display: block;     
  margin: 0 auto;     
}

.service-card img {
  width: 100%;         
  height: auto;       
  border-radius: 8px;  
  margin: 10px 0;      
  object-fit: cover;   
  flex: 1;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    position: relative;
    height: calc(100vh - 80px);  
    margin-top: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 450px;
}

.hero-logo {
  background-color: white;
  padding: 10px;
  border-radius: 10px;
}


.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    width: 90%;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

.slide.active .hero-content {
    opacity: 1;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    max-width: 100%;
}

.left-logo {
    flex: 0 0 40%;
    text-align: center;
    padding-right: 1rem;
}

.left-logo img.hero-logo {
    width: 250px;
    height: 250px;
    max-height: 250px;  
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.hero-logo:hover {
    transform: scale(1.05);
}

.right-text {  
    flex: 1;
    text-align: left;
    min-width: 0;
}

.right-text h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7); 
    font-weight: 700;
    color: white;  
    line-height: 1.2;
}

.right-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-content.right-content h1 {  
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

.hero-content.right-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -50%) translateY(20px); }
    to { opacity: 1; transform: translate(-50%, -50%) translateY(0); }
}

button,
.cta-button,
.info-btn {
  background: white; 
  border: 1px solid #000; 
  border-radius: 25px;
  color: #000;
  padding: 10px 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px; 
  text-decoration: none;
  transition: all 0.3s ease;
}

button:hover,
.cta-button:hover,
.info-btn:hover {
  background: black;
  color: white;
}

button::after,
.cta-button::after,
.info-btn::after {
  content: "➜";
  font-size: 1rem;
  transition: transform 0.3s ease;
}

button:hover::after,
.cta-button:hover::after,
.info-btn:hover::after {
  transform: translateX(4px);
}


.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);  
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
    z-index: 1;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover,
.dot:focus {
    background-color: #fff;
    transform: scale(1.2);
}

.dot.active {
    background-color: var(--primary-orange);
}

.split-section {
    padding: 80px 0;
    background: var(--bg-light);
    margin-bottom: 10px;
}

.split-wrapper {
  display: flex;
  flex-direction: row; 
  align-items: center;
  justify-content: center;
  gap: 0.5rem; 
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.split-image img {
  width: 100%;
  min-width: 500px; 
  height: auto;
}

.service-card img:hover {
    transform: scale(1.05); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.split-text {
    flex: 1;
    width: 60%;
    padding: 2rem;
}


.split-image img {
    max-width: 70%;
    margin: 0 auto;
    display: block;
}
 


.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
    font-weight: 700;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.split-text ul {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 0;
}

.split-text li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.split-text li::before {
    content: "•";
    color: var(--primary-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.info-panel {
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(to bottom, #000000,#fff, #ffffff);
    background-size: 600% 600%;
    animation: gradientShift 10s ease infinite;
}

.info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.info-text {
    flex: 1;
    text-align: left;
}

.info-text h2 {
    font-size: 2.3em;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 20px;
}

.info-text p {
    font-size: 1.05em;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-image img {
    width: 100%;
    max-width: 800px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    object-fit: cover;
}

.services {
    padding: 80px 0;
    background: var(--bg-white);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(800px, 1fr));
    gap: 20px;
    max-width: 100px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: visible;
    background: var(--bg-white);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
     transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 1;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: 14px;
    background: linear-gradient(90deg, var(--primary-orange), #f39c12, var(--primary-orange));
    background-size: 300% 300%;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.service-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 12px;
    background: var(--bg-white);
    z-index: 0;
}

@keyframes moveGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.service-card:hover::before {
    opacity: 1;
    animation: moveGradient 3s linear infinite;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.06));
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card * {
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.service-card p {
    color: var(--text-secondary);
}

.footer {
    background: var(--bg-footer);
    color: white;
    text-align: center;
    padding: 2rem 0;
    padding-top: 100px;
}

.footer .logo {
  width: 100px;    
  height: auto;
  display: block;

}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 800px;   
    margin: 0 auto;
}

.fot {
    font-size: 0.9rem; 
    margin: 0;
}

.link {
  color: #fff; 
  text-decoration: none;
  transition: color 0.3s ease;
}

.link:hover {
  color: #d8d8d8; 
}


.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}


@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.whatsapp-float {
    animation: bounce 2s infinite ease-in-out;
}

section:not(.hero) {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

section:not(.hero).visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeUp 0.6s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .maps-section {
        display: flex;
        flex-direction: column;
        align-items: center; 
        padding-bottom: 40px;
        gap: 20px;
        padding: 40px 0;
    }

    .maps-title {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 0px; 
        text-align: center;
        color: #333;
        align-items: center

    }

    .map-container{
        display: flex;
        flex-wrap: wrap;
        justify-content: center; 
        align-items: center;
        margin: 0 auto;
        gap: 20px;
        width: 100%;
        max-width: 1900px;
        flex-direction: column;
        align-self: center;
    }
    .services-grid{
        grid-template-columns: 2fr;
    }
    
        .split-image {
        max-height: 200px;
        order: 1;
    }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--bg-white);
    width: 100%;
    text-align: center;
    transition: left 0.3s;
    box-shadow: 0 10px 27px rgba(0,0,0,0.05);
    padding: 2rem 0;
    gap: 1rem;
  }

  .nav-menu.active { 
    left: 0; 
  }

  .hero {
    height: calc(70vh - 70px);
    margin-top: 70px;
  }

  .hero-content h1, .right-text h1 { 
    font-size: 2.2rem; 
  }
  .hero-content p, .right-text p { 
    font-size: 1.1rem; padding: 0 10px; 
  }

  .cta-button, .info-btn { 
    padding: 12px 25px; 
    font-size: 1rem; 
  }

  .slider-dots { 
    bottom: 15px; 
    gap: 8px; 
  }
  .dot { 
    width: 10px; 
    height: 10px; 
  }

  .services, .split-section, .info-panel { 
    padding: 40px 0; 
  }

  .services h2, .split-text h2, .info-text h2 { 
    font-size: 2rem; 
  }

  .services-grid { 
    grid-template-columns: 1fr; gap: 1rem; 
  }

  .service-card { padding: 1.5rem; }

  .split-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }

  .split-image {
    width: 100%;
    display: flex;
    min-width: 350px;
    justify-content: center;
    margin-bottom: 20px
  }

  .split-image img {
    width: 90%; 
    min-width: 300px;
    height: auto;
    display: block;
  }

  .split-section {
    padding-top: 100px;
    padding-bottom: 10px;
  }

  .split-text {
    order: 2;
    padding: 0;
    margin-top: 0px;
  }

  .split-text p { 
    font-size: 1rem; padding: 0 10px; 
  }

  .split-text h2 {
      margin-bottom: 0.5rem; 
  }

  .content-wrapper {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .left-logo {
    flex: none;
    width: 100%;
    padding-right: 0;
  }

  .left-logo img.hero-logo {
    width: 120px;
    height: 120px;
    max-height: 120px;
  }

  .right-text { 
    text-align: center; 
    flex: none; 
  }

  .right-text h1 { 
    font-size: 2.2rem; 
  }

  .hero-content { 
    width: 95%; 
    padding: 0 10px; 
  }

  .info-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .info-text { 
    order: 2; 
  }

  .info-image { 
    order: 1; 
  }

  .info-image img { 
    max-width: 90%; 
  }

  .whatsapp-float {
    width: 50px; 
    height: 50px; 
    bottom: 20px; 
    right: 20px;
  }

  .whatsapp-float img { 
    width: 30px; 
    height: 30px; 
  }

  .container {
    flex: 1 1 45%;
    min-width: 300px;
    padding: 20px;
    background-color: #f1f1f1;
    box-sizing: border-box;
  }

  .service-item { 
    flex-direction: column; 
    text-align: center; 
  }



}


@media (max-width: 480px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .split-image img {
    width: 90%;
    height: auto;
    margin-bottom: 20px;
  }

  .content-wrapper {
    flex-direction: column;
    transform: none;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .left-logo img.hero-logo {
    width: 120px;
    height: 120px;
  }

  .right-text h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .right-text p {
    font-size: 1rem;
  }

  .cta-button,
  .info-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .split-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem; 
    width: 100%;
    padding: 0;
  }

  .split-image {
    width: 100%;
    text-align: center;
  }

  .split-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: auto;
  }

  .split-text {
    width: 100%;
    padding: 0 1rem;
    text-align: justify;
  }

  .split-text h2 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 0.3rem;
    margin-top: 0;
  }

  .split-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-top: 0.3rem;
  }

  .maps-section .map-container {
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1rem;
    width: 90%;       
    max-width: 90vw;   
    overflow-x: hidden;
  }

  .maps-section .map-link {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
  }

  .maps-section iframe {
    width: 80%;
    height: 250px;
    border: 0;
    border-radius: 8px;
  }

  .cta-button {
    padding: 6px 14px;
    font-size: 0.8rem;
    border-radius: 20px;
  }

  section .container {
    flex: 1 1 45%;
    min-width: 300px;
    padding: 20px;
    background-color: #ffffff;
    box-sizing: border-box;
  }

  footer .container {
    background: none;
    background-color: transparent;
    padding: 0;
  }

  .footer {
    background: var(--bg-footer, #0c1a2e);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    padding-top: 100px;
  }

  .footer img.logo {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
  }
}





a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

.infinite-gallery {
  overflow: hidden;
  width: 100%;
  background: #f8f8f8;
  padding: 20px 0;
  margin-bottom: 50px;
}

.gallery-track {
  display: flex;
  width: max-content; 
  animation: scroll 20s linear infinite; 
}

.gallery-track img {
  width: 150px;    
  height: 150px;   
  object-fit: cover;
  margin-right: 10px;
  border-radius: 10px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}


.maps-section {
  display: flex;
  justify-content: center;
  gap: 20px; 
  flex-wrap: wrap;
  padding: 40px 0;
}

.map-container {
  display: flex;
  align-items: center;
  gap: 30px; 
  justify-content: center;
}

.map-link {
  width: 100%;
  max-width: 600px; 
  display: block;
  position: relative;
}

.map-link iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 10px;
}

.map-link:hover {
  transform: scale(1.05); 
}

.map-link iframe {
  width: 100%;
  height: 300px;
  display: block;
  pointer-events: none; 
}

.map-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: #fff;
  font-weight: bold;
  text-align: left;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.list{
    text-align: justify;
    list-style-type: inside;
    padding-right: 10px;
}

.cont{
    text-align: justify;
    font-weight: bold;
}

.con{
    text-align: justify;
}

ul.list{
    list-style-type: disc;
    padding-left: 20px;
}

ul.list.li{
    margin-bottom: 0.5px;
}

.services h4{
    max-width: 900px;
    text-align: center;
    margin: 0 auto 20px auto;
}

.pluit{
    text-align: justify;
}

h2.p{
    color: white;
}



.footer hr {
  width: 80%;           
  max-width: 600px;     
  margin: 20px auto;
  border: 0;
  border-top: 1px solid #ccc;
  opacity: 0.8;
}



.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}


.split-product {
  flex: 1 1 50%;
  text-align: right;
  display: flex;
  justify-content: flex-start;
}


.split-product img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  max-width: 700px;
  margin-left: 20px;
}

.split-image {
    flex: 1;
    height: auto;
    width: 20%;
    max-height: 200px; 
}



   .card-container {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        display: grid;
        gap: 30px;
        max-width: 1100px;
        margin: auto;
        padding: 20px;
        align-items: stretch;
      }

    .card {
      background-color: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-6px);
    }

    .card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .card img:hover {

        transform: translate3d(-3px)
    }

    .card-content {
      padding: 20px 24px;
    }

    .card-title {
      color: #000000;
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .card-text {
      font-size: 15px;
      line-height: 1.6;
      color: #444;
      margin-bottom: 18px;
      text-align: justify;
    }

    .card-link {
      text-decoration: none;
      color: #000000;
      font-weight: 600;
      font-size: 14px;
      transition: color 0.2s;
    }

    .card-link:hover {
      color: #1c8b82;
    }

    .contact-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
}

.contact-section .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: auto;
  max-width: 500px;
}



.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #000000;
  outline: none;
  box-shadow: 0 0 5px rgba(28, 139, 130, 0.2);
}

.contact-btn {
  background: white; 
  border: 1px solid #000; 
  border-radius: 25px;
  color: #000;
  padding: 10px 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px; 
  text-decoration: none;
  transition: all 0.3s ease;
  margin: auto;
}

.contact-btn:hover {
  background-color: #000000;
}

@media (max-width: 600px) {
  .contact-title {
    font-size: 26px;
  }

  .contact-subtitle {
    font-size: 14px;
  }

    footer .container {
    background: none;
    background-color: transparent;
    padding: 0;
  }

  .footer {
    background: var(--bg-footer, #0c1a2e);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    padding-top: 100px;
  }

  .footer img.logo {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
  }
}

.dropdown {
  position: relative;
}

.dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--bg-white);
  top: 100%;
  left: 0;
  min-width: 150px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
  z-index: 999;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content li a {
  color: #333;
  padding: 8px 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}

.dropdown-content li a:hover {
  background-color: #f5f5f5;
}

.flag-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.dropdown:hover .dropdown-content {
  display: block;
}

