  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  :root {
    --green: #294a34;
    --green-light: #477557;
    --gold: #916c35;
    --gold-light: #c49a52;
    --cream: #f5f0e8;
    --white: #ffffff;
    --gray: #6b7280;
    --text: #1a1a1a;
    --font-head: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ── TOP BAR ── */
  .top-bar {
    background: var(--green);
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .top-bar-info {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
  }

  .top-bar-info a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
  }

  .top-bar-info a i {
    color: var(--gold);
    font-size: 16px;
  }

  .top-bar-social {
    display: flex;
    gap: 12px;
  }

  .top-bar-social a {
    color: var(--gold);
    font-size: 18px;
    transition: color .2s;
  }

  .top-bar-social a:hover {
    color: var(--gold-light);
  }

  /* ── NAVBAR ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    height: 90px;
  }

  .logo {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
  }

  .logo-icon {
    /* We remove the background and fixed width/height so your logo can breathe */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* New class to handle the image sizing perfectly */
  .brand-img {
    height: 250px;
    /* Adjust this to make your logo bigger or smaller */
    width: auto;
    display: block;
    object-fit: contain;
  }

  /* We hide the old text properties since they are now part of your logo image */
  .logo-text {
    display: none;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: .3s;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-links a:hover {
    color: var(--gold);
  }

  .nav-cta {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background .2s;
  }

  .nav-cta:hover {
    background: var(--gold-light);
  }

  /* ── HERO ── */
  .hero {
    min-height: 88vh;
    /*background: linear-gradient(135deg, var(--green) 0%, #0f2018 100%);*/
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 60px;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23916c35' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  /*.hero-images{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow:hidden;
  }
  .hero-image{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    animation:slide 10s linear infinite;
  }
  .hero-image-1{
    animation-delay:0s;
  }
  .hero-image-2{
    animation-delay:5s;
  }
  @keyframes slide{
    0%{
        opacity:0;
    }
    20%{
        opacity:1;
    }
    80%{
        opacity:1;
    }
    100%{
        opacity:0;
    }
  }*/
  .hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 32, 24, 0.9) 0%, rgba(27, 48, 34, 0.5) 100%);
    z-index: 2;
  }

  .hero-content {
    position: relative;
    max-width: 600px;
    z-index: 3;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(145, 108, 53, .2);
    border: 1px solid rgba(145, 108, 53, .4);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-family: var(--font-head);
    font-size: clamp(38px, 5vw, 62px);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .hero h1 em {
    color: var(--gold-light);
    font-style: normal;
  }

  .hero p {
    color: rgba(255, 255, 255, .7);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
  }

  .hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .2s;
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
  }

  .btn-outline {
    border: 1.5px solid rgba(255, 255, 255, .4);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .2s;
  }

  .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .05);
  }

  .hero-stats {
    position: absolute;
    bottom: 48px;
    right: 60px;
    z-index: 4;
    display: flex;
    gap: 40px;
  }

  .stat {
    text-align: center;
  }

  .stat strong {
    display: block;
    font-family: var(--font-head);
    font-size: 36px;
    color: var(--gold-light);
  }

  .stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .5px;
    text-transform: uppercase;
  }

  /* ── SEARCH BAR ── */
  .search-section {
    background: var(--cream);
    padding: 40px 60px;
  }

  .search-box {
    background: var(--white);
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    gap: 16px;
    align-items: flex-end;
    flex-wrap: wrap;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
    max-width: 1000px;
    margin: 0 auto;
  }

  .search-field {
    flex: 1;
    min-width: 160px;
  }

  .search-field label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
  }

  .search-field select,
  .search-field input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color .2s;
  }

  .search-field select:focus,
  .search-field input:focus {
    border-color: var(--gold);
  }

  .search-btn {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .2s;
    white-space: nowrap;
  }

  .search-btn:hover {
    background: var(--green-light);
  }

  /* ── SECTIONS SHARED ── */
  section {
    padding: 80px 60px;
  }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }

  .section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gold);
  }

  h2.section-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 3vw, 42px);
    color: var(--green);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .section-sub {
    color: var(--gray);
    font-size: 16px;
    max-width: 520px;
    line-height: 1.7;
  }

  /* ── SERVICES ── */
  .services {
    background: var(--white);
  }

  .services-header {
    text-align: center;
    margin-bottom: 56px;
  }

  .services-header .section-sub {
    margin: 0 auto;
  }

  /*.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }*/
  .services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .service-card {
    flex: 0 0 300px;
  }

  .service-card {
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px 28px;
    transition: .3s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: .3s;
  }

  .service-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(145, 108, 53, .12);
  }

  .service-card:hover::after {
    width: 100%;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    background: var(--cream);
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    transition: background .3s;
  }

  .service-card:hover .service-icon {
    background: rgba(145, 108, 53, .12);
  }

  .service-icon i {
    font-size: 26px;
    color: var(--gold);
  }

  .service-card h3 {
    font-family: var(--font-head);
    font-size: 20px;
    color: var(--green);
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
  }

  /* ── FEATURED LISTINGS ── */
  .listings {
    background: var(--cream);
  }

  .listings-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .listings-tabs {
    display: flex;
    gap: 4px;
    background: var(--white);
    padding: 4px;
    border-radius: 8px;
  }

  .tab {
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-body);
    color: var(--gray);
    background: transparent;
    transition: .2s;
  }

  .tab.active {
    background: var(--green);
    color: var(--white);
  }

  .listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }

  .property-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    transition: .3s;
  }

  .property-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
  }

  .property-img {
    height: 200px;
    position: relative;
    background: linear-gradient(135deg, var(--green) 0%, #0f2018 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .property-img i {
    font-size: 56px;
    color: rgba(255, 255, 255, .15);
  }

  .property-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
  }

  .property-badge.rent {
    background: var(--green);
  }

  .property-body {
    padding: 20px 22px 24px;
  }

  .property-price {
    font-family: var(--font-head);
    font-size: 22px;
    color: var(--green);
    margin-bottom: 4px;
  }

  .property-price span {
    font-size: 13px;
    color: var(--gray);
    font-family: var(--font-body);
  }

  .property-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
  }

  .property-loc {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 16px;
  }

  .property-loc i {
    color: var(--gold);
    font-size: 15px;
  }

  .property-features {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
  }

  .feat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray);
  }

  .feat i {
    color: var(--gold);
    font-size: 15px;
  }

  .view-all-wrap {
    text-align: center;
    margin-top: 48px;
  }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--green);
    color: var(--green);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: .2s;
  }

  .btn-ghost:hover {
    background: var(--green);
    color: var(--white);
  }

  /* ── WHY US ── */
  .why {
    background: var(--green);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .why-content .section-tag {
    color: var(--gold-light);
  }

  .why-content .section-tag::before {
    background: var(--gold-light);
  }

  .why-content h2.section-title {
    color: var(--white);
  }

  .why-content .section-sub {
    color: rgba(255, 255, 255, .65);
  }

  .why-list {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .why-num {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(145, 108, 53, .5);
    display: grid;
    place-items: center;
    color: var(--gold-light);
    font-family: var(--font-head);
    font-size: 16px;
  }

  .why-item h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 4px;
  }

  .why-item p {
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
    line-height: 1.6;
  }

  .why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .why-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
  }

  .why-card strong {
    display: block;
    font-family: var(--font-head);
    font-size: 40px;
    color: var(--gold-light);
    margin-bottom: 6px;
  }

  .why-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
  }

  /* ── SOCIETIES ── 
  .societies { background: var(--white); }
  .societies-header { text-align: center; margin-bottom: 48px; }
  .societies-header .section-sub { margin: 0 auto; }
  .society-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 800px; margin: 0 auto; }
  .society-tag {
    padding: 10px 22px; border: 1.5px solid #e5e7eb; border-radius: 100px;
    font-size: 14px; font-weight: 500; color: var(--green); transition: .2s; cursor: default;
  }
  .society-tag:hover { border-color: var(--gold); color: var(--gold); background: rgba(145,108,53,.05); }*/

  /* ── TESTIMONIALS ── */
  .testimonials {
    background: var(--cream);
  }

  .testimonials-header {
    text-align: center;
    margin-bottom: 56px;
  }

  .testimonials-header .section-sub {
    margin: 0 auto;
  }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .testi-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
  }

  .stars {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
  }

  .testi-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    display: grid;
    place-items: center;
  }

  .avatar span {
    color: var(--gold-light);
    font-family: var(--font-head);
    font-size: 16px;
  }

  .testi-author strong {
    display: block;
    font-size: 14px;
    color: var(--text);
  }

  .testi-author span {
    font-size: 12px;
    color: var(--gray);
  }

  /* ── CONTACT ── */
  .contact {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contact-info .section-sub {
    margin-bottom: 36px;
  }

  .contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .contact-item-icon {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: 10px;
    display: grid;
    place-items: center;
    min-width: 44px;
  }

  .contact-item-icon i {
    color: var(--gold);
    font-size: 20px;
  }

  .contact-item h4 {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: .5px;
  }

  .contact-item p {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
  }

  .contact-form {
    background: var(--cream);
    border-radius: 20px;
    padding: 40px 36px;
  }

  .contact-form h3 {
    font-family: var(--font-head);
    font-size: 24px;
    color: var(--green);
    margin-bottom: 28px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color .2s;
  }

  .form-group textarea {
    height: 100px;
    resize: vertical;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
  }

  .form-submit {
    width: 100%;
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .form-submit:hover {
    background: var(--green-light);
  }

  footer {
    background: var(--green);
    padding: 64px 60px 32px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: start;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
  }

  .footer-logo-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: grid;
    place-items: center;
  }

  .footer-logo-icon i {
    color: var(--gold);
    font-size: 22px;
  }

  .footer-logo-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.2;
  }

  .footer-logo-sub {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .footer-brand p {
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .6);
    font-size: 17px;
    transition: .2s;
  }

  .footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-col a {
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
    text-decoration: none;
    transition: color .2s;
  }

  .footer-col a:hover {
    color: var(--gold-light);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom p {
    color: rgba(255, 255, 255, .4);
    font-size: 13px;
  }

  /* ── SCROLL ANIMATIONS ── */
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  @media(max-width: 900px) {
    .top-bar {
      flex-direction: column;
      gap: 10px;
      padding: 10px 24px;
      position: relative;
      z-index: 101;
      /* Above sticky nav (100) */
    }

    .top-bar-info {
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
    }

    .top-bar-info a span {
      font-size: 11px;
    }

    nav {
      padding: 10px 24px;
      height: 90px;
    }

    .brand-img {
      height: 70px;
      /* Big logo as requested */
      margin-top: 10px;
      /* Shift it down so it doesn't block top-bar as much */
    }

    .nav-links,
    .nav-cta {
      display: none !important;
    }

    .mobile-menu-btn {
      display: block !important;
    }

    .hero {
      padding: 60px 24px 120px;
    }

    .hero-stats {
      position: relative;
      bottom: 0;
      right: 0;
      margin-top: 40px;
      justify-content: center;
      flex-wrap: wrap;
      gap: 24px;
    }

    .why,
    .contact {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
      text-align: center;
    }

    .footer-logo,
    .footer-social,
    .footer-logo-img-wrapper {
      justify-content: center;
      margin-left: auto;
      margin-right: auto;
    }

    .search-box {
      flex-direction: column;
      padding: 24px;
      gap: 20px;
    }

    .search-field {
      width: 100%;
    }

    .search-btn {
      width: 100%;
      justify-content: center;
    }

    .form-row {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      font-size: 16px;
      /* Better readability and prevents iOS auto-zoom */
      padding: 14px;
    }
  }

  @media(max-width: 480px) {
    .hero h1 {
      font-size: 28px;
    }

    .top-bar-info a {
      font-size: 11px;
    }
  }

  /* ── FOOTER LOGO IMAGE ── */
  .footer-logo-img-wrapper {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    background: #fff;
    /* Added white background for visibility */
    padding: 0px;
    border-radius: 8px;
    width: fit-content;
  }

  .footer-brand-img {
    max-height: 50%;
    /* Adjusted height to fit within padding */
    width: auto;
    object-fit: contain;
  }

  #countryCode {
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-body);
    background: #fff;
    outline: none;
  }

  #countryCode:focus {
    border-color: var(--gold);
  }

  /* ── WHATSAPP FLOAT ── 
  .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }

  .whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
  }

  .whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
  }*/