.app-mockup{
    margin: 100px 0px 25px 0px;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.app-mockup .background-blobs{
    position: absolute;
    width: 50%;
    height: 70%;
    z-index: -1;
    background: radial-gradient(circle at center, #d1eaf4 0%, #f6d4e9 50%, #e0f0e4 100%);
    pointer-events: none;
    border-radius: 40%;
    filter: blur(30px);
}
.app-mockup .content{
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.app-mockup .content img{
    width: 80%;
    height: auto;
}
.app-mockup .content img.mob-moc{
    display: none;
}
.hero-section{
    /* margin: 25px 0px; */
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-section .background-blobs{
    position: absolute;
    width: 50%;
    height: 50%;
    z-index: -1;
    background: radial-gradient(circle at center, #fce4ec 0%, #ffffff 50%, #d0f0e0 100%);
    pointer-events: none;
    border-radius: 40%;
    filter: blur(20px);
}
.hero-section .content{
  text-align: center;
  z-index: 1;
}
.hero-section .content h1{
    margin: 20px 0px;
    text-align: center;
    font-size: 40px;
}
.hero-section .content h2{
    text-align: center;
    font-weight: lighter;
}
.hero-section .content button{
    margin: 20px 0px;
    padding: 15px 30px;
    border-radius: 100px;
    border: 5px solid #000000;
    color: #000000;
    background: none;
    font-weight: 500;
    font-size: medium;
    cursor: pointer;
    transition: ease .3s;
}
.hero-section .content button:hover{
    color: #ffffff;
    background-color: #000000;
}
.content-section{
    margin: 50px 0px;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content-section .content{
  text-align: center;
}
.content-section .content h2{
    margin: 50px 0px;
    font-size: 40px;
}
.aim-section{
    background-color: #000000;
}
.aim-section .content{
  color: white;
}
.aim-section .content h3{
    font-weight: 300;
}
.luxury-timeline {
    background: #000000;
    color: #f5f5f5;
    padding: 80px 20px;
    position: relative;
}

.section-title-o {
  text-align: center;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.section-subtitle-o {
  text-align: center;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 50px;
}

.timeline {
  max-width: 800px;
  margin: auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(212, 175, 55, 0.3);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  position: relative;
}

.timeline-icon {
  /* background: linear-gradient(145deg, #d4af37, #b8860b); */
  background: white;
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 0 10px rgba(212, 175, 55, 0.5); */
  box-shadow: 0 0 10px #ffffff3e;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-content {
  background: rgba(20, 20, 20, 0.9);
  padding: 20px 25px;
  border-radius: 10px;
  margin-left: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.timeline-content h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
    text-align: justify;
    hyphens: auto;
}

/* Call to Action */
.cta-container {
  text-align: center;
  margin-top: 40px;
}

.luxury-btn {
  /* background: linear-gradient(145deg, #d4af37, #b8860b); */
  background: #fff;
  color: #0d0d0d;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  border: 5px solid #fff;
  transition: all 0.3s ease;
}

.luxury-btn:hover {
  background: #0d0d0d;
  color: #fff;
}

.global-influence {
    background: #000000;
  color: #fff;
  padding: 80px 10%;
}

.gi-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.gi-text {
  flex: 1;
}

.gi-text h2 {
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.gi-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #ddd;
  hyphens: auto;
  text-align: justify;
}

.gi-map {
  flex: 1;
  position: relative;
}

.gi-map img {
  width: 100%;
  border-radius: 10px;
  opacity: 0.85;
}

.gi-marker {
  position: absolute;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, gold 30%, transparent 70%);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gi-marker:hover {
  transform: scale(1.4);
}

.gi-marker::after {
  content: attr(data-city);
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.gi-marker:hover::after {
  opacity: 1;
}
.concierge-suite {
    padding: 80px 0;
}

.concierge-suite .container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.concierge-suite .content {
    flex: 1;
}

.concierge-suite h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.concierge-suite .tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
}

.concierge-suite .description {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
    text-align: justify;
    hyphens: auto;
}

.concierge-suite .cta-button {
    display: inline-block;
    padding: 22px 50px;
    background: black;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.5px;
    border: 5px solid black;
    transition: all 0.3s ease;
}

.concierge-suite .cta-button:hover {
    background: #fff;
    color: #000000;
}

.concierge-suite .image-showcase {
    flex: 1;
    display: flex;
    justify-content: center;
}

.concierge-suite .image-showcase img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.concierge-suite .image-showcase img:hover {
    transform: translateY(-5px);
}

.privacy-section {
    padding: 80px 0;
    background-color: #000;
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.privacy-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-content {
    flex: 1;
}

.privacy-content h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.privacy-content h2 span {
    color: #d4af37;
}

.privacy-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #ccc;
    text-align: justify;
    hyphens: auto;
}

.privacy-list {
    padding: 0;
    text-align: left;
}

.privacy-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.privacy-list li::marker {
    color: #fff;
}

.privacy-image img {
    width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    border: 2px solid rgba(212,175,55,0.2);
}

/* Luxury Section */
.membership-section {
    background: #fff;
    padding: 80px 20px;
    font-family: 'Lato', sans-serif;
    text-align: center;
}

.membership-section .container {
    max-width: 1100px;
    margin: auto;
}

/* Heading */
.luxury-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.luxury-subheading {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
}

/* Pillars Section */
.pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.pillar {
    background: #fff;
    border: 1px solid #C5A572;
    padding: 30px 20px;
    flex: 1 1 calc(33.333% - 20px); /* 3 columns on desktop */
    min-width: 280px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.pillar h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #111;
}

.pillar p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Luxury Button */
.luxury-button {
    display: inline-block;
    padding: 14px 30px;
    border: 5px solid black;
    border-radius: 30px;
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.luxury-button:hover {
    background: #000;
    color: #fff;
}

/* Base Section */
.signatures {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #000 50%, #fff 50%);
  padding: 4rem 8%;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Left Content */
.signatures-content {
  flex: 1;
  color: white;
}

.signatures-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 800;
}

.signatures-content h2 span {
  color: gold;
}

/* List Styling */
.signatures-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}

.signatures-content li {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.signatures-content li i {
  background: gold;
  color: black;
  border-radius: 50%;
  padding: 6px;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.signatures-content li i img{
    width: 30px;
    height: 30px;
}
/* Luxury Button */
.luxury-btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border: 5px solid white;
  color: white;
  background: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.luxury-btn span{
    color: gold;
}
.luxury-btn:hover {
  background: white;
  color: black;
}

/* Right Image */
.signatures-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.signatures-image img {
  max-width: 300px;
  height: auto;
  object-fit: contain;
}
.signatures-image #s{
    display: none;
}
.insights-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

.insights-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    gap: 50px;
    flex-wrap: wrap;
}

.insights-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.insights-content {
    flex: 1;
    max-width: 600px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    text-align: left;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: left;
}

.section-description {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify;
    hyphens: auto;
}

.luxury-button {
    display: inline-block;
    padding: 15px 35px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.luxury-button:hover {
    background-color: #000;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}/* ===== Luxury CTA: Begin the Dialogue ===== */
.dialogue {
  background: #000;                 /* deep black */
  color: #fff;
  padding: 80px 20px;
}

.dialogue-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(197,165,114,0.35);  /* soft gold */
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  backdrop-filter: blur(2px);
}

.dialogue-copy h2 {
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.5px;
  margin: 0 0 10px;
}

.dialogue-copy p {
  color: #cfcfcf;
  margin: 0 0 26px;
  font-size: 16px;
}

/* Form */
.dialogue-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dialogue-form input,
.dialogue-form textarea {
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 14px 14px;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.dialogue-form input.subject{
  grid-column: 1 / -1; /* full width */
}

.dialogue-form textarea {
  grid-column: 1 / -1; /* full width */
  resize: vertical;
  min-height: 96px;
}

.dialogue-form input:focus,
.dialogue-form textarea:focus {
  border-color: #c5a572;               /* gold focus */
  box-shadow: 0 0 0 4px rgba(197,165,114,0.12);
}

/* Button */
.dialogue-btn {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #c5a572, #e6cf95);
  color: #0a0a0a;
  border: 0;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .2px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease;
}

.dialogue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(197,165,114,.28);
}
#form-message {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    display: none;
}
.success-msg {
    color: green;
}
.error-msg {
    color: red;
}


/* Mobile View */
@media (max-width: 768px) {
    .dialogue-wrap { padding: 28px 18px; }
    .dialogue-copy h2 { font-size: 32px; }
    .dialogue-form { grid-template-columns: 1fr; }
    .insights-container {
        flex-direction: column;
        text-align: center;
    }
    .insights-content {
        max-width: 100%;
    }
    .signatures {
        flex-direction: column;
        background: #000;
        text-align: center;
    }
    .signatures-image img {
        max-width: 200px;
        margin-top: 2rem;
    }
    .signatures-image #f{
        display: none;
    }
    .signatures-image #s{
        display: block;
    }
    .pillar {
        flex: 1 1 100%; /* 1 column on mobile */
    }
    
    .luxury-heading {
        font-size: 2rem;
    }

    .luxury-subheading {
        font-size: 1rem;
    }
    .privacy-section .container {
        flex-direction: column;
        text-align: center;
    }

    .privacy-image img {
        width: 90%;
        margin-top: 30px;
    }
    .concierge-suite .container {
        flex-direction: column;
        text-align: center;
    }
    .concierge-suite .image-showcase img {
        max-width: 90%;
    }
    .timeline::before {
        left: 25px;
    }
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .timeline-content {
        margin-left: 0;
        margin-top: 15px;
    }
    .section-title {
        text-align: center;
        font-size: 1.8rem;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }
    .gi-container {
        flex-direction: column;
        text-align: center;
    }

    .gi-text h2 {
        font-size: 2rem;
    }

    .gi-text p {
        font-size: 1rem;
    }
    .app-mockup{
        margin: 0px;
        height: 70vh;
    }
    .app-mockup .background-blobs{
        width: 70%;
        height: 50%;
    }
    .app-mockup .content img{
        width: auto;
        height: 100%;
        display: none;
    }
    .app-mockup .content img.mob-moc{
        display: block;
    }
    .hero-section .content h1{
        font-size: 25px;
    }
    .hero-section .content h2{
        font-size: medium;
        font-weight: lighter;
    }
    .aim-section{
        height: auto;
        padding: 50px 0px;
    }
    .aim-section .content h2{
        margin: 0px 0px 20px 0px;
        font-size: 25px;
    }
    .aim-section .content h3{
        font-size: medium;
    }
    .membership h2{
        font-size: 20px;
    }
    .membership span{
        font-size: small;
    }
    .membership .membership-box{
        flex-direction: column;
    }
    .membership .membership-box div{
        margin: 20px 0px;
        width: 100%;
    }
    .insights{
        height: auto;
        flex-direction: column;
    }
    .insights div.image{
        width: 100%;
        height: auto;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 00px;
    }
    .insights div.ins-content{
        padding: 10px;
        width: 100%;
    }
    .insights div.ins-content h2{
        font-size: 50px;
    }
}