
*{margin:0;padding:0;box-sizing:border-box;font-family:'Georgia',serif}

/* HERO + HEADER */
.hero{
  min-height:420px;
  background:url('assets/hero.jpg') center/cover no-repeat;
  position:relative;
}
.hero.home{
  min-height:100vh;
}
.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(0,0,0,.35),rgba(0,0,0,.25));
}

/* HEADER ON HERO */
.header{
  position:absolute;
  top:0;left:0;
  width:100%;
  padding:26px 80px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:5;
}
.header img{
  height:100px; /* increased logo size */
  filter:drop-shadow(0 6px 10px rgba(0,0,0,.35));
}
.menu a{
  margin-left:30px;
  color:#ffffff;
  text-decoration:none;
  font-size:20px;
}
.menu a:hover,.menu a.active{
  border-bottom:3px solid #c9a13a;
}

/* HOME HERO CONTENT */
.hero-content{
  position:relative;
  z-index:3;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#ffffff;
  padding:0 20px;
}
.hero-content h1{
  font-size:58px;
  letter-spacing:2px;
}
.hero-content p{
  margin-top:14px;
  font-size:22px;
  max-width:620px;
}
.btn{
  margin-top:26px;
  background:#c9a13a;
  color:#fff;
  padding:14px 38px;
  border-radius:30px;
  text-decoration:none;
}

/* INNER PAGE CONTENT */
.section{
  padding:120px 90px;
  background:#fff;
}
.section h2{
  font-size:42px;
  margin-bottom:20px;
  color:#1f3d2b;
}

/* WHATSAPP */
.whatsapp{
  position:fixed;right:25px;bottom:25px;
  background:#25d366;color:#fff;
  width:60px;height:60px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:30px;text-decoration:none;
}

/* MOBILE */
@media(max-width:768px){
  .header{padding:18px 22px}
  .header img{height:70px}
  .menu a{margin-left:18px;font-size:16px}
  .hero-content h1{font-size:40px}
  .hero-content p{font-size:18px}
}

.section {
    padding: 40px 20px;
}

.contact-item {
    margin-bottom: 20px;   /* space between address, phone, email */
    line-height: 1.6;
}


.lux-process {
    padding: 90px 20px;
    background: linear-gradient(180deg, #ffffff, #f3f5f1);
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.lux-process h2 {
    font-size: 38px;
    color: #243024;
    font-weight: 700;
    margin-bottom: 15px;
}

.lux-flow {
    font-size: 18px;
    color: #8aa04f;
    letter-spacing: 1px;
    margin-bottom: 70px;
}

.lux-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.lux-card {
    background: #ffffff;
    padding: 45px 30px;
    border-radius: 22px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.lux-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, #b6c76b, #e6e9d8);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

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

.lux-card:hover::before {
    opacity: 1;
}

.lux-icon {
    font-size: 46px;
    display: inline-block;
    margin-bottom: 20px;
}

.lux-card h3 {
    font-size: 22px;
    color: #243024;
    margin-bottom: 12px;
}

.lux-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}


.about-royal-full {
    padding: 140px 15px;
    background: linear-gradient(160deg, #fdfaf4 0%, #f3f1e6 100%);
    position: relative;
    overflow: hidden;
}

.about-royal-full::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: rgba(198,168,91,0.08);
    border-radius: 50%;
    z-index: 0;
}

.about-royal-full::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(142,116,53,0.06);
    border-radius: 50%;
    z-index: 0;
}

.about-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInRoyal 1.4s ease-out;
}

.tagline {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8a7c42;
    margin-bottom: 18px;
    font-weight: 500;
}

.about-content h2 {
    font-size: 46px;
    font-weight: 700;
    color: #2a321f;
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
}

.about-content h2::after {
    content: "";
    display: block;
    width: 110px;
    height: 4px;
    background: linear-gradient(90deg, #c6a85b, #8e7435);
    margin: 20px auto 0;
    border-radius: 2px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.95;
    color: #4a4a4a;
    margin-bottom: 22px;
}

/* Fade-in animation */
@keyframes fadeInRoyal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
