.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */:root {
    --red: #C0392B;
    --red-dark: #96281B;
    --red-light: #E74C3C;
    --gold: #D4A853;
    --dark: #1a1a1a;
    --dark2: #2d2d2d;
    --gray: #6b7280;
    --light: #f8f5f0;
    --white: #ffffff;
    --border: #e5e0d8;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ===== NAVBAR ===== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .logo-icon {
    font-size: 28px;
  }

  .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
  }

  .logo-text span {
    color: var(--red);
  }

  .logo-sub {
    font-size: 10px;
    color: var(--gray);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--red); }

  .nav-cta {
    background: var(--red);
    color: white !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--red-dark) !important; color: white !important; }

  /* ===== HERO ===== */
  .hero {
    margin-top: 70px;
    position: relative;
    height: 88vh;
    min-height: 550px;
    overflow: hidden;
    background: var(--dark);
  }

  .hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
  }

  .hero-slide.active { opacity: 1; }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
  }

  .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    z-index: 5;
  }

  .hero-badge {
    background: var(--gold);
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
    display: inline-block;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }

  .hero-title span { color: var(--gold); }

  .hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: clamp(15px, 2vw, 19px);
    font-weight: 300;
    margin-bottom: 36px;
    max-width: 520px;
  }

  .hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-primary {
    background: var(--red);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    border: 2px solid var(--red);
  }

  .btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
  }

  .btn-outline {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.6);
    transition: all 0.2s;
  }

  .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
  }

  .hero-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
  }

  .hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
  }

  .hero-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
  }

  /* ===== STATS BAR ===== */
  .stats-bar {
    background: var(--red);
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
  }

  .stat-item {
    text-align: center;
    color: white;
  }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
  }

  .stat-label {
    font-size: 12px;
    opacity: 0.85;
    letter-spacing: 0.5px;
    margin-top: 2px;
  }

  /* ===== SECTIONS ===== */
  .section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
  }

  .section-title span { color: var(--red); }

  .section-desc {
    color: var(--gray);
    font-size: 16px;
    margin-top: 12px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ===== LOCATION TABS ===== */
  .location-section {
    background: var(--light);
    padding: 80px 0;
  }

  .location-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .location-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }

  .loc-tab {
    padding: 12px 28px;
    border-radius: 6px;
    border: 2px solid var(--border);
    background: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    color: var(--dark);
  }

  .loc-tab:hover, .loc-tab.active {
    background: var(--red);
    border-color: var(--red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192,57,43,0.3);
  }

  /* ===== PROPERTY CARDS ===== */
  .properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
  }

  .property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid var(--border);
  }

  .property-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  }

  .card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
  }

  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }

  .property-card:hover .card-image img { transform: scale(1.06); }

  .card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
  }

  .card-badge.gold {
    background: var(--gold);
    color: var(--dark);
  }

  .card-body {
    padding: 22px;
  }

  .card-location {
    font-size: 12px;
    color: var(--red);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .card-details {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--gray);
  }

  .card-details span {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .card-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 16px;
  }

  .card-price small {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray);
  }

  .card-btn {
    display: block;
    text-align: center;
    background: var(--red);
    color: white;
    padding: 11px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
  }

  .card-btn:hover { background: var(--red-dark); }

  .location-panel { display: none; }
  .location-panel.active { display: block; }

  /* ===== WHY US ===== */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
  }

  .why-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    background: white;
  }

  .why-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(192,57,43,0.1);
  }

  .why-icon {
    font-size: 40px;
    margin-bottom: 16px;
  }

  .why-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
  }

  .why-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
  }

  /* ===== TESTIMONIALS ===== */
  .testimonials-section {
    background: var(--dark);
    padding: 80px 0;
  }

  .testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .testimonials-section .section-title { color: white; }
  .testimonials-section .section-tag { color: var(--gold); }
  .testimonials-section .section-desc { color: rgba(255,255,255,0.6); }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
  }

  .testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s;
  }

  .testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
  }

  .stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; }

  .testimonial-text {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
  }

  .author-name {
    font-weight: 600;
    color: white;
    font-size: 14px;
  }

  .author-location {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
  }

  /* ===== LEAD FORM ===== */
  .form-section {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    padding: 80px 40px;
  }

  .form-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

  .form-section .section-title { color: white; }
  .form-section .section-desc { color: rgba(255,255,255,0.8); }

  .lead-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
  }

  .form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.2s;
    outline: none;
    background: white;
    color: var(--dark);
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--red);
  }

  .form-submit {
    width: 100%;
    background: var(--red);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
    margin-top: 8px;
  }

  .form-submit:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192,57,43,0.4);
  }

  /* ===== SEO LINKS SECTION ===== */
  .seo-section {
    padding: 60px 40px;
    background: var(--light);
  }

  .seo-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }

  .seo-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
  }

  .seo-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .seo-col ul li a {
    text-decoration: none;
    color: var(--gray);
    font-size: 14px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .seo-col ul li a:before {
    content: "→";
    color: var(--red);
    font-size: 12px;
  }

  .seo-col ul li a:hover { color: var(--red); }

  /* ===== ABOUT ===== */
  .about-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .about-text .section-header { text-align: left; }

  .about-text p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
  }

  .about-feature span:first-child {
    width: 28px; height: 28px;
    background: rgba(192,57,43,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }

  .about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    height: 450px;
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--dark2);
    padding: 60px 40px 30px;
    color: rgba(255,255,255,0.7);
  }

  .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
  }

  .footer-brand .logo-text { color: white; font-size: 22px; }

  .footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin: 14px 0 20px;
    color: rgba(255,255,255,0.55);
  }

  .footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s;
  }

  .footer-contact a:hover { color: var(--gold); }

  .footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-col ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }

  .footer-col ul li a:hover { color: var(--gold); }

  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-bottom a {
    color: var(--gold);
    text-decoration: none;
  }

  /* ===== WHATSAPP BUTTON ===== */
  .whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: all 0.3s;
    animation: pulse-wa 2.5s infinite;
  }

  .whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 30px rgba(37,211,102,0.55);
    animation: none;
  }

  @keyframes pulse-wa {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 6px 35px rgba(37,211,102,0.7); }
  }

  /* ===== MOBILE ===== */
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
  }

  @media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }

    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 70px; left: 0; right: 0;
      background: white;
      padding: 20px;
      border-bottom: 1px solid var(--border);
      gap: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .hero-title { font-size: 32px; }
    .stats-bar { gap: 24px; padding: 20px; }
    .section { padding: 50px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .about-section { grid-template-columns: 1fr; padding: 50px 20px; }
    .about-image { height: 280px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .location-inner { padding: 0 20px; }
    .seo-section { padding: 50px 20px; }
    .form-section { padding: 50px 20px; }
    .whatsapp-btn span.btn-label { display: none; }
    .whatsapp-btn { padding: 16px; border-radius: 50%; }
  }/* End custom CSS */