
/* Navigation */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-dark);
  z-index: 1000;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.nav-logo {
  display: block;
  height: 54px;
}

.nav-logo img {
  height: 100%;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}


.nav-menu a {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 1.5px;
  font-weight: 400;
  transition: opacity var(--transition-base);
   margin-bottom: 5px;
}

.nav-menu a:hover {
  opacity: 0.6;
  border-bottom: 2px solid #C5A065;

}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-text-light);
  display: block;
}

/* Hero Section */
.hero {
  padding-top: 250px;
  min-height: 100vh;
}

.hero .container {
  max-width: var(--container-max-width);
}

.hero-title {
  font-family: var(--font-family-heading);
  font-size: 104px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 40px 0;
  color: var(--color-text-light);
  letter-spacing: -1px;
  z-index: 10;
  position: relative;
  width: 1000px;
}
.hero-subtitle {
  font-size: 24px;
  line-height: 1.9;
  color: var(--color-text-gray);
  max-width: 650px;
  font-weight: 300;
  z-index: 5;
  position: relative;
}

/* Introduction */
.intro {
  padding: 250px 0 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.intro-title {
  font-size: 24px;
  font-weight: 400;
  color: #b8945f;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.intro p {
  font-size: 24px;
  line-height: 1.9;
  color: var(--color-text-gray);
  margin-bottom: 25px;
  max-width: 900px;
  font-weight: 300;
}

.intro p:last-child {
  margin-top: 40px;
  font-style: italic;
  color: var(--color-text-gray);
}

/* Video Section */
.video-section {
  padding: 0;
  margin: 0;
}

.video-player {
  position: relative;
  width: 100%;
  /*height: 60vh;*/
  min-height: 400px;
  overflow: hidden;
  display: flex;
justify-content: center;
align-items: center;

}

.video-thumbnail {
  /*width: 100%;*/
  /*height: 100%;*/
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  padding: 15px 35px;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.3);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 1);
}

.play-button svg {
  width: 24px;
  height: 24px;
}

.play-text {
  color: white;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 400;
}

/* Expertise Section */
.expertise {
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* First section on services page */
body .expertise:first-of-type {
  padding-top: 250px;
  border-top: none;
}

.section-title {
  font-family: var(--font-family-heading);
  font-size: 54px;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--color-text-light);
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 24px;
  line-height: 1.9;
  color: #999999;
  margin-bottom: 80px;
  font-weight: 300;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 100px;
}

.expertise-card {
  padding: 0;
}

.card-icon {
  width: 60px;
  height: 8px;
  background: #C5A065;
  margin-bottom: 25px;
}

.expertise-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-text-light);
  letter-spacing: -0.3px;
  line-height: 1.4;
}

.expertise-card p {
  font-size: 24px;
  line-height: 1.8;
  color: #999999;
  font-weight: 300;
}

.world-map {
  margin-top: 80px;
}

.map-image {
  width: 100%;
  display: block;
  border-radius: 0;
}

/* Works Section */
.works {
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* First section on experience page */
body .works:first-of-type {
  padding-top: 250px;
  border-top: none;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.work-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
  padding: 40px 35px;
}

.work-card:hover {
  transform: translateY(-5px);
  border-color: #C5A065;
  background: rgba(255, 255, 255, 0.02);
  p{
 border-color: #FFF;
  color: #FFF;
}
}

.work-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.work-client {
  font-size: 18px;
  letter-spacing: 1.5px;
  color: #b8945f;
  margin-bottom: 20px;
  font-weight: 400;
}

.work-card h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: var(--color-text-light);
  letter-spacing: -0.3px;
  line-height: 1.3;
}
.work-content img{
    max-width: 100%;
    height: 200px;
    object-fit: cover;
}
.work-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #999999;
  margin: 0 0 30px 0;
  font-weight: 300;
  flex-grow: 1;
}
/*.work-card p:hover {*/
/*  border-color: #FFF;*/
/*  color: #FFF;*/
/*}*/


.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.work-tags span {
  font-size: 16px;
  color: #999999;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 300;
  letter-spacing: 0.3px;
  transition: all var(--transition-base);
}

.work-card:hover .work-tags span {
  border-color: #C5A065;
  color: #C5A065;
}

/* About Section */
.about {
  padding: 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-bg {
  /*background-image: url('../assets/images/home-img3.png');*/
  /*background-size: cover;*/
  /*background-position: center;*/
  /*padding: 120px 0;*/
  /*position: relative;*/
  background-size: 1920px 960px; 
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  padding: 120px 0;
  position: relative;
}

.about-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.about-bg .container {
  position: relative;
  z-index: 1;
  max-width: var(--container-max-width);
}

.about-content {
  max-width: 800px;
  padding: 25px;
  background-Color: #000000bd;
}

.about-subtitle {
  font-size: 26px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 40px;
  font-weight: 400;
}

.about p {
  font-size: 24px;
  /*line-height: 2;*/
  color: #cccccc;
  margin-bottom: 25px;
  font-weight: 300;
}

.about p strong {
  color: var(--color-text-light);
  font-weight: 600;
}

/* CTA Section */
.cta {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.cta .container {
  text-align: center;
}

.cta h2 {
  font-family: var(--font-family-heading);
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 35px;
  color: var(--color-text-light);
  letter-spacing: -0.5px;
}

.email-link {
  font-size: 18px;
  color: var(--color-text-light);
  text-decoration: underline;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--transition-base);
  /*font-weight: 300;*/
}

.email-link:hover {
  border-bottom-color: var(--color-text-light);
}

/* Footer */
.footer {
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
  font-size: 11px;
  color: #666666;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Philosophy Page */
.philosophy-title {
  padding: 250px 0 0;
  background: var(--color-bg-dark);
}

.philosophy-title .hero-title {
  margin: 0;
}

.philosophy-hero {
  padding: 0;
  margin: 0;
}

.philosophy-bg {
  background-image: url('../assets/images/PHILOSOPHY.png');
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  position: relative;
  padding: 60px 0 100px;
}

.philosophy-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.philosophy-bg .container {
  position: relative;
  z-index: 1;
}

.philosophy-bg .hero-subtitle {
  margin: 0;
}

/* Active nav link */
.nav-menu a.active {
  opacity: 1;
  border-bottom: 1px solid var(--color-text-light);
  padding-bottom: 2px;
}
