* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #050607;
  --secondary-color: #c9a961;
  --accent-color: #34495e;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --border-color: #e1e8ed;
  --spacing-unit: 8px;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  font-size: 15.5px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

p {
  line-height: 1.8;
  margin-bottom: 20px;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
  color: #b89850;
}

.logo-tagline {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Bar Layout */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 45px;
  display: flex;
  background-color: #fff;
  z-index: 1002;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  transition: top 0.3s ease;
}

.top-bar.scrolled {
  top: -45px;
}

.tb-col {
  height: 100%;
}

.tb-left {
  background-color: #00AEEF;
  width: 15%;
  transform: skewX(25deg);
  margin-left: -3%;
  border-right: 4px solid #fff;
  border-bottom-right-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.tb-center {
  background-color: #125965;
  flex-grow: 1;
  transform: skewX(25deg);
  border-right: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 8px;
}

.tb-right {
  background-color: #00AEEF;
  width: 35%;
  transform: skewX(25deg);
  margin-right: -3%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 8px;
}

.tb-content-left {
  transform: skewX(-25deg);
  display: flex;
  padding-right: 20px;
}

.tb-content-center {
  transform: skewX(-25deg);
  display: flex;
  gap: 30px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.tb-content-right {
  transform: skewX(-25deg);
  display: flex;
  gap: 25px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.tb-content-center a,
.tb-content-right a,
.tb-content-left a,
.tb-lang,
.tb-address {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.tb-content-center a:hover,
.tb-content-right a:hover,
.tb-content-left a:hover,
.tb-lang:hover,
.tb-address:hover {
  opacity: 0.8;
}

.tb-content-center i,
.tb-content-right i,
.tb-content-left i,
.tb-address i {
  font-size: 15px;
}

.tb-lang {
  cursor: pointer;
}

.tb-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.tb-social i {
  font-size: 16px !important;
}

nav {
  position: fixed;
  top: 45px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

nav.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

@media (max-width: 1200px) {

  .tb-left,
  .tb-center,
  .tb-right {
    transform: none;
    width: auto;
    flex-basis: auto;
    flex-grow: 1;
    margin: 0;
    border: none;
    border-radius: 0;
    justify-content: center;
  }

  .tb-content-left,
  .tb-content-center,
  .tb-content-right {
    transform: none;
    padding: 0;
    gap: 15px;
  }

  .tb-right {
    display: none;
    /* Hide address on tablet to save space */
  }

  .tb-left {
    padding-left: 20px;
    justify-content: flex-start;
  }

  .tb-center {
    justify-content: flex-end;
    padding-right: 20px;
  }

  .tb-content-center {
    gap: 15px;
  }
}

@media (max-width: 968px) {
  .top-bar {
    display: none;
  }

  nav {
    top: 0;
  }
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navbar Logo Container */
.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-logo {
  height: 45px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding-top: 5px;
  gap: 10px;
}

.logo-text .color-orange {
  color: #F7931E;
}

.logo-text .color-blue {
  color: #00AEEF;
}

/* WhatsApp and Call Floating Buttons - Mobile Optimized */
.whatsapp-float,
.call-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.whatsapp-float {
  right: 25px;
  background-color: #25D366;
  bottom: 25px;
}

.call-float {
  right: 25px;
  background-color: #34b7f1;
  bottom: 100px;
}

.whatsapp-float:hover,
.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-link,
.call-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  position: relative;
}

.whatsapp-link i,
.call-link i {
  font-size: 28px;
}

.whatsapp-tooltip,
.call-tooltip {
  position: absolute;
  right: 70px;
  bottom: 50%;
  transform: translateY(50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-tooltip:after,
.call-tooltip:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
  left: auto;
}

.whatsapp-float:hover .whatsapp-tooltip,
.call-float:hover .call-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {

  .whatsapp-float,
  .call-float {
    width: 50px;
    height: 50px;
  }

  .whatsapp-float {
    right: 20px;
    bottom: 20px;
  }

  .call-float {
    right: 20px;
    bottom: 85px;
  }

  .whatsapp-link i,
  .call-link i {
    font-size: 24px;
  }

  .whatsapp-tooltip,
  .call-tooltip {
    font-size: 12px;
    padding: 6px 10px;
    right: 60px;
  }
}

@media (max-width: 480px) {

  .whatsapp-float,
  .call-float {
    width: 45px;
    height: 45px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
  }

  .call-float {
    right: 15px;
    bottom: 75px;
  }

  .whatsapp-link i,
  .call-link i {
    font-size: 22px;
  }

  .whatsapp-tooltip,
  .call-tooltip {
    font-size: 11px;
    padding: 5px 8px;
    right: 55px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-text {
    font-size: 1.2rem;
  }

  .nav-logo {
    width: 150px;
    height: 40px;
  }
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.active a {
  color: #00AEEF;
}

.nav-links a:hover {
  color: #00AEEF;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Slider Styles */
.hero-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: var(--primary-color);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.05);
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.slide .hero-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  transition-delay: 0.3s;
  max-width: 800px;
  padding: 24px;
}

.slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.slider-controls button {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  pointer-events: auto;
  backdrop-filter: blur(4px);
}

.slider-controls button:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: scale(1.1);
}

.slider-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 30px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--secondary-color);
  width: 40px;
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}

.cta-button {
  display: inline-block;
  padding: 16px 48px;
  background: var(--secondary-color);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
}

.cta-button:hover {
  background: #b89850;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

.about-section {
  padding: 100px 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 {
  font-size: 42px;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.about-text p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-item {
  text-align: center;
  padding: 24px;
  background: var(--light-bg);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
}

.feature-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.feature-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.about-image {
  position: relative;
  height: 100%;
  min-height: 500px;
  border-radius: 12px;
  z-index: 1;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background-color: var(--secondary-color);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.15;
}

.about-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid var(--secondary-color);
  border-radius: 12px;
  z-index: -1;
}

.about-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
  transform: scale(1.03);
}

/* Premium Section Tag */
.section-tag {
  color: var(--secondary-color);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: inline-block;
  padding: 8px 18px;
  background: rgba(201, 169, 97, 0.1);
  border-radius: 30px;
  border-left: 3px solid var(--secondary-color);
}

.text-left {
  text-align: left;
}

/* Floating Experience Badge */
.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 25px 35px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 4px solid var(--secondary-color);
  z-index: 5;
  animation: floatBadge 6s ease-in-out infinite;
}

.exp-number {
  font-size: 42px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--secondary-color);
  line-height: 1;
}

.exp-text {
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

@keyframes floatBadge {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 768px) {
  .experience-badge {
    bottom: 10px;
    right: 10px;
    padding: 15px 20px;
  }

  .exp-number {
    font-size: 32px;
  }

  .exp-text {
    font-size: 12px;
  }
}

.services-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.section-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 64px;
  font-size: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--light-bg);
}

.service-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-card h3 {
  padding: 30px 30px 15px;
  font-size: 24px;
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
}

.service-card p {
  padding: 0 30px 25px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0 30px 35px;
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: auto;
  padding-top: 25px;
}

.service-features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  transition: color 0.3s ease;
}

.service-features li:hover {
  color: var(--primary-color);
}

.service-features li:last-child {
  margin-bottom: 0;
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--secondary-color);
  font-size: 14px;
  background: rgba(201, 169, 97, 0.15);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.portfolio-section {
  padding: 100px 0;
  background: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: var(--white);
  padding: 60px 24px 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-overlay h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.portfolio-overlay p {
  font-size: 14px;
  opacity: 0.9;
}

.contact-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 64px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.info-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.info-item p {
  color: var(--text-light);
  line-height: 1.8;
}

.info-item a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: var(--primary-color);
}

/* Premium Contact Form Design */
.form-container {
  background: var(--white);
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--secondary-color);
}

.success-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  text-align: center;
  animation: fadeIn 0.6s ease;
  padding: 40px 20px;
}

.success-icon {
  font-size: 64px;
  color: #22c55e;
  margin-bottom: 24px;
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-message h2 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.success-message p {
  color: var(--text-light);
  font-size: 16px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
  }

  80% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* Premium Contact Form Design */
.contact-form {
  position: relative;
  width: 100%;
}

.form-header {
  margin-bottom: 30px;
  text-align: left;
}

.form-header h2 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.form-header p {
  color: #666;
  font-size: 15px;
  margin-bottom: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: #4b5563;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background-color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a1a1aa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.select-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-color);
  pointer-events: none;
}

.submit-button {
  width: auto;
  min-width: 200px;
  padding: 18px 32px;
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 15px rgba(201, 169, 97, 0.2);
}

.submit-button i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.submit-button:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.submit-button:hover i {
  transform: translateX(4px) translateY(-4px);
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 30px 20px;
  }
}

.footer {
  background: linear-gradient(rgba(5, 6, 7, 0.92), rgba(5, 6, 7, 0.98)), url('./assets/ai_solar_bg_new.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 80px 0 24px;
  position: relative;
  border-top: 4px solid var(--secondary-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--secondary-color);
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--secondary-color);
}

.footer-section a {
  color: var(--secondary-color);
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 32px 0;
    gap: 24px;
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 32px;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .contact-form {
    padding: 24px;
  }

  .portfolio-item {
    height: 300px;
  }
}


html {
  scroll-behavior: smooth;
}


.page-header {
  height: 50vh;
  min-height: 400px;
  background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)),
    url('./assets/ni.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 70px;
}

.header-content h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 16px;
  font-weight: 700;
}

.header-content p {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  opacity: 0.9;
}

.mission-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.mission-item {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid transparent;
}

.mission-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid var(--secondary-color);
}

.mission-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: rgba(201, 169, 97, 0.1);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.4s ease;
}

.mission-item:hover .mission-icon {
  background: var(--secondary-color);
  color: var(--white);
  transform: scale(1.1);
}

.mission-item h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.mission-item p {
  color: var(--text-light);
  line-height: 1.8;
}

.team-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.team-member.modern-card {
  text-align: center;
  transition: all 0.4s ease;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.team-member.modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-image-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}

.member-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  transition: transform 0.5s ease;
}

.team-member.modern-card:hover .member-image-wrapper img {
  transform: scale(1.08);
}

.member-info {
  padding: 30px 24px;
}

.member-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-weight: 700;
}

.member-role {
  font-size: 14px;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  padding: 6px 12px;
  background: rgba(201, 169, 97, 0.1);
  border-radius: 20px;
}

.member-info p:last-child {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* Team Social Icons on Hover */
.team-socials {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 20px 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.member-image-wrapper:hover .team-socials {
  bottom: 0;
}

.team-socials a {
  width: 40px;
  height: 40px;
  background: var(--white);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.member-image-wrapper:hover .team-socials a {
  transform: translateY(0);
  opacity: 1;
}

.member-image-wrapper:hover .team-socials a:nth-child(1) {
  transition-delay: 0.1s;
}

.member-image-wrapper:hover .team-socials a:nth-child(2) {
  transition-delay: 0.2s;
}

.member-image-wrapper:hover .team-socials a:nth-child(3) {
  transition-delay: 0.3s;
}

.team-socials a:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-5px) !important;
  box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

.service-features {
  list-style: none;
  padding: 0 24px 24px;
}

.service-features li {
  color: var(--text-light);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.process-section {
  padding: 120px 0;
  background: #f8f9fc;
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .process-step:not(:last-child)::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: -24px;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--secondary-color);
    opacity: 0.5;
    z-index: 1;
  }
}

.process-step {
  text-align: center;
  padding: 50px 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  transform: translateY(-10px);
}

.step-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: rgba(201, 169, 97, 0.08);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(201, 169, 97, 0.3);
  position: relative;
}

.process-step h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.process-step p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
}

.cta-section {
  padding: 120px 0;
  background: linear-gradient(rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.85)),
    url('./assets/ai_cta_bg.png') center/cover no-repeat fixed;
  text-align: center;
  color: var(--white);
  position: relative;
}

.cta-section h2 {
  font-size: 48px;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.85;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.testimonials-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary-color);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.quote-icon {
  font-size: 60px;
  color: var(--secondary-color);
  opacity: 0.1;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 0;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.testimonial-card p {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 30px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.1);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-info strong {
  color: var(--primary-color);
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.author-info span {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.map-section {
  padding: 80px 0;
  background: var(--white);
}

.map-container {
  margin-top: 48px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--primary-color);
}



.contact-form select {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.contact-form select:focus {
  outline: none;
  border-color: var(--secondary-color);
}

@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 32px;
  }

  /* Lightbox Styles */
  #lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
  }

  .lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    position: relative;
    text-align: center;
  }

  .lightbox-image {
    width: auto;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    animation: zoomIn 0.3s;
  }

  .lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
  }

  .lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
  }

  .lightbox-close:hover,
  .lightbox-close:focus {
    color: var(--secondary-color);
    text-decoration: none;
    cursor: pointer;
  }

  .lightbox-prev,
  .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2001;
  }

  .lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  .lightbox-prev:hover,
  .lightbox-next:hover {
    background-color: var(--secondary-color);
  }

  @keyframes zoomIn {
    from {
      transform: scale(0)
    }

    to {
      transform: scale(1)
    }
  }

  @media only screen and (max-width: 700px) {
    .lightbox-content {
      width: 100%;
    }

    .lightbox-prev,
    .lightbox-next {
      padding: 10px;
      font-size: 16px;
    }
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}