/* Raghunath Properties – Main Stylesheet */


  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --cream: #F5F0E8;
    --warm-white: #FDFAF5;
    --deep-brown: #2C1A0E;
    --terracotta: #C4622D;
    --gold: #D4A853;
    --gold-light: #F0D080;
    --sage: #6B8C6B;
    --text: #3A2415;
    --muted: #8B7355;
    --border: #DDD0B8;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 48px;
    background: rgba(253,250,245,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    display: flex; align-items: center;
  }
  .nav-logo img { height: 52px; width: 52px; border-radius: 50%; object-fit: cover; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    text-decoration: none; font-size: 14px; font-weight: 500;
    color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--terracotta); }
  .nav-cta {
    background: var(--terracotta); color: #fff;
    border: none; padding: 10px 24px; border-radius: 4px;
    font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
    cursor: pointer; letter-spacing: 0.04em; text-transform: uppercase;
    transition: background .2s, transform .15s;
  }
  .nav-cta:hover { background: var(--deep-brown); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--deep-brown);
    position: relative; overflow: hidden;
    display: flex; align-items: center;
  }
  .hero-pattern {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 15% 50%, rgba(196,98,45,0.18) 0%, transparent 55%),
      radial-gradient(circle at 85% 20%, rgba(212,168,83,0.12) 0%, transparent 50%),
      radial-gradient(circle at 60% 80%, rgba(107,140,107,0.10) 0%, transparent 45%);
  }
  .hero-grid {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: linear-gradient(var(--cream) 1px, transparent 1px),
      linear-gradient(90deg, var(--cream) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 120px 48px 80px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .hero-tag {
    display: inline-block;
    background: rgba(196,98,45,0.2); border: 1px solid rgba(196,98,45,0.4);
    color: var(--gold); font-size: 12px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 6px 16px; border-radius: 2px; margin-bottom: 28px;
    animation: fadeUp .8s ease both;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5vw, 68px); font-weight: 900;
    color: var(--cream); line-height: 1.08; margin-bottom: 24px;
    animation: fadeUp .8s .15s ease both;
  }
  .hero h1 em { color: var(--gold); font-style: italic; }
  .hero-desc {
    font-size: 17px; color: rgba(245,240,232,0.65);
    line-height: 1.75; margin-bottom: 40px;
    animation: fadeUp .8s .25s ease both;
  }
  .hero-btns {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeUp .8s .35s ease both;
  }
  .btn-primary {
    background: var(--terracotta); color: #fff;
    padding: 14px 32px; border-radius: 4px;
    font-weight: 600; font-size: 15px; text-decoration: none;
    transition: background .2s, transform .15s;
    display: inline-block;
  }
  .btn-primary:hover { background: #a84f22; transform: translateY(-2px); }
  .btn-outline {
    border: 1.5px solid rgba(245,240,232,0.35); color: var(--cream);
    padding: 14px 32px; border-radius: 4px;
    font-weight: 500; font-size: 15px; text-decoration: none;
    transition: border-color .2s, background .2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); background: rgba(212,168,83,0.08); }

  /* Hero stats card */
  .hero-stats {
    animation: fadeUp .8s .45s ease both;
    display: flex; flex-direction: column; gap: 24px;
  }
  .stat-card {
    background: rgba(245,240,232,0.06);
    border: 1px solid rgba(245,240,232,0.12);
    border-radius: 12px; padding: 28px 32px;
    backdrop-filter: blur(8px);
  }
  .stat-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px; font-weight: 700; color: var(--gold);
    line-height: 1;
  }
  .stat-card p { font-size: 14px; color: rgba(245,240,232,0.55); margin-top: 6px; }
  .stat-row { display: flex; gap: 16px; }
  .stat-row .stat-card { flex: 1; }

  /* Location badge */
  .location-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245,240,232,0.08); border: 1px solid rgba(245,240,232,0.15);
    border-radius: 6px; padding: 10px 18px;
    color: rgba(245,240,232,0.7); font-size: 13px;
    margin-top: 16px;
  }
  .location-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }

  /* ── SERVICES ── */
  section { padding: 100px 48px; max-width: 1200px; margin: 0 auto; }
  .section-label {
    font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--terracotta); margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 48px); font-weight: 700;
    color: var(--deep-brown); line-height: 1.2; margin-bottom: 16px;
  }
  .section-sub { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 560px; }

  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px;
  }
  .service-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px; padding: 40px 36px;
    position: relative; overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    cursor: default;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold));
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s ease;
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(44,26,14,0.12); }
  .service-icon {
    width: 56px; height: 56px; border-radius: 10px;
    background: rgba(196,98,45,0.1); display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 24px;
  }
  .service-card h3 {
    font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
    color: var(--deep-brown); margin-bottom: 12px;
  }
  .service-card p { font-size: 15px; color: var(--muted); line-height: 1.7; }

  /* ── WHY US ── */
  .why-section {
    background: var(--deep-brown); padding: 100px 0; margin: 0;
    max-width: 100%; position: relative; overflow: hidden;
  }
  .why-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(196,98,45,0.15) 0%, transparent 60%);
  }
  .why-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 48px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    position: relative; z-index: 1;
  }
  .why-inner .section-title { color: var(--cream); }
  .why-inner .section-sub { color: rgba(245,240,232,0.6); }
  .why-inner .section-label { color: var(--gold); }
  .features-list { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
  .feature-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px 24px;
    background: rgba(245,240,232,0.05);
    border: 1px solid rgba(245,240,232,0.1);
    border-radius: 10px;
    transition: background .2s;
  }
  .feature-item:hover { background: rgba(245,240,232,0.09); }
  .feature-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
  .feature-item h4 { color: var(--cream); font-size: 15px; font-weight: 600; margin-bottom: 4px; }
  .feature-item p { color: rgba(245,240,232,0.55); font-size: 13.5px; line-height: 1.6; }

  /* Big quote */
  .big-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 64px); font-weight: 900;
    color: var(--cream); line-height: 1.1;
    border-left: 4px solid var(--terracotta);
    padding-left: 28px;
  }
  .big-quote span { color: var(--gold); display: block; }

  /* ── LISTINGS ── */
  .listings-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px;
  }
  .listing-card {
    border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
    background: #fff;
    transition: transform .25s, box-shadow .25s;
  }
  .listing-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(44,26,14,0.1); }
  .listing-thumb {
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    position: relative; overflow: hidden;
  }
  .listing-thumb.t1 { background: linear-gradient(135deg, #E8D5C0, #C4A882); }
  .listing-thumb.t2 { background: linear-gradient(135deg, #C8D8C4, #8FAE8A); }
  .listing-thumb.t3 { background: linear-gradient(135deg, #D4C4A8, #A89070); }
  .listing-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--terracotta); color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 2px;
  }
  .listing-body { padding: 24px; }
  .listing-body h4 {
    font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700;
    color: var(--deep-brown); margin-bottom: 6px;
  }
  .listing-loc { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
  .listing-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
  .listing-meta span { font-size: 13px; color: var(--muted); }
  .listing-price {
    font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
    color: var(--terracotta); border-top: 1px solid var(--border); padding-top: 16px;
  }
  .listing-price sub { font-size: 13px; font-family: 'DM Sans', sans-serif; font-weight: 400; color: var(--muted); }

  /* ── CONTACT ── */
  .contact-wrapper {
    background: var(--cream); border-radius: 16px;
    border: 1px solid var(--border); overflow: hidden;
    display: grid; grid-template-columns: 1fr 1fr;
    margin-top: 56px;
  }
  .contact-info { padding: 56px 48px; background: var(--deep-brown); color: var(--cream); }
  .contact-info h3 {
    font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700;
    margin-bottom: 16px;
  }
  .contact-info p { color: rgba(245,240,232,0.65); line-height: 1.75; margin-bottom: 40px; }
  .contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
  .contact-detail-icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: rgba(196,98,45,0.2); display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
  }
  .contact-detail h5 { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
  .contact-detail p { color: rgba(245,240,232,0.75); font-size: 14px; margin-bottom: 0; }

  .contact-form { padding: 56px 48px; }
  .contact-form h3 {
    font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700;
    color: var(--deep-brown); margin-bottom: 8px;
  }
  .contact-form p { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 18px; }
  .form-group label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--text); margin-bottom: 7px; letter-spacing: 0.03em;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid var(--border); border-radius: 6px;
    font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text);
    background: var(--warm-white);
    outline: none; transition: border-color .2s;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--terracotta); }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-submit {
    width: 100%; background: var(--terracotta); color: #fff;
    border: none; padding: 15px 32px; border-radius: 6px;
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
    cursor: pointer; letter-spacing: 0.04em;
    transition: background .2s, transform .15s;
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--deep-brown); transform: translateY(-2px); }

  .success-msg {
    display: none; background: #E8F5E9; border: 1px solid #A5D6A7;
    border-radius: 8px; padding: 16px 20px; margin-top: 16px;
    color: #2E7D32; font-size: 14px; font-weight: 500;
    text-align: center;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--deep-brown); color: rgba(245,240,232,0.55);
    text-align: center; padding: 40px 48px;
    font-size: 14px; border-top: 1px solid rgba(245,240,232,0.08);
    max-width: 100%;
  }
  footer strong { color: var(--cream); }
  footer a { color: var(--gold); text-decoration: none; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── DIVIDERS ── */
  .full-section { max-width: 100%; padding: 0; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 100px 24px 60px; }
    .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-card { padding: 20px; }
    .stat-row { flex-direction: column; }
    .services-grid { grid-template-columns: 1fr; }
    .listings-grid { grid-template-columns: 1fr; }
    .why-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
    .contact-wrapper { grid-template-columns: 1fr; }
    section { padding: 64px 24px; }
    .contact-info, .contact-form { padding: 40px 28px; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* ── WHATSAPP ── */
  .wa-inline-btn {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 10px; background: #25D366; color: #fff;
    text-decoration: none; padding: 9px 18px; border-radius: 6px;
    font-size: 13px; font-weight: 600; transition: background .2s, transform .15s;
  }
  .wa-inline-btn:hover { background: #1aab54; transform: translateY(-1px); }

  .wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    animation: waPulse 2.5s infinite;
  }
  .wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.65); animation: none; }
  .wa-tooltip {
    position: absolute; right: 70px; white-space: nowrap;
    background: #2C1A0E; color: #F5F0E8;
    font-size: 13px; font-weight: 500; padding: 7px 14px;
    border-radius: 6px; opacity: 0; pointer-events: none;
    transition: opacity .2s; font-family: 'DM Sans', sans-serif;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  .wa-float:hover .wa-tooltip { opacity: 1; }
  @keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 6px 36px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.1); }
  }
