* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.navbar {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
    height: 140px;
    margin-top: -10px;
    background: linear-gradient(
        90deg,
        rgba(245,245,245,0.82) 0%,
        rgba(231,228,230,0.82) 18%,
        rgba(172,170,175,0.82) 38%,
        rgba(206,155,74,0.82) 72%,
        rgba(121,77,38,0.88) 100%
    );
    backdrop-filter: blur(18px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255,255,255,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.25);
    transition:
        transform 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
    z-index: 999;
}

.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 20%,
        rgba(255,255,255,0.22) 50%,
        transparent 80%
    );
    transform: skewX(-25deg);
    animation: luxuryShine 7s ease-in-out infinite;
    pointer-events: none;
}

@keyframes luxuryShine {

    0%{
        left: -140%;
    }

    100%{
        left: 160%;
    }

}

.nav-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {

    width: 200px;
    height: 200px;
    margin-top: 18px;
    object-fit: contain;
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-6px);
    }

    100%{
        transform: translateY(0px);
    }

}


.logo-title h1 {
    margin: 0;
    font-size: 32px;
    color: #6b3e26;
    font-weight: 700;
}

.logo-title span {
    font-size: 15px;
    color: #aa5c31;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-right: 10px;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #4d1700;
    font-size: 20px;
    font-weight: 500;
    transition:
        color 0.4s ease,
        transform 0.4s ease;
}


.nav-links a:hover{
    color: #d2691e;
    transform: translateY(-2px);
}

.nav-links a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background: #d2691e;
    transition: width 0.4s ease;
}

.nav-links a:hover::after{
    width: 100%;
}

.nav-links .btn {
    position: relative;
    overflow: hidden;
    background:
    linear-gradient(
        135deg,
        #d2691e,
        #b45309
    );
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.nav-links .btn:hover{
    transform: translateY(-4px);
    box-shadow:
    0 12px 25px rgba(210,105,30,0.35);
    color: white;
}

.map-embed {
    width:150px;
    height:120px;
    border-radius:18px;
    overflow:hidden;
    margin-right:100px;
    margin-top:10px;
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
    box-shadow:
    0 10px 25px rgba(0,0,0,0.12);
}

.map-embed:hover{
    transform:
    translateY(-6px)
    scale(1.03);
    box-shadow:
    0 18px 40px rgba(0,0,0,0.18);
}

.map-embed iframe{
    width:100%;
    height:100%;
}

.navbar{
    animation: navbarReveal 1.2s ease forwards;
}

@keyframes navbarReveal{

    from{
        opacity: 0;
        transform: translateY(-30px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

.nav-links span{
    font-size: 19px;
    font-weight: 600;
    color: #4b2e2e;
    padding: 10px 18px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.nav-links span:hover{
    transform: translateY(-2px);
}

.about-page{
  width:100%;
  overflow:hidden;
}

.section-tag{
  color:#b88b52;
  letter-spacing:4px;
  font-size:18px;
  margin-bottom:20px;
  font-weight:600;
}

.light{
  color:#c69a62;
  font-size: 25px;
}

.divider{
  width:120px;
  height:2px;
  background:#b88b52;
  margin:25px 0;
}

.journey-section{
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:60px;
  padding:100px 80px;
  background:#f7f1e8;
}

.journey-left h2{
    font-size: 75px;
    line-height: 1.1;
    font-weight: 300;
    color: #1f1f1f;
    margin-bottom: 30px;
    font-family: serif;
}

.journey-left h2 span{
  color:#b88b52;

}

.journey-left p{
  color:#555;
  line-height:2;
  font-size: 20px;
  margin-bottom:24px;
}

.journey-right{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.journey-card{
  text-align:center;
}

.journey-card img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.number{
  display:inline-block;
  background:#1f140d;
  color:#d2a06c;
  padding:10px 16px;
  margin-top:-5px;
  position:relative;
  font-family:'Cormorant Garamond',serif;
  font-size:24px;
}

.journey-card h4{
  margin:25px 0 15px;
  font-size:13px;
  letter-spacing:2px;
}

.journey-card p{
  font-size:18px;
  line-height:1.8;
  color:#666;
}

.journey-left h2,
.journey-left p,
.journey-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-card img {
    transform: scale(1.1);
    transition: transform 1s ease;
}

.journey-section.active .journey-left h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.journey-section.active .journey-left p {
    opacity: 1;
    transform: translateY(0);
}

.journey-section.active .journey-card {
    opacity: 1;
    transform: translateY(0);
}

.journey-section.active .journey-card:nth-child(1) { transition-delay: 0.1s; }
.journey-section.active .journey-card:nth-child(2) { transition-delay: 0.2s; }
.journey-section.active .journey-card:nth-child(3) { transition-delay: 0.3s; }
.journey-section.active .journey-card:nth-child(4) { transition-delay: 0.4s; }

.journey-section.active .journey-card img {
    transform: scale(1);
}

.number {
    transition: transform 0.4s ease;
}

.journey-card:hover .number {
    transform: translateY(-6px);
}

.stats-section{
  background:linear-gradient(to right,#120c08,#2d1c12);
  color:white;
  padding:60px 50px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:30px;
  text-align:center;
}

.stat-box h2{
  color:#d2a06c;
  font-size:60px;
  margin-bottom:10px;
}

.stat-box h5{
  letter-spacing:2px;
  margin-bottom:15px;
}

.stat-box p{
  color:#ccc;
  line-height:1.8;
  font-size: 18px;
}

.stat-box h2,
.stat-box h5,
.stat-box p {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-box h2 {
    transform: translateY(40px) scale(0.9);
}

.stats-section.active .stat-box h2 {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.1s;
}

.stats-section.active .stat-box h5 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.stats-section.active .stat-box p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.stat-box {
    transition: transform 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-6px);
}

.stats-section.active .stat-box h2 {
    animation: popIn 0.8s ease forwards;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.85);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}   

.values-section{
  padding:100px 80px;
  text-align:center;
  background:#f7f1e8;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:30px;
  margin-top:60px;
}

.value-card{
  border-right:1px solid #d8c8b7;
  padding:10px 20px;
}

.value-card:last-child{
  border-right:none;
}

.value-card h4{
  margin-bottom:18px;
  letter-spacing:2px;
  font-size:20px;
}

.value-card p{
  line-height:1.9;
  color:#666;
  font-size: 18px;
}

.team-section{
  display:grid;
  grid-template-columns:420px 1fr;
  background:#0e0b09;
  color:white;
}

.team-left{
  padding:80px 50px;
}

.team-left h2{
  font-size:60px;
  font-weight:400;
  margin-bottom:20px;
}

.team-left p{
  line-height:2;
  color:#ccc;
  font-size: 20px;
}

.team-left h4{
  color:#c69a62;
  margin-top:30px;
  font-size:28px;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.team-card{
  border-left:1px solid rgba(255,255,255,0.08);
  text-align:center;
  padding-bottom:40px;
}

.team-card img{
  width:100%;
  height:340px;
  object-fit:cover;
  margin-bottom:25px;
}

.team-card h3{
  font-size:18px;
  letter-spacing:2px;
  margin-bottom:10px;
}

.team-card span{
  display:block;
  color:#c69a62;
  margin-bottom:15px;
  font-size: 20px;
}

.team-card p{
  padding:0 20px;
  color:#ccc;
  line-height:1.8;
  font-size: 20px;
}

.team-left h2,
.team-left p,
.team-left h4,
.team-card {
    opacity: 0;
    transform: translateY(70px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card img {
    transform: scale(1.2);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-section.active .team-left h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.team-section.active .team-left p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.team-section.active .team-left h4 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.team-section.active .team-card {
    opacity: 1;
    transform: translateY(0);
}

.team-section.active .team-card:nth-child(1) { transition-delay: 0.2s; }
.team-section.active .team-card:nth-child(2) { transition-delay: 0.35s; }
.team-section.active .team-card:nth-child(3) { transition-delay: 0.5s; }
.team-section.active .team-card:nth-child(4) { transition-delay: 0.65s; }

.team-section.active .team-card img {
    transform: scale(1);
}

.team-card {
    transition: transform 0.5s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card:hover img {
    filter: brightness(1.05);
    transition: 0.4s ease;
}

.values-section h2,
.value-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.value-card {
    transform: translateY(60px);
}

.values-section.active h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.values-section.active .value-card {
    opacity: 1;
    transform: translateY(0);
}

.values-section.active .value-card:nth-child(1) { transition-delay: 0.1s; }
.values-section.active .value-card:nth-child(2) { transition-delay: 0.2s; }
.values-section.active .value-card:nth-child(3) { transition-delay: 0.3s; }
.values-section.active .value-card:nth-child(4) { transition-delay: 0.4s; }
.values-section.active .value-card:nth-child(5) { transition-delay: 0.5s; }

.bottom-section{
  display:grid;
  grid-template-columns:1fr 1fr;
}

.bottom-left {
background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url("images/about.jpg");
  background-size: cover;
  background-position: center;
  min-height: 500px;
  color: white;
  display: flex;
  align-items: center;
  padding: 80px;
}

.bottom-left h2{
  font-size:72px;
  font-weight:400;
  line-height:1.1;
}

.bottom-left p{
  margin-top:30px;
  font-size: 20px;
  line-height:2;
  color:#ddd;
}

.bottom-right{
  background:#f6efe6;
  padding:100px 80px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center;
}

.bottom-right blockquote{
  font-size:30px;
  line-height:1.8;
  font-family:'Cormorant Garamond',serif;
  color:#333;
}

.bottom-right h4{
  margin-top:30px;
  color:#555;
}

.socials{
  margin-top:50px;
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
}

.socials a{
    position: relative;
    text-decoration: none;
    overflow: hidden;
    background:
    linear-gradient(
        135deg,
        #d2691e,
        #b45309
    );
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.socials a:hover{
  background: rgb(161, 96, 11);
  color:white;
}

.bottom-left h2,
.bottom-left p,
.bottom-right blockquote,
.bottom-right h4,
.socials a {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.bottom-section.active .bottom-left h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.bottom-section.active .bottom-left p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.bottom-section.active .bottom-right blockquote {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.bottom-section.active .bottom-right h4 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.bottom-section.active .socials a {
    opacity: 1;
    transform: translateY(0);
}

.bottom-section.active .socials a:nth-child(1) { transition-delay: 0.2s; }
.bottom-section.active .socials a:nth-child(2) { transition-delay: 0.3s; }
.bottom-section.active .socials a:nth-child(3) { transition-delay: 0.4s; }
.bottom-section.active .socials a:nth-child(4) { transition-delay: 0.5s; }

.socials a {
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 1s ease;
}

.socials a:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

@media(max-width:1200px){

  .journey-right,
  .values-grid,
  .team-grid,
  .stats-section{
    grid-template-columns:repeat(2,1fr);
  }

  .journey-section,
  .team-section,
  .bottom-section{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){

  .hero-section,
  .journey-section,
  .values-section,
  .bottom-left,
  .bottom-right{
    padding:50px 25px;
  }

  .hero-content h1{
    font-size:70px;
  }

  .journey-left h2,
  .team-left h2,
  .bottom-left h2{
    font-size:46px;
  }

  .journey-right,
  .values-grid,
  .team-grid,
  .stats-section{
    grid-template-columns:1fr;
  }

  .bottom-right blockquote{
    font-size:24px;
  }
}

.luxury-footer{
    width: 100%;
    background: linear-gradient(
        90deg,
        rgba(245,245,245,0.82) 0%,
        rgba(231,228,230,0.82) 18%,
        rgba(172,170,175,0.82) 38%,
        rgba(206,155,74,0.82) 72%,
        rgba(121,77,38,0.88) 100%
    );
    padding: 100px 8% 40px;
    color: white;
    overflow: hidden;
}


.footer-top{
    display: grid;
    grid-template-columns:
    1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand h1{
    font-size: 52px;
    font-family: serif;
    font-weight: 400;
    color: #000000;
    margin-bottom: 10px;
}

.footer-brand span{
    color: #000000;
    letter-spacing: 3px;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 24px;
}

.footer-brand p{
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.9;
    font-size: 20px;
    max-width: 420px;
}

.footer-links h3,
.footer-contact h3{
    font-size: 24px;
    margin-bottom: 28px;
    color: rgb(0, 0, 0);
}

.footer-links{
    display: flex;
    flex-direction: column;
}

.footer-links a{
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    margin-bottom: 16px;
    font-size: 20px;
    transition: 0.3s ease;
}

.footer-contact p{
    color: rgba(0, 0, 0, 0.7);
    font-size: 20px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.footer-line{
    width: 100%;
    height: 1px;
    background:
    rgba(255,255,255,0.12);
    margin-bottom: 35px;
}

.footer-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p{
    color: rgba(0, 0, 0, 0.6);
    font-size: 20px;
}

.footer-socials{
    display: flex;
    gap: 25px;
}

.footer-socials a{
    color: rgba(0, 0, 0, 0.7);
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s ease;
}

@media(max-width:1100px){

    .footer-top{
        grid-template-columns:
        repeat(2,1fr);
    }

}

@media(max-width:700px){

    .footer-top{
        grid-template-columns: 1fr;
    }

    .footer-brand h1{
        font-size: 40px;
    }

    .footer-bottom{
        flex-direction: column;
        text-align: center;
    }

}