:root{
    --bg: linear-gradient(135deg, #8B0000 0%, #5C0000 50%, #2D0000 100%);
    --bg-solid: #5C0000;
    --card: rgba(139, 0, 0, 0.3);
    --muted:#bfb8a6;
    --gold:#c59a3c;
    --red: #DC143C;
    --red-bright: #FF1744;
    --red-dark: #8B0000;
    --glass: rgba(255,255,255,0.04);
    --accent: linear-gradient(90deg, rgba(197,154,60,1) 0%, rgba(255,215,130,1) 100%);
    --max:1200px;
    --radius:14px;
    font-family: Inter, ui-systerm, -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  }
  
  *{
    box-sizing:border-box;
  }
  
  html,body{
    height:100%;
    background: var(--bg-solid);
    color:#ffffff;
    margin:0;
    padding:0;
  }
  
  body {
    /* background: linear-gradient(135deg, #8B0000 0%, #5C0000 50%, #2D0000 100%); */
    background-attachment: fixed;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a{
    color:inherit;
    text-decoration:none;
  }
  
  .container{
    max-width:var(--max);
    margin:0 auto;
    padding:28px;
  }
  
  header{
    position:fixed;
    left:0;
    right:0;
    top:0;
    z-index:50;
    padding-top:16px;
  }
  
  .nav{
    backdrop-filter: blur(6px);
    background:linear-gradient(180deg, rgba(10,10,10,0.55), rgba(10,10,10,0.3));
    border-radius:20px;
    padding:12px 18px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    box-shadow:0 6px 30px rgba(0,0,0,0.6);
    border: 1px solid rgba(197, 154, 60, 0.2);
  }
  
  .nav > nav {
    margin: 0 auto;
  }
  
  .nav .brand {
    position: absolute;
    left: 0;
  }
  
  .nav .cta {
    position: absolute;
    right: 0;
  }
  
  .brand{
    display:flex;
    align-items:center;
    gap:12px;
    padding-left: 12px;
  }
  
  .brand img{
    width:56px;
    height:56px;
    
    object-fit:contain;
    border-radius:8px;
    border:1px solid rgba(197, 154, 60, 0.3);
    background:linear-gradient(180deg, rgba(197, 154, 60, 0.1), transparent);
  }
  
  
  nav ul{
    display:flex;
    gap:24px;
    list-style:none;
    margin:0;
    padding:0;
  }
  
  nav li{
    font-size:18px;
    position:relative;
    padding:12px 0;
  }
  
  nav a{
    color:var(--muted);
    text-decoration:none;
    transition:all 0.3s ease;
    position:relative;
  }
  
  nav a:hover{
    color:var(--gold);
  }
  
  nav a::after{
    content:'';
    position:absolute;
    bottom:-4px;
    left:0;
    width:0;
    height:2px;
    background:var(--gold);
    transition:width 0.3s ease;
  }
  
  nav a:hover::after{
    width:100%;
  }
  
  nav a.active{
    color:var(--gold);
  }
  
  nav a.active::after{
    width:100%;
  }
  
  .cta{
    margin-left:auto;
    display:flex;
    gap:10px;
    padding-right: 12px;
  }
  
  .btn{
    padding:10px 16px;
    border-radius:11px;
    border:none;
    cursor:pointer;
    font-weight:600;
    font-size:14px;
    transition:all .3s ease;
  }
  
  .btn-outline{
    background:transparent;
    border:1px solid rgba(255,255,255,0.08);
    color:#eee;
  }
  
  .btn-outline:hover{
    background:rgba(255,255,255,0.05);
    border-color:rgba(255,255,255,0.15);
  }
  
  .btn-gold{
    background:var(--gold);
    color:#111;
    padding:10px 20px;
    border-radius:12px;
    border: 1px solid rgba(197, 154, 60, 0.3);
    box-shadow: 0 4px 12px rgba(197, 154, 60, 0.3);
  }
  
  .btn-gold:hover{
    background:#d4a645;
    transform:translateY(-2px);
    box-shadow: 0 6px 16px rgba(197, 154, 60, 0.5);
  }
  
  .btn {
    transition: all 0.3s ease;
  }

  .btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
  }

  .btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  
  .hero {
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    padding: 0px 0 40px;
    position: relative;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 154, 60, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(197, 154, 60, 0.25), rgba(197, 154, 60, 0.1));
    border: 1px solid rgba(197, 154, 60, 0.5);
    border-radius: 50px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(197, 154, 60, 0.2);
  }
  
  .badge-icon {
    font-size: 16px;
    animation: sparkle 2s ease-in-out infinite;
  }
  
  @keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
  }
  
  .hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 16px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-subtitle-inline {
    display: block;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, #d4a574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
  }
  
  .hero-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 20px;
    font-weight: 500;
    letter-spacing: 0.3px;
  }
  
  .hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 36px;
    max-width: 90%;
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }
  
  .stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(197, 154, 60, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 154, 60, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  }
  
  .stat-card:hover::before {
    opacity: 1;
  }
  
  .stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
  }
  
  .stat-value {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
  }
  
  .stat-unit {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
  }
  
  .stat-highlight .stat-value {
    background: linear-gradient(135deg, var(--gold) 0%, #d4a574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 22px;
  }
  
  .stat-success .stat-value {
    color: #e9c80e;
  }
  
  .hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 154, 60, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  }
  
  .feature-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
  }
  
  .feature-content h4 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
  }
  
  .feature-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .hero-visual {
    position: relative;
    z-index: 1;
  }
  
  .visual-container {
    position: relative;
  }
  
  .image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 560px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  
  .image-wrapper:hover img {
    transform: scale(1.05);
  }
  
  .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  }

.hero-visual {
  position: relative;
  z-index: 1;
}

.visual-container {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 560px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.contact-card {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.95), rgba(92, 0, 0, 0.95));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 154, 60, 0.4);
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(197, 154, 60, 0.1);
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.contact-value {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, #d4a574 100%);
  /* -webkit-background-clip: text; */
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(197, 154, 60, 0.3), transparent);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 44px;
  }
  
  .hero-subtitle-inline {
    font-size: 32px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle-inline {
    font-size: 26px;
  }
  
  .hero-description {
    max-width: 100%;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .image-wrapper {
    height: 400px;
  }
  
  .contact-card {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  .contact-divider {
    width: 100%;
    height: 1px;
  }
  
  .contact-item {
    width: 100%;
    text-align: center;
  }
}
  .quick{
    display:flex;
    justify-content:space-between;
    margin-top:14px;
  }
  
  .quick-item{
    flex:1;
  }
  
  .quick-label{
    color:var(--muted);
    font-size:13px;
    margin-bottom:4px;
  }
  
  .quick-value{
    font-weight:800;
  }
  
  .quick-right{
    text-align:right;
  }
  
  .features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:22px;
  }
  
  .feature{
    background:linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));
    padding:18px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.03);
  }
  
  .feature h4{
    margin:0 0 6px;
    font-size:16px;
  }
  
  .feature p{
    color:var(--muted);
    font-size:13px;
    margin:0;
    line-height:1.5;
  }
  
  section{
    padding:20px 0;
  }
  
  .section-title {
    margin-bottom: 48px;
    text-align: center;
    position: relative;
  }
  
  .section-title h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
  }
  
  .section-title h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
  }
  
  .section-title p.muted {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .section-title {
      margin-bottom: 32px;
    }
    
    .section-title h3 {
      font-size: 26px;
    }
  }
  
  .grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
  }
  
  .card{
    background:var(--card);
    border-radius:12px;
    padding:18px;
    border:1px solid rgba(197, 154, 60, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  .card h5{
    margin:0 0 8px;
    font-size:16px;
  }
  
  .card h4{
    margin:0 0 12px;
    font-size:18px;
  }
  
  .muted{
    color:var(--muted);
    font-size:13px;
    line-height:1.5;
  }
  
  .plans{
    display:flex;
    gap:18px;
  }
  
  .plan{
    flex:1;
    padding:18px;
    border-radius:12px;
    background:linear-gradient(180deg, rgba(197, 154, 60, 0.05), rgba(197, 154, 60, 0.02));
    border:1px solid rgba(197, 154, 60, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  .plan-pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
    padding: 10px;
    background: linear-gradient(135deg, rgba(197, 154, 60, 0.15), rgba(197, 154, 60, 0.05));
    border: 1px solid rgba(197, 154, 60, 0.3);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .plan-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 2px 8px rgba(197, 154, 60, 0.3);
    margin: 0;
  }

  .plan-payment {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
  }
  
  .plan .sq{
    font-weight:700;
    color:var(--gold);
    font-size:18px;
    margin-bottom:8px;
  }
  
  .plan ul{
    padding-left:18px;
    margin:0;
  }
  
  .plan li{
    margin-bottom:6px;
  }
  
  .gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
  }
  
  .gallery-item{
    height:280px;
    border-radius:12px;
    overflow:hidden;
    background:linear-gradient(180deg, rgba(197, 154, 60, 0.05), rgba(197, 154, 60, 0.02));
    border:1px solid rgba(197, 154, 60, 0.2);
    cursor:pointer;
    transition:transform .3s ease, box-shadow .3s ease;
  }
  
  .gallery-item:hover{
    transform:scale(1.02);
    box-shadow:0 12px 40px rgba(197,154,60,0.3), 0 0 20px rgba(197,154,60,0.2);
    border-color: rgba(197, 154, 60, 0.4);
  }
  
  .gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
  }
  
  .gallery-item.large{
    grid-column:span 2;
    height:280px;
  }
  
  .plan-viewer{
    background:transparent;
    border-radius:12px;
    padding:0;
    box-shadow: none;
    overflow: hidden;
    border: none;
  }
  
  .plan-tabs{
    display:flex;
    gap:10px;
    margin-bottom:20px;
    flex-wrap:wrap;
  }
  
  .plan-tab{
    padding:10px 18px;
    border-radius:10px;
    background:transparent;
    border:1px solid rgba(255,255,255,0.06);
    cursor:pointer;
    transition:all .3s ease;
    font-size:14px;
    font-weight:600;
    color:#eee;
  }
  
  .plan-tab:hover{
    background:rgba(255,255,255,0.02);
    border-color:rgba(255,255,255,0.1);
  }
  
  .plan-tab.active{
    background:var(--gold);
    color:#111;
    border-color:var(--gold);
  }
  
  .plan-display{
    min-height: auto;
    border-radius:12px;
    background:linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.2));
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,0.04);
    overflow: hidden;
  }
  
  .master-plan-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-bottom:48px;
  }

  .plan-info{
    text-align:center;
    margin-top:16px;
  }

  .plan-info h4{
    margin:0 0 8px;
    font-size:18px;
    font-weight:700;
    color:#fff;
  }

  .plan-info p{
    margin:0;
    color:var(--muted);
    font-size:14px;
    line-height:1.5;
  }

  .plan-cta-section{
    margin-top:48px;
  }

  .plan-cta-buttons{
    display:flex;
    gap:12px;
    margin:20px 0;
    flex-wrap:wrap;
    justify-content:center;
  }
  
  .plan-viewer-actions{
    margin-top:16px;
    text-align:center;
  }
  
  .plan-viewer-actions-flex{
    margin-top:16px;
    display:flex;
    gap:12px;
    justify-content:center;
    flex-wrap:wrap;
  }
  
  .amenities{
    display:flex;
    gap:16px;
    overflow-x:auto;
    padding-bottom:10px;
  }
  
  .amenity{
    min-width:220px;
    padding:18px;
    border-radius:12px;
    background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border:1px solid rgba(255,255,255,0.03);
  }
  
  .amenity h4{
    margin:0 0 8px;
    font-size:16px;
  }
  
  .location-container{
    display:grid;
    grid-template-columns:1fr 480px;
    gap:24px;
    align-items:stretch;
  }
  
  .location-map{
    background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border-radius:16px;
    border:1px solid rgba(255,255,255,0.03);
    overflow:hidden;
    position:relative;
    min-height: auto;
  }
  
  .location-map img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(0.85) saturate(1.1);
  }
  
  .location-info{
    display:flex;
    flex-direction:column;
    gap:16px;
  }
  
  .location-card{
    background:linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border-radius:14px;
    padding:20px;
    border:1px solid rgba(255,255,255,0.04);
    position:relative;
    overflow:hidden;
    transition:all .3s ease;
  }
  
  .location-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:4px;
    height:100%;
    background:var(--accent);
    opacity:0;
    transition:opacity .3s ease;
  }
  
  .location-card:hover{
    background:linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border-color:rgba(197,154,60,0.15);
    transform:translateX(4px);
  }
  
  .location-card:hover::before{
    opacity:1;
  }
  
  .location-icon{
    width:42px;
    height:42px;
    border-radius:10px;
    background:rgba(197,154,60,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:12px;
  }
  
  .location-icon svg{
    width:22px;
    height:22px;
    stroke:var(--gold);
    fill:none;
    stroke-width:2;
  }
  
  .location-card h5{
    margin:0 0 10px;
    font-size:17px;
    font-weight:700;
    color:#fff;
  }
  
  .location-card p{
    margin:0;
    color:var(--muted);
    font-size:13.5px;
    line-height:1.6;
  }
  
  @media(max-width:980px){
    .location-container{
      grid-template-columns:1fr;
    }
    .location-map{
      min-height:320px;
      order:2;
    }
    .location-info{
      order:1;
    }
  }

.about-container{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:28px;
    align-items:start;
  }
  
  .about-visual{
    position:relative;
    background:linear-gradient(135deg, rgba(197,154,60,0.08), rgba(197,154,60,0.02));
    border-radius:16px;
    padding:32px;
    border:1px solid rgba(197,154,60,0.12);
    text-align:center;
  }
  
  .about-logo-container{
    background:linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
    border-radius:14px;
    padding:28px;
    margin-bottom:20px;
    border:1px solid rgba(255,255,255,0.04);
  }
  
  .about-logo-container img{
    width:100%;
    max-width:280px;
    height:auto;
    filter:brightness(1.1);
  }
  
  .about-stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:20px;
  }
  
  .about-stat{
    background:rgba(0,0,0,0.3);
    padding:16px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.04);
  }
  
  .about-stat-value{
    font-size:24px;
    font-weight:800;
    color:var(--gold);
    margin-bottom:4px;
  }
  
  .about-stat-label{
    font-size:12px;
    color:var(--muted);
    text-transform:uppercase;
    letter-spacing:0.5px;
  }
  
  .about-content{
    display:flex;
    flex-direction:column;
    gap:20px;
  }
  
  .about-text{
    background:linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border-radius:14px;
    padding:28px;
    border:1px solid rgba(255,255,255,0.04);
    line-height:1.8;
    color:#d4d4d4;
    font-size:15px;
  }
  
  .about-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }
  
  .about-highlight{
    background:linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    padding:18px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.03);
    display:flex;
    align-items:start;
    gap:12px;
    transition:all .3s ease;
  }
  
  .about-highlight:hover{
    background:linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border-color:rgba(197,154,60,0.15);
    transform:translateY(-2px);
  }
  
  .about-highlight-icon{
    width:36px;
    height:36px;
    border-radius:8px;
    background:rgba(197,154,60,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
  }
  
  .about-highlight-icon svg{
    width:18px;
    height:18px;
    stroke:var(--gold);
    fill:none;
    stroke-width:2;
  }
  
  .about-highlight-content h6{
    margin:0 0 4px;
    font-size:14px;
    font-weight:700;
    color:#fff;
  }
  
  .about-highlight-content p{
    margin:0;
    font-size:12.5px;
    color:var(--muted);
    line-height:1.5;
  }
  
  @media(max-width:980px){
    .location-container{
      grid-template-columns:1fr;
    }
    .location-map{
      min-height:320px;
      order:2;
    }
    .location-info{
      order:1;
    }
    .about-container{
      grid-template-columns:1fr;
    }
    .about-highlights{
      grid-template-columns:1fr;
    }
    .master-plan-grid{
      grid-template-columns:1fr;
      gap:32px;
    }
  }


  .contact-wrap{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:20px;
  }
  
  .contact-form{
    display:flex;
    flex-direction:column;
    gap:12px;
  }
  
  .contact-form input,
  .contact-form textarea,
  .contact-form select{
    background:transparent;
    border:1px solid rgba(255,255,255,0.06);
    padding:12px;
    border-radius:10px;
    color:#fff;
    font-size:14px;
    font-family:inherit;
  }
  
  .contact-form select{
    width: 100%;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23bfb8a6' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    background-color: transparent;
  }
  
  .contact-form select:focus{
    outline: none;
    border-color: rgba(197, 154, 60, 0.3);
  }
  
  .contact-form select option{
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px;
  }
  .form-group select {
    padding: 15px;
    border: 2px solid rgba(197, 154, 60, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23d4a574' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
  }

  .form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(197, 154, 60, 0.2);
  }

  .form-group select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder{
    color:var(--muted);
  }

  /* Inline form messages */
  .form-success-message{
    margin-top:10px;
    padding:12px 14px;
    border-radius:10px;
    font-size:14px;
    line-height:1.4;
    border:1px solid transparent;
  }
  .form-success-message.success{
    background: rgba(39, 174, 96, 0.12);
    border-color: rgba(39, 174, 96, 0.35);
    color: #b7f7ce;
  }
  .form-success-message.error{
    background: rgba(231, 76, 60, 0.12);
    border-color: rgba(231, 76, 60, 0.35);
    color: #ffb3ad;
  }
  
  .contact-form-actions{
    display:flex;
    gap:10px;
    margin-top:6px;
    flex-wrap:wrap;
  }
  
  .contact-sidebar h4{
    margin:0 0 12px;
    font-size:18px;
  }
  
  .contact-sidebar p{
    margin:0 0 8px;
  }
  
  .contact-info {
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: stretch;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    margin-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    flex: 1;
  }

  .contact-item:hover {
    background: rgba(197, 154, 60, 0.08);
    border-color: rgba(197, 154, 60, 0.2);
    transform: translateX(4px);
  }

  .contact-item svg {
    color: var(--gold);
    flex-shrink: 0;
  }

  .contact-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .contact-item strong {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
  }

  .contact-item .muted {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
  }

  .assurance-points {
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .assurance-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    margin-bottom: 0;
    background: rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 6px;
    font-size: 12px;
    color: #fff;
    transition: all 0.3s ease;
  }

  .assurance-item:hover {
    background: rgba(76, 175, 80, 0.12);
    border-color: rgba(76, 175, 80, 0.3);
    transform: translateX(2px);
  }

  .assurance-item svg {
    color: #4CAF50;
    flex-shrink: 0;
  }

  .contact-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .contact-sidebar-actions .btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  @media (max-width: 768px) {
    .contact-item {
      padding: 10px;
      gap: 10px;
    }

    .contact-item strong {
      font-size: 15px;
    }

    .contact-item .muted {
      font-size: 11px;
    }

    .assurance-item {
      padding: 6px 10px;
      font-size: 12px;
      margin-bottom: 4px;
    }

    .assurance-item span {
      font-size: 11px;
    }

    .contact-sidebar-actions {
      gap: 10px;
    }

    .contact-sidebar-actions .btn,
    .contact-sidebar-actions .btn-outline {
      padding: 10px 16px;
      font-size: 13px;
    }
  }
  
  footer{
    padding:28px 0 40px;
    color:var(--muted);
    border-top:1px solid rgba(255,255,255,0.02);
    background: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
  }

  .footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom: 32px;
  }

  .footer-info {
    display: flex;
    gap: 24px;
    align-items: center;
  }

  .footer-location,
  .footer-possession {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
  }

  .footer-brand{
    font-weight:700;
    margin-bottom:4px;
    color: #fff;
    font-size: 18px;
  }

  .simple-logo {
    padding: 1px 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05), rgba(92, 0, 0, 0.05));
    border-bottom: 1px solid rgba(197, 154, 60, 0.1);
  }

  .simple-logo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px;
  }

  .simple-logo img {
    height: 100px;
    width: auto;
    filter: brightness(1.1) contrast(1.1);
  }

  .btn-private-preview {
    background: linear-gradient(135deg, var(--gold) 0%, #d4a574 100%);
    color: #111;
    border: 2px solid transparent;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(197, 154, 60, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
  }

  .btn-private-preview:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197, 154, 60, 0.6);
    background: linear-gradient(135deg, #e0b585 0%, #d4a574 100%);
    border-color: rgba(197, 154, 60, 0.8);
  }

  .btn-private-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
  }

  .btn-private-preview:hover::before {
    left: 100%;
  }

  .btn-private-preview:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(197, 154, 60, 0.5);
  }

  /* Private Preview Modal */
  .private-preview-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
  }

  .private-preview-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .private-preview-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
  }

  @keyframes modalSlideIn {
    from {
      opacity: 0;
      transform: translateY(-50px) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .private-preview-close {
    color: var(--muted);
    float: right;
    font-size: 32px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(197, 154, 60, 0.1);
  }

  .private-preview-close:hover {
    color: var(--gold);
    background: rgba(197, 154, 60, 0.2);
    transform: scale(1.1);
  }

  .private-preview-header {
    text-align: center;
    margin-bottom: 30px;
  }

  .private-preview-header h3 {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .private-preview-header p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
  }

  .private-preview-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .form-group input {
    padding: 15px;
    border: 2px solid rgba(197, 154, 60, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
  }

  .form-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(197, 154, 60, 0.2);
  }

  .form-group input::placeholder {
    color: var(--muted);
  }

  .btn-submit {
    background: linear-gradient(135deg, var(--gold) 0%, #d4a574 100%);
    color: #111;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 16px rgba(197, 154, 60, 0.3);
  }

  .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 154, 60, 0.4);
    background: linear-gradient(135deg, #e0b585 0%, #d4a574 100%);
  }

  .btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .simple-logo-content {
      
      justify-content: center;
      
    }
    
    .simple-logo img {
      display: none;
    }

    .private-preview-modal-content {
      padding: 30px 20px;
      margin: 20px;
    }

    .private-preview-header h3 {
      font-size: 24px;
    }

    .btn-private-preview {
      padding: 10px 16px;
      font-size: 13px;
      min-width: auto;
      white-space: nowrap;
    }
  }

  @media (max-width: 480px) {
    .private-preview-modal-content {
      padding: 25px 15px;
      margin: 15px;
    }

    .private-preview-header h3 {
      font-size: 22px;
    }

    .form-group input {
      padding: 12px;
      font-size: 14px;
    }

    .form-group select {
      padding: 12px;
      font-size: 14px;
      padding-right: 35px;
    }

    .btn-submit {
      padding: 14px 24px;
      font-size: 14px;
    }
  }

  .footer-disclaimer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .disclaimer-section h5 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .disclaimer-section p {
    margin: 0 0 4px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
  }

  .disclaimer-section p:last-child {
    margin-bottom: 0;
  }

  .legal-disclaimer {
    padding: 20px;
    background: rgba(197, 154, 60, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(197, 154, 60, 0.2);
  }

  .legal-disclaimer h5 {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .legal-disclaimer p {
    margin: 0 0 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
  }

  .legal-disclaimer p:last-child {
    margin-bottom: 0;
  }

  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 24px;
    }

    .footer-info {
      gap: 16px;
    }

    .footer-disclaimer {
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 20px;
      margin-bottom: 24px;
    }

    .disclaimer-section h5 {
      font-size: 15px;
    }

    .disclaimer-section p {
      font-size: 13px;
    }

    .legal-disclaimer {
      padding: 16px;
    }

    .legal-disclaimer h5 {
      font-size: 15px;
    }

    .legal-disclaimer p {
      font-size: 12px;
    }
  }
  
  @media(max-width:980px){
    .hero{
      grid-template-columns:1fr;
    }
    .features-grid{
      grid-template-columns:repeat(2,1fr);
    }
    .grid-3{
      grid-template-columns:repeat(2,1fr);
    }
    .container{
      padding:20px;
    }
    header{
      top:10px;
    }
    .gallery-grid{
      grid-template-columns:repeat(2,1fr);
    }
    .gallery-item.large{
      grid-column:span 2;}
      .contact-wrap{
        grid-template-columns:1fr;
      }
    }
    
    @media(max-width:620px){
      .features-grid{
        grid-template-columns:1fr;
      }
      .grid-3{
        grid-template-columns:1fr;
      }
      .contact-wrap{
        grid-template-columns:1fr;
      }
      nav ul{
        display:none;
      }
      .brand-text h1{
        font-size:14px;
      }
      .brand-text p{
        display:none;
      }
      .plans{
        flex-direction:column;
      }
      .gallery-grid{
        grid-template-columns:1fr;
      }
      .gallery-item.large{
        grid-column:span 1;
      }
      .cta{
        flex-wrap:wrap;
      }
      .hero-left h2{
        font-size:28px;
      }
    }
    
    .glow{
      box-shadow:0 6px 30px rgba(197,154,60,0.12);
      border:1px solid rgba(197,154,60,0.12);
    }
    
    .fadeUp{
      opacity:0;
      transform:translateY(18px);
      transition:all .6s cubic-bezier(.2,.9,.25,1);
    }
    
    .fadeUp.show{
      opacity:1;
      transform:none;
    }
    
    /* Mobile fallback - show all fadeUp elements by default on mobile */
    @media (max-width: 768px) {
      .fadeUp {
        opacity: 1 !important;
        transform: none !important;
      }
    }
    
    .main-content{
      padding-top:10px;
    }
    
    /* Top Hero Section */
    .top-hero {
      width: 100%;
      height: 100vh;
      min-height: 600px;
      max-height: 900px;
      position: relative;
      overflow: hidden;
      /* background: linear-gradient(135deg, #8B0000 0%, #5C0000 100%); */
      margin-top: 0;
    }

    .top-hero-container {
      width: 100%;
      height: 100%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .top-hero-image {
      width: 100%;
      height: 100vh;
      object-fit: cover;
      object-position: top center;
      filter: brightness(0.9) contrast(1.1) saturate(1.1);
      transition: transform 0.3s ease;
    }

    .top-hero-image:hover {
      transform: scale(1.02);
    }

    .top-hero-logo {
      position: absolute;
      top: 5px;
      left: 20px;
      z-index: 10;
      padding: 15px 20px;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }

    .top-hero-logo img {
      width: 150px;
      height: auto;
      max-width: 220px;
      filter: brightness(1.1) contrast(1.1);
    }
    
    /* Responsive top hero */
    @media (max-width: 768px) {
      .top-hero {
        height: 50vh;
        min-height: 500px;
        max-height: 700px;
      }

      .top-hero-logo {
        top: 3px;
        left: 15px;
        padding: 12px 16px;
      }

      .top-hero-logo img {
        width: 110px;
        max-width: 170px;
      }
    }
    
    @media (max-width: 480px) {
      .top-hero {
        height: 80vh;
        min-height: 400px;
      }

      .top-hero-logo {
        top: 2px;
        left: 12px;
        padding: 10px 12px;
      }

      .top-hero-logo img {
        width: 85px;
        max-width: 130px;
      }
    }
    
    /* Desktop CTA */
    .cta-desktop {
      display: flex;
      gap: 10px;
      align-items: center;
    }
    
    .phone-number {
      margin-right: 12px;
      font-size: 14px;
    }
    
    /* Mobile CTA */
    .cta-mobile {
      display: none;
      gap: 16px;
    }
    
    .cta-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(197, 154, 60, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    
    .cta-icon:hover {
      background: rgba(197, 154, 60, 0.2);
    }
    
    .cta-icon svg {
      width: 18px;
      height: 18px;
      stroke: var(--gold);
    }
    
    /* Hamburger Menu Styles */
    .hamburger {
      display: none;
      background: transparent;
      border: none;
      padding: 8px;
      cursor: pointer;
      z-index: 1000;
      flex-direction: column;
      gap: 4px;
    }
    
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--gold);
      transition: all 0.3s ease;
      border-radius: 2px;
    }
    
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile Phone Icon */
    .mobile-phone-icon {
      display: none;
    }
    
    .phone-icon-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(197, 154, 60, 0.15);
      border: 1px solid rgba(197, 154, 60, 0.3);
      transition: all 0.3s ease;
    }
    
    .phone-icon-link:hover {
      background: rgba(197, 154, 60, 0.25);
      transform: scale(1.05);
    }
    
    .phone-icon-link svg {
      width: 20px;
      height: 20px;
      stroke: var(--gold);
    }
    
    /* Desktop Navigation */
    .desktop-nav {
      display: flex;
    }
    
    .desktop-nav ul {
      display: flex;
      gap: 24px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    
    .desktop-nav li {
      font-size: 18px;
      position: relative;
      padding: 12px 0;
    }
    
    .desktop-nav a {
      color: var(--muted);
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
    }
    
    .desktop-nav a:hover {
      color: var(--gold);
    }
    
    .desktop-nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width 0.3s ease;
    }
    
    .desktop-nav a:hover::after {
      width: 100%;
    }
    
    .desktop-nav a.active {
      color: var(--gold);
    }
    
    .desktop-nav a.active::after {
      width: 100%;
    }
    
    /* Desktop CTA Buttons */
    .phone-btn, .whatsapp-btn {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .phone-btn svg, .whatsapp-btn svg {
      flex-shrink: 0;
    }
    
    /* Responsive Nav */
    @media (max-width: 768px) {
      html, body {
        overflow-x: hidden;
      }
      
      .hamburger {
        display: none !important;
      }
      
      nav {
        display: none !important;
      }
      
      .desktop-nav {
        display: none !important;
      }
      
      .cta-desktop {
        display: none !important;
      }
      
      .mobile-phone-icon {
        display: block;
      }
      
      .nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 18px;
        width: 100%;
      }
      
      .brand {
        flex: 0 0 auto;
        margin-right: auto;
      }
      
      .mobile-phone-icon {
        flex: 0 0 auto;
        margin-left: auto;
      }
      
      .cta {
        display: none;
      }
      
      .cta-desktop {
        display: none;
      }
      
      /* Hero Stats - 2 columns in mobile */
      .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
      }
      
      .stat-card {
        padding: 16px 12px;
      }
      
      .stat-value {
        font-size: 16px;
      }
      
      .stat-highlight .stat-value {
        font-size: 20px;
      }
      
      /* Contact sidebar responsive styles */
      .contact-info {
        flex-direction: column;
        gap: 8px;
      }
      .contact-item {
        padding: 8px;
        gap: 8px;
        margin-bottom: 0;
      }
      .contact-item strong {
        font-size: 14px;
      }
      .contact-item .muted {
        font-size: 10px;
      }
      .assurance-points {
        grid-template-columns: 1fr;
        gap: 6px;
      }
      .assurance-item {
        padding: 4px 6px;
        font-size: 11px;
        margin-bottom: 0;
      }
      .assurance-item span {
        font-size: 10px;
      }
      .contact-sidebar-actions {
        gap: 8px;
      }
      .contact-sidebar-actions .btn,
      .contact-sidebar-actions .btn-outline {
        padding: 8px 12px;
        font-size: 12px;
      }
    }
    
    @media (min-width: 769px) {
      .mobile-phone-icon {
        display: none !important;
      }
      
      .desktop-nav {
        display: flex !important;
      }
      
      .cta-desktop {
        display: flex !important;
      }
    }

.plan-container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
  align-items: start;
}

.plan-cta {
  /* background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%); */
  border-radius: 20px;
  padding: 15px;
  border: 1px solid rgba(212, 165, 116, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.plan-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.03) 0%, rgba(212, 165, 116, 0.01) 100%);
  border-radius: 20px;
  pointer-events: none;
}

.plan-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.plan-cta-text {
  flex: 1;
}

.plan-cta-text h3 {
  margin: 0 0 12px 0;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.plan-cta-text p {
  margin: 0;
  color: #999999;
  font-size: 15px;
  line-height: 1.6;
}

.plan-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, #d4a574 0%, #c49a5c 100%);
  color: #000000;
  border: none;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(212, 165, 116, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.4);
  background: linear-gradient(135deg, #e0b585 0%, #d4a574 100%);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: #d4a574;
  border: 2px solid #d4a574;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(212, 165, 116, 0.1);
  color: #e0b585;
  border-color: #e0b585;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 165, 116, 0.2);
}

.plan-contact-section {
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.contact-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 165, 116, 0.3) 50%, transparent 100%);
  margin-bottom: 24px;
}

.plan-contact-options {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.plan-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #999999;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
}

.plan-contact-item:hover {
  color: #d4a574;
  background: rgba(212, 165, 116, 0.05);
  transform: translateY(-1px);
}

.plan-contact-item svg {
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 980px) {
  .plan-cta {
    padding: 24px;
    border-radius: 16px;
  }

  .plan-cta-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .plan-cta-text h3 {
    font-size: 24px;
  }

  .plan-cta-text p {
    font-size: 14px;
  }

  .plan-contact-options {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .plan-cta {
    padding: 20px;
    margin: 0 -20px;
    border-radius: 0;
  }

  .plan-cta-text h3 {
    font-size: 22px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .plan-container {
    grid-template-columns: 1fr;
  }
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-option:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-color: rgba(197,154,60,0.2);
}

.contact-option svg {
  flex-shrink: 0;
}

/* Image Modal Styles */
.image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
  height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.modal-close:hover,
.modal-close:focus {
  color: var(--gold);
  text-decoration: none;
  cursor: pointer;
}

#modalImage {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.modal-caption {
  margin-top: 20px;
  color: #ccc;
  font-size: 16px;
  text-align: center;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  max-width: 80%;
}

/* Modal Navigation */
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1001;
}

.modal-nav:hover {
  background: rgba(212, 165, 116, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

.modal-info {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 1001;
}

.modal-counter {
  font-size: 14px;
  font-weight: 600;
  color: #d4a574;
  margin-bottom: 8px;
  background: rgba(0, 0, 0, 0.7);
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
}

.modal-caption {
  font-size: 16px;
  color: #ccc;
  background: rgba(0, 0, 0, 0.8);
  padding: 12px 20px;
  border-radius: 8px;
  max-width: 80%;
  line-height: 1.4;
}

/* Responsive modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    height: 95%;
  }

  .modal-close {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }

  .modal-counter {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .modal-caption {
    font-size: 14px;
    max-width: 90%;
    margin-top: 15px;
  }
}

/* Sticky Phone Button */
.sticky-phone {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background: linear-gradient(135deg, var(--gold) 0%, #d4a574 100%);
  color: #111;
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(197, 154, 60, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 180px;
  justify-content: center;
}

.sticky-phone:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(197, 154, 60, 0.6);
  background: linear-gradient(135deg, #e0b585 0%, #d4a574 100%);
}

.sticky-phone svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

.phone-number-sticky {
  display: block;
  white-space: nowrap;
}

/* Mobile Phone Icon Only */
@media (max-width: 768px) {
  .sticky-phone {
    bottom: 20px;
    right: 20px;
    padding: 15px;
    min-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }

  .phone-number-sticky {
    display: none;
  }

  .sticky-phone svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .sticky-phone {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    padding: 12px;
  }

  .sticky-phone svg {
    width: 20px;
    height: 20px;
  }
}
