/* ===============================
   ROOT VARIABLES
================================ */
:root {
    --primary-red: #d12c2c;
    --soft-gray: #f9fafb;
    --text-main: #111827;
    --glass-white: rgba(255, 255, 255, 0.8);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===============================
   GLOBAL STYLES
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff;
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

.text-red { color: var(--primary-red); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===============================
   HERO SECTION
================================ */
.hero-clean {
    padding: 100px 0;
    background: radial-gradient(circle at top right, #fff5f5, #ffffff);
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    animation: fadeInUp 0.8s ease backwards;
}

.tagline {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text p {
    max-width: 520px;
    font-size: 17px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Primary */
.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-red);
    box-shadow: 0 18px 40px rgba(209, 44, 44, 0.35);
    transform: translateY(-2px);
}

/* Secondary – Consult Expert */
.btn-secondary {
    border: 1px solid #ddd;
    color: #000;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
    box-shadow: 0 12px 30px rgba(209, 44, 44, 0.25);
    transform: translateY(-2px);
}

.btn-secondary i {
    transition: transform 0.3s ease;
}

.btn-secondary:hover i {
    transform: rotate(-10deg) scale(1.1);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    position: relative;
    animation: fadeInUp 0.8s ease backwards;
}

.glass-image-card img {
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ===============================
   PRICING SECTION
================================ */
.pricing-light {
    padding: 60px 0;
    background: var(--soft-gray);
}

.cities-premium{
   padding: 30px; 
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
}

.section-header p {
    max-width: 600px;
    margin: 10px auto 0;
    color: #555;
}

/* Pricing Grid */
.plans-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.p-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #eee;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.8s ease backwards;
}

.p-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.p-card.featured {
    border: 2px solid var(--primary-red);
    transform: scale(1.05);
}

.best-value {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
}

.p-head h3 {
    margin-bottom: 10px;
}

.price {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
}

.price span {
    font-size: 16px;
    color: #666;
}

.p-features {
    list-style: none;
    margin-bottom: 40px;
}

.p-features li {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.p-features i {
    color: #22c55e;
}

/* Pricing Buttons */
.p-btn {
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #eee;
    color: #000;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.p-btn:not(.red):hover {
    background: var(--text-main);
    color: #fff;
    border-color: var(--text-main);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.p-btn.red {
    background: var(--primary-red);
    color: #fff;
    border: none;
}

.p-btn.red:hover {
    background: #b92323;
    box-shadow: 0 18px 40px rgba(209, 44, 44, 0.35);
    transform: translateY(-3px);
}

/* ===============================
Chart SECTION
================================ */


/* --- Virtual Office Comparison Section --- */
.vo-section {
  padding: 60px 0;
}

.vo-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
}

.vo-title span {
  color: var(--primary-red);
  font-weight: 700;
}

/* Wrapper for mobile scroll */
.vo-table-wrapper {
  overflow-x: auto;
}

/* Table layout */
.vo-table {
  min-width: 900px; 
  border-radius: 16px;
  background: rgba(216, 177, 182, 0.111);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Row */
.vo-row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.vo-row:last-child {
  border-bottom: none;
}

/* Header */
.vo-head {
  background: rgba(0,0,0,0.04);
  font-weight: 700;
}

/* Cells */
.vo-cell {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.vo-cell.feature {
  text-align: left;
  font-weight: 700;
}

/* Icons */
.vo-cell.yes {
  color: #1aa75b;
  font-size: 18px;
}

.vo-cell.no {
  color: var(--primary-red);
  font-size: 18px;
}

/* Hover */
.vo-row:not(.vo-head):hover {
  background: rgba(127, 151, 170, 0.258);
  transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .vo-title {
    font-size: 28px;
  }
}









/* ===============================
    ELITE AMENITIES – MINIMAL SLEEK
================================ */
:root {
    --primary-red: #d12c2c;
    --text-main: #1a1a1a;
    --text-light: #666666;
    --border-color: #f0f0f0;
}

.amenities-light {
    padding: 60px 0;
    background: #ffffff;
}

.amenities-white-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

/* Sleek Card Design */
.a-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none; /* If using as links */
}

/* Simple Icon Box */
.a-box i {
    font-size: 24px;
    color: var(--primary-red);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff5f5; /* Very soft red tint */
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Clean Typography */
.a-box span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: -0.2px; /* Tighter for modern look */
}

/* Elegant Hover */
.a-box:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.a-box:hover i {
    background: var(--primary-red);
    color: #ffffff;
}

/* ===============================
    RESPONSIVE
================================ */
@media (max-width: 1200px) { .amenities-white-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 992px) { .amenities-white-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) {
    .amenities-white-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .a-box { padding: 30px 10px; }
}
/* ===============================
   INFO SECTION
================================ */
.info-rich-section {
    padding: 50px 0;
}

.info-card-glass {
    background: linear-gradient(135deg, #ffffff, #fff5f5);
    padding: 80px;
    border-radius: 40px;
    border: 1px solid #eee;
}

.info-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.benefit-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

/* ===============================
   CITY GRID
================================ */
.city-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.city-item {
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.city-item:hover {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
    .plans-container { grid-template-columns: repeat(2, 1fr); }
    .p-card.featured { transform: scale(1); order: -1; }
}

@media (max-width: 992px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 { font-size: 42px; }
    .hero-cta { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 768px) {
    .plans-container { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 36px; }
    .city-grid-modern { grid-template-columns: repeat(2, 1fr); }
    .benefit-row { flex-direction: column; }
    .info-card-glass { padding: 40px 20px; }
}

/* ===============================
   ANIMATIONS
================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ===============================
   PROMISES SECTION - SIMPLE & PREMIUM
================================ */
.promises-light {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.section-head {
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-head h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-head p {
    color: #666;
    font-size: 17px;
}

/* 4-Column Grid for Promises */
.promises-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.promise-card {
    background: #fafafa;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: left;
    height: 100%;
}

.promise-card:hover {
    background: #ffffff;
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--primary-red);
}

.p-icon-box {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-red);
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.promise-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.promise-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Responsive */
@media (max-width: 1100px) { .promises-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .promises-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .promises-grid { grid-template-columns: 1fr; } }