@font-face {
  font-family: "HyperTrack";
  src: url("fonts/Hyper-Track-BF6923fcf16dfa7.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Logo";
  src: url("fonts/LeagueSpartan-Bold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
* {
 margin: 0; 
 padding: 0; 
 box-sizing: 
 border-box; 
}
section {
    overflow-x: hidden;
}
html { scroll-behavior: smooth; }
body { 
    background: #ddd; 
    font-family: Arial;
    overflow-x: hidden;
}

.load {
    display: flex;
    position: fixed;
    left: 44%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.load h1 {
    display: flex;
    align-items: center;
    font-family: "HyperTrack";
    font-size: clamp(25px, 2vw, 3rem);
}

.mark1 {
    color: #ddd;
    padding: 0 7px;
    background: transparent;
    font-family: "Logo";
    font-size: 4rem;
    border-radius: 7px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation:  logo-motion2 1s linear infinite alternate;
    animation-delay: 2s;
}

.mark-bg {
    background: #050;
    position: absolute;
    inset: 0;
    z-index: -1;
    animation:  logo-motion1 1s linear 1;
}

.mark2 {
    position: absolute;
    width: 300px;
    left: 0%;
    opacity: 0;
    animation:  logo-motion3 0.4s linear 1 forwards;
    animation-delay: 1s;
}
@keyframes logo-motion3 {
    to {
        left: 120%;
        opacity: 1;
    }
}

@keyframes logo-motion1 {
    from{
        top: 100%;
    }
    to {
        top: 0%;
    }
}

@keyframes logo-motion2 {
    from{
        font-size: 4rem;
    }
    to {
        font-size: 3rem;
    }
}

#body {
    display: none;
}

/* ===== HEADER ===== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    width: 90%;
    margin: 1% auto;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0%;
    z-index: 1000;
}

.logo {
    font-family: "HyperTrack";
    font-size: 1rem;
    text-decoration: none;
    color: #000;
}

.logo span {
    color: #fff;
    background: #050;
    padding: 0 7px;
    margin-right: 4px;
    border-radius: 7px;
    font-family: "Logo";
    font-size: 2.2rem;
}

.links a {
    text-decoration: none;
    padding: 8px 14px;
    color: #333;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s;
}
.links a:hover { background: #e0faf9; color: #0d7068; }

.nav2 {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: #044742;
    padding: 20px;
    border-radius: 20px 0px 0px 20px;
    transition: 0.4s ease;
    z-index: 1001;
}
.nav2.active {
    right: 0;
}

.top-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.nav2 a {
    display: block;
    padding: 15px 7px;
    margin-top: 20px;
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.nav2 a:focus {
    background: #fff;
    color: #070;
}
.hamburger{
    padding: 10px 15px;
    font-size: 30px;
    flex-direction: column;
    grid-gap: 5px;
    display: none;
    position: relative;
    z-index: 1111;
}
.hand{
    width: 23px;
    height: 2px;
    background: #050;
    border-radius: 20px;
    transition: transform 0.3s;
    
}
.hamburger.active .hand:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: rgb(255, 255, 255);
}

.hamburger.active .hand:nth-child(2) {
    transition: opacity 0.3s;
  opacity: 0;
}

.hamburger.active .hand:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
   background: rgb(255, 255, 255);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    width: 100%;
    padding: 30px 0 111px;
    overflow: hidden;
    text-align: center;
}

.hold-hero-text {
    opacity: 1;
    animation: hero-move 1.4s 1;
}
@keyframes hero-move {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
}

.hold-hero-text p {
    font-size: 2rem;
    font-weight: bold;
}

.hero-text {
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 3px 4px #000000;
    color: #fff;
}

.hold-hero-text h1 {
    font-family: "HyperTrack";
    font-size: 5rem;
    line-height: 1;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hold-hero-text h1 span {
    color: #050;
    font-family: "Logo";
    font-size: 7rem;
}

.hold-hero-text>a {
    color: #fff;
    text-decoration: none;
    background: #099;
    border-radius: 15px;
    padding: 10px 20px;
    margin-top: 50px;
    position: relative;
    top: 120px;
    transition: all 1s;
}
.hold-hero-text>a:hover { background: #077; }

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: 49px;
    margin-top: 50px;
    width: fit-content;
    overflow: visible;
}

.hero-search-icon {
    color: #fff;
    text-decoration: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #099;
    font-size: 1.1rem;
    transition: background 0.3s;
}
.hero-search-icon:hover { background: #077; }

#login-nav-hero {
    color: #fff;
    cursor: pointer;
    padding: 10px 22px;
    border-radius: 15px;
    background: #099;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.3s;
}
#login-nav-hero:hover { background: #077; }

#googleBtn {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}
/* ===== HERO BRAND SHAPE (RESPONSIVE) ===== */
.hero-brand {
    position: absolute;
    left: 50%;
    bottom: 0;
    top: 70px;
    transform: translateX(-50%) rotate(90deg) scaleY(3) scaleX(1.6);
    
    /* Responsive sizing */
    width: 70vw;
    height: 100vw;
    max-width: 450px;
    max-height: 450px;

    background: url('/image/IMG_7296.JPG');
    background-size: contain;
    clip-path: polygon(54% 0, 54% 57%, 54% 100%, 0% 100%, 25% 50%, 0% 0%);
    
    opacity: 1;
    z-index: -1;
}

#all-search {
    padding: 20px 20px;
    margin-top: -20px;
    animation: search-move 1s 1;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@keyframes search-move {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
}

.type-search {
    display: flex;
    gap: 10px;
    align-items: center;
}

.property-btn {
    background: #fff;
    padding: 10px 10px;
    border-radius: 20px;
    font-size: 15px;
    cursor: pointer;
}

.type-s {
    padding: 10px 10px;
}

.type-s:nth-child(2) {
    border-left: 1px solid #055;
    border-right: 1px solid #055;
}

.hotel-btn {
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #066;
    border-radius: 20px;
    font-size: 15px;
    cursor: pointer;
}

.type-point {
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    margin-left: 30px;
    margin-top: 27px;
    z-index: -1;
    transform: rotate(45deg);
    transition: all 0.3s;
}

#full-search-property {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  width: 100%;
  max-width: 900px;   
  margin: 0 auto;
  padding: 15px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}


.item-search {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;           /* prevents flex items from shrinking too much */
  margin-right: 10px;       /* spacing between items */
  min-width: 120px;         /* or a width that makes sense */
}

.item-search:nth-child(2) {
    border-left: 1px solid #099;
    border-right: 1px solid #099;
}

.item-search input {
    padding: 5px;
    width: 100%; 
    border: none;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.item-search:nth-child(3) input {
    width: 80px;
}

.item-search:nth-child(4) input {
    width: 40px;
}

.room-hold-btn {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.room-hold-btn button {
    padding: 3px 9px;
    background: #099;
    border-radius: 10px;
    color: #fff;
    border: none;
    cursor: pointer;
}

.room-hold-btn button:active {
    background: #fff;
    color: #099;
}

.search-btn {
    padding: 5px 20px;
    background: #099;
    border-radius: 10px;
    color: #fff;
    border: none;
    text-decoration: none;
    cursor: pointer;
}

#full-search-hotel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  width: 100%;
  max-width: 900px;   
  margin: 0 auto;
  padding: 15px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  display: none;
}

.hotel-link {
    padding: 10px 20px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #066;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: #000;
    cursor: pointer;
    position: relative;
    transition: all 0.5;
}
.hotel-link:hover {
    background: linear-gradient(180deg, #066, #066, rgba(0, 0, 0, 0));
    color: #fff;
}

.search-bar {
    background: linear-gradient(135deg, #084e44 0%, #037979 100%);
    padding: 48px 20px;
    text-align: center;
}

.search-inner {
    max-width: 680px;
    margin: 0 auto;
}

.search-tagline {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 500;
}

.search-field-wrap {
    position: relative;
}

.search-field {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 6px 6px 6px 20px;
    border: 2px solid transparent;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.search-field:focus-within {
    border-color: #0d7068;
    box-shadow: 0 4px 28px rgba(13,112,104,0.18);
}

.search-icon {
    color: #0d7068;
    font-size: 1rem;
    flex-shrink: 0;
    margin-right: 10px;
}

.search-field input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: #222;
    background: transparent;
    padding: 10px 0;
    min-width: 0;
}
.search-field input::placeholder { color: #aaa; }

.search-clear {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    padding: 8px 12px;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: color 0.2s;
}
.search-clear:hover { color: #555; }

/* ── Voice search mic button ─────────────────────────────── */
.search-mic {
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    padding: 8px 10px;
    font-size: 17px;
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
    outline: none;
}
.search-mic:hover { color: #0d7068; }
.search-mic.listening {
    color: #e53e3e;
    animation: mic-pulse 0.9s ease-in-out infinite;
}
@keyframes mic-pulse {
    0%, 100% { transform: scale(1);    opacity: 1; }
    50%       { transform: scale(1.35); opacity: 0.7; }
}

#search-agent-list {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    border: 1px solid #e8f5f5;
    z-index: 999;
    overflow: hidden;
    max-height: 320px;
    overflow-y: auto;
}

.agent-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: #222;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
}
.agent-search-item:last-child { border-bottom: none; }
.agent-search-item:hover { background: #f0faf9; }

.agent-search-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #055;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.agent-search-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.agent-search-avatar span {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.agent-search-info { display: flex; flex-direction: column; }
.agent-search-name { font-weight: 600; font-size: 0.9rem; margin: 0; }
.agent-search-stand { font-size: 0.78rem; color: #055; margin: 0; }

.agent-search-empty {
    padding: 16px;
    text-align: center;
    color: #999;
    font-size: 0.875rem;
}

.about {
    display: flex;
    gap: 10%;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.about-left {
    padding: 20px 40px;
    max-width: 600px;
    width: 100%;
}
.about-left>h1 {
    font-size: 3rem;
    padding: 20px 0;
}

.about-left>p {
    font-size: 1.4rem;
}

.about-right {
    padding: 20px 70px;
    background: #fff;
    border-radius: 20px;
}

.about-right>ul>li {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    width: 100%;
}

.about-right>ul>li>.right {
    font-size: 12px;
}

.left>img {
    width: 80px;
    height: 110px;
}

.listings {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-anchor: none; /* prevent browser scroll anchoring fighting our manual compensation */
    gap: 16px;
    margin: 0 auto;
    width: 90%;
    padding: 30px;
}

/* CARD STYLE */
.listing-card {
    background: white;
    border-radius: 16px;
    width: 100%;
    overflow: hidden;
    margin-right: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.13);
}

 
.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #e8fffe;
}

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

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

.card-type-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(13, 112, 104, 0.85);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: capitalize;
    backdrop-filter: blur(4px);
}

.card-verified-badge {
    position: absolute;
    bottom: 10px;
    right: 12px;
    color: rgb(255, 255, 255);
    border-radius: 20px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    animation: fa-bounce 1.5s infinite linear;
}

.card-category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: capitalize;
    backdrop-filter: blur(4px);
}

.card-category-badge.sale     { background: rgba(13, 112, 104, 0.85); color: white; }
.card-category-badge.rent     { background: rgba(234, 179, 8, 0.9);   color: white; }
.card-category-badge.shortlet { background: rgba(99, 102, 241, 0.85); color: white; }

.card-body {
    padding: 16px;
}

.card-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0d7068;
    margin-bottom: 4px;
}

.card-location {
    font-size: 0.88rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

.card-stats {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 12px;
}

.card-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #555;
}

.card-stat i {
    color: #66eae3;
    font-size: 0.9rem;
}

.card-date {
    font-size: 0.78rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-footer {
    padding: 12px 16px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-share-card {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1.5px solid #66eae3;
    background: #e0faf9;
    color: #0d7068;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.btn-share-card:hover { background: #0d7068; color: #fff; border-color: #0d7068; }

.btn-view-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #66eae3 0%, #0d7068 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background: linear-gradient(135deg, #0d7068 0%, #055361 100%);
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 56, 51, 0.3);
}

/* Empty state */
.properties-empty {
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
}

.properties-empty i {
    font-size: 4rem;
    color: #66eae3;
    margin-bottom: 16px;
    display: block;
}

.properties-empty p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Skeleton loader */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.skeleton-img {
    height: 200px;
}

.skeleton-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skeleton-line {
    height: 14px;
}

.load-more-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 25px;
    font-size: 18px;
    background: #099;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.4s
}

.load-more-btn:hover {
    background: #055;
}

/* ROOMS SECTION */
.hotel-rooms {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    display: none;
}

.hotel-rooms h2 {
    text-align: center;
    font-size: 1.5rem;
    padding: 40px;
}

.rooms h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #333;
}

.room-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* ROOM CARD */
.h-room {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.h-room:hover {
    transform: translateY(-5px);
}

.h-room img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-content {
    padding: 20px;
}

.room-content h3 {
    font-size: 22px;
    color: #222;
}

.room-content p {
    margin: 10px 0;
    color: #555;
    font-size: 15px;
}

.h-price {
    font-size: 20px;
    font-weight: bold;
    color: #099;
}

.room-content button {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    border: none;
    border-radius: 6px;
    background: #099;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.room-content button:hover {
    background: #055;
}

/* ROOM FORM */
.book-room {
    position: fixed;
    max-width: 500px;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 4000;
}

#book-form>h2 {
    color: #044;
    font-size: 1.6rem;
}

.book-room form {
    background: #fff;
    border-radius: 20px;
    padding: 10px;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.book-room form input, #guests {
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 3px;
}

#price-book {
    color: #066;
    font-weight: bold;
    font-size: 2rem;
}

#submit-book {
    padding: 14px;
    color: #fff;
    background: #055;
    border-radius: 20px;
    border:  none;
}

.bgf2 {
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    display: none;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f4fdf4, #ffffff);
    text-align: center;
}

.services-title {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #050;
    font-weight: bold;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1100px;
    margin: auto;
}

.service-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-box:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #0a7c0a, #00c853);
    opacity: 0;
    transition: 0.4s;
}

.service-box:hover:before {
    opacity: 0.09;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box.highlight {
    border: 3px solid #0a7c0a;
    transform: scale(1.05);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    background: #0a7c0a;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.service-box h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #050;
}

.service-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-box ul li {
    padding: 8px 0;
    font-size: 1rem;
    color: #444;
}

.service-box ul li::before {
    content: "✔";
    color: #0a7c0a;
    margin-right: 8px;
}

.service-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #0a7c0a;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    position: relative;
    z-index: 4;
}

.service-btn:hover {
    background: #055;
}


/* AGENT SECTION */
.agents-hold {
    display: flex;
    flex-direction: row;   
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 20px 20px;
}

.agents-section {
    margin: 40px auto;
    text-align: center;
    width: 600px;
}

.agents-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #050;
    font-weight: bold;
}

/* GRID */
.agents-container {
    background: #fff;
    display: flex;
    gap: 15px;
    padding: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    border-radius: 16px;
    border: 1px solid #090;
    scrollbar-color: #090 #fff;
    scrollbar-width: thin;
}

/* AGENT CARD */
.agent-card {
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex: 0 0 210px;
    scroll-snap-align: center;
    transition: transform .2s ease;
}

.agent-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.agent-card img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

#avatar {
    width: 220px; 
    height: 220px;
    border-radius: 50%;
    background: rgba(0, 39, 37, 0.726);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 5rem;
    color: #ffffff;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #66eae3;
}

/* TEXT */
.agent-card h3 {
    margin: 10px 0 5px;
    font-size: 20px;
    font-weight: bold;
}

.agent-card p {
    font-size: 14px;
    color: #00463a;
    margin-bottom: 15px;
}

/* BUTTON */
.agent-btn {
    display: inline-block;
    padding: 8px 18px;
    background: #099;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: background .2s;
}

.agent-btn:hover {
    background: #055;
}

.join-agent {
    background: #055;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
}

.join-agent h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.join-agent p {
    font-size: 1.1rem;
    line-height: 1.7rem;
    margin: 15px auto;
    max-width: 600px;
}

.agent-benefits {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    text-align: left;
    max-width: 600px;
}

.agent-benefits li {
    background: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #fff;
}

.link-to-join {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link-to-join a {
    background: #fff;
    color: #090;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

.link-to-join img {
    width: 45px;
    margin-left: 10px;
}

.trust-stats {
    background: #fff;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    padding: 60px 20px;
    text-align: center;
}

.stats-box {
    background: #f4fdf4;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.stats-box h2 {
    font-size: 2.8rem;
    color: #0a7c0a;
}

.stats-box p {
    font-weight: bold;
    color: #444;
}

.why-us {
    background: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}

.why-container {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.why-box {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.why-box i {
    font-size: 40px;
    color: #0a7c0a;
    margin-bottom: 15px;
}



.map {
    width: 100%;
    display: flex;
    justify-content: center;   /* centers horizontally */
    align-items: center;       /* centers vertically */
    padding: 40px 0;
}

.map iframe {
    width: 90%;
    max-width: 800px;          /* keeps it neat on large screens */
    height: 450px;
    border-radius: 10px;
    border: 0;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}

.clients-feedback {
    position: fixed;
    top: 55%;
    transform: translateY(-50%) translateX(-78%);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    z-index: 999;
}

.feedback-panel {
    width: 300px;
    background: #1a1a2e;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #0d7068;
    color: #fff;
}
.feedback-header h3 { font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }
.feedback-close {
    background: none; border: none; color: #fff;
    font-size: 1rem; cursor: pointer; opacity: 0.8;
}
.feedback-close:hover { opacity: 1; }

.clients-container {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 12px;
    scrollbar-width: thin;
    scrollbar-color: #0d7068 transparent;
    max-height: 180px;
}

.clients-feed {
    flex: 0 0 200px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 12px;
    border-radius: 10px;
    color: #fff;
}
.clients-feed .feed-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #66eae3;
    margin-bottom: 4px;
}
.clients-feed .feed-stars { color: #f59e0b; font-size: 0.7rem; margin-bottom: 6px; }
.clients-feed p { font-size: 0.78rem; color: #ccc; line-height: 1.5; }

.feedback-loading { color: #888; padding: 20px; text-align: center; width: 100%; }

.feedback-form {
    padding: 12px 14px 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feedback-stars { display: flex; gap: 6px; }
.feedback-stars i {
    font-size: 1.2rem;
    color: #444;
    cursor: pointer;
    transition: color 0.2s;
}
.feedback-stars i.active { color: #f59e0b; }

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 8px 10px;
    color: #fff;
    font-size: 0.82rem;
    font-family: inherit;
    resize: none;
    outline: none;
    transition: border 0.2s;
}
.feedback-form input::placeholder,
.feedback-form textarea::placeholder { color: #666; }
.feedback-form input:focus,
.feedback-form textarea:focus { border-color: #0d7068; }

.feedback-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#feedbackCharCount { font-size: 0.72rem; color: #666; }
#feedbackSubmit {
    padding: 7px 16px;
    background: #0d7068;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}
#feedbackSubmit:hover { background: #0a5a52; }
#feedbackSubmit:disabled { opacity: 0.6; cursor: not-allowed; }

.clients-feedback.feed-move {
    transform: translateY(-50%) translateX(0%);
}

#client-btn {
    transform: rotate(90deg);
    padding: 10px 40px;
    color: #fff;
    background: #055;
    display: grid;
    margin-left: -23px;
    cursor: pointer;
    z-index: 999;
    border-radius: 0 0 8px 8px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    user-select: none;
}
#client-btn.feed-move { background: #0d7068; }

.feeling {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: none;
    z-index: 20;
}

.feeling h3 {
    color: #fff;
}

.f-container {
    display: flex;
    gap: 20px;
}

.f-container span {
    padding: 10px 10px;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #00854d;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.bgf {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.63);
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1000;
}

.chat-us-wa {
    position: fixed;
    bottom: 5%;
    right: 7%;
    z-index: 999;
}

.wa-link {
    display: flex;
    gap: 20px;
    flex-direction: column;
    text-align: center;
    cursor: pointer;
    z-index: 999;
}

.wa-link span i {
    color: #090;
    font-size: 40px;
}

/* Modern Login Section */
.login-cancel {
    position: absolute;
    top: 14px;
    right: 16px;
    background: #f5f5f5;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1rem;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    z-index: 1;
}
.login-cancel:hover { background: #fee; color: #e00; }

.login {
    position: fixed;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    max-width: 90vw;
    background: rgb(255, 255, 255);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 2.5rem 2rem;
    text-align: center;
    overflow-x: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

.login.log {
    top: 50%;
    transform: translate(-50%, -50%);
}

.login h1 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 2rem;
    font-weight: 600;
    background-clip: text;
}

.login > form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login > form.hidden {
    display: none;
}

/* Input Styles */
.login > form > input,
.login > form > span > input {
    width: 100%;
    height: 50px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #333;
    outline: none;
}

.login > form > input:focus,
.login > form > span > input:focus {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.login > form > input::placeholder,
.login > form > span > input::placeholder {
    color: #6c757d;
    font-weight: 400;
}

/* Password Input Container */
.login > form > span {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.login > form > span > input {
    padding-right: 3rem !important;
    flex: 1;
    width: 100%;
}

.login > form > span > i {
    position: absolute !important;
    right: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #333333 !important;
    cursor: pointer !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease;
    z-index: 100 !important;
    pointer-events: auto !important;
    display: inline-block !important;
    line-height: 1;
    background: transparent !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.login > form > span > i:hover {
    color: #667eea !important;
    transform: translateY(-50%) scale(1.1) !important;
}

/* Specific targeting for eye icons */
#login-eye,
#signup-eye {
    position: absolute !important;
    right: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #333333 !important;
    cursor: pointer !important;
    font-size: 1.2rem !important;
    z-index: 100 !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}
.terms-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-top: 2px;
}
.terms-checkbox label {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}
.terms-checkbox a {
    color: #667eea;
    text-decoration: none;
}
.terms-checkbox a:hover {
    text-decoration: underline;
}

/* Submit Button */
.login > form > input[type="submit"] {
    background: linear-gradient(135deg, #055 0%, #005457 100%);
    color: white;
    border: none;
    height: 50px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.login > form > input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.login > form > input[type="submit"]:active {
    transform: translateY(0);
}

.login > form > input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.login > form > input[type="submit"]:hover::before {
    width: 300px;
    height: 300px;
}

/* Link to Switch Forms */
#link-to-signup,
#link-to-login {
    margin-top: 1rem;
    color: #667eea;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
}

#link-to-signup:hover,
#link-to-login:hover {
    color: #764ba2;
    transform: translateY(-1px);
}

/* Login Button (Top Right) */
#login-nav {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #088 0%, #063d09 100%);
    color: white;
    padding: 0.65rem 1.3rem;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    z-index: 100;
}
#login-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #088 0%, #4ba550 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    z-index: 100;
}

#login-agent-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #088 0%, #3ba040 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: clamp(0.7rem, 5vw, 0.5rem);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    z-index: 100;
}

.hold-login {
    position: absolute;
    left: 0;
    top: 120%;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    z-index: -1;
    /* hidden behind the login button — shifted left, invisible */
    transform: translateX(10%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
    white-space: nowrap;
}

/* when open, slide out to the left */
.hold-login.open {
    transform: translateX(calc(-10% - 8px));
    opacity: 1;
    pointer-events: all;
}

#login-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}
#login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}
#login-agent-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

#login-btn:active {
    transform: translateY(0);
}

/*user login*/
#user-log {
    position: absolute;
    top: 1rem;
    right: 2rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: bolder;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6ce6d5 0%, #06492d 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

#user-log:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Logout Button */
.btn-logout {
    position: absolute;
    top: 4rem;
    right: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #860b0b;
    background: rgba(143, 1, 1, 0.295);
    transition: all 0.2s ease;
    display: none;
    z-index: 111;
}

.btn-logout:hover {
    background: rgba(143, 1, 1, 0.295);
    color: #ff0000;
}

.btn-logout svg {
    width: 18px;
    height: 18px;
}

/* Alert Styles */
#log-alert {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #667eea;
    font-weight: 500;
    color: #333;
    z-index: 1001;
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
    transition: all 0.3s ease;
}

#log-alert.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

#log-alert.success {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
}

#log-alert.error {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
}


/* Responsive Design */

@media (max-width: 768px) {
    .login {
        width: 350px;
        padding: 2rem 1.5rem;
    }
    
    .login h1 {
        font-size: 1.75rem;
    }
    
    #login-btn {
        top: 5rem;
        right: 1rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .login {
        width: 320px;
        padding: 1.5rem 1rem;
    }
    
    .login h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .login > form {
        gap: 1.25rem;
    }
    
    .login > form > input,
    .login > form > span > input {
        height: 45px;
        font-size: 0.95rem;
    }
}

/* Animation for form switching */
.login > form {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state for submit button */
.login > form > input[type="submit"].loading {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    cursor: not-allowed;
}

.login > form > input[type="submit"].loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Password Strength Indicator */
.password-strength {
    display: none;
    margin-top: -0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.strength-bar {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    width: 0%;
    background: #ff4444;
    border-radius: 2px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.strength-requirements {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.req {
    font-size: 0.8rem;
    color: #ff4444;
    transition: color 0.3s ease;
}

.req:before {
    margin-right: 0.5rem;
}

.contact-section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 20px) rotate(5deg); }
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Contact Badge */
.contact-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #39b4aa 0%, #18725c 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(102, 234, 201, 0.3);
    z-index: 100;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.badge-icon {
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.badge-text {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* Contact Info Section */
.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #66eae3 0%, #0d7068 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Info Cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.phone-icon {
    background: linear-gradient(135deg, #66eab3 0%, #4b91a2 100%);
}

.email-icon {
    background: linear-gradient(135deg, #008177 0%, #01718d 100%);
}

.info-card:hover .card-icon {
    transform: rotate(10deg) scale(1.1);
}

.card-content h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
}

.card-content p {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #764ba2;
    gap: 10px;
}

/* Social Links Section */
.social-links-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e8ecf1;
}

.social-links-section h4 {
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
}

.info-link {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-icon img {
    width: 28px;
    height: 28px;
    filter: invert(1);
    object-fit: contain;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.social-icon.facebook:hover {
    background: linear-gradient(135deg, #3b5998 0%, #2d4373 100%);
}

.social-icon.whatsapp:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-icon.email:hover {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
}

.social-icon:hover img {
    filter: brightness(1) invert(0);
    transform: scale(1.1);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.form-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #66eabe 0%, #02635b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: #666;
    font-size: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.form-group label i {
    color: #667eea;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e8ecf1;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f5f7fa;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.error-message {
    color: #f5576c;
    font-size: 13px;
    margin-top: 5px;
    min-height: 18px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #66eac9 0%, #055361 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::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.5s ease;
}

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

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* ── FOOTER ──────────────────────────────────────────── */

.footer-link { color: #0d7068; text-decoration: none; font-weight: 700; }

/* Responsive Design */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 40px;
    }

    .contact-badge {
        top: 0;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 15px;
    }

    .contact-info h2,
    .form-header h2 {
        font-size: 24px;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .card-icon {
        margin: 0 auto;
    }

    .info-link {
        justify-content: center;
    }

    .contact-badge {
        padding: 10px 20px;
        font-size: 14px;
    }
    .badge-text {
        font-size: 14px;
    }
}

/* Footer Container */
.brun-footer {
    background-color: #ffffff;
    max-width: 1400px;
    margin: 2rem auto;
    border-radius: 32px;
    overflow: hidden;
    padding-bottom: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Giant Logo Header Split Section */
.footer-logo-wrap {
    background-color: #0d441d; /* Deep Forest Green */
    color: #ffffff;
    overflow: hidden;
    position: relative;
    height: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.giant-logo {
    font-size: 26vw; /* Scale dynamically with screen width */
    font-weight: 700;
    line-height: 0.67;
    letter-spacing: -0.05em;
    margin-bottom: -1vw;
    pointer-events: none;
    width: 100%;
    text-align: center;
}

/* Footer Grid Content */
.footer-content {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.2fr 0.6fr;
    gap: 2rem;
    padding: 4rem 3.5rem 3rem 3.5rem;
}

/* Column General Styling */
.footer-col h3 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: none;
    margin-bottom: 1.5rem;
    color: #111;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.65rem;
}

.footer-col ul li a {
    text-decoration: none;
    color: #444444;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #000000;
}

.verified-badge>img {
    width: 70px;
    mix-blend-mode: darken;
}

/* Left Brand Column Styling */
.brand-col {
    display: flex;
    flex-direction: column;
}

.brand-statement {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.brand-subtext {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Social Media Icons */
.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.25rem;
}

.social-links a {
    color: #111;
    font-size: 1rem;
    transition: opacity 0.2s;
}

.social-links a:hover {
    opacity: 0.6;
}

/* Badge Layout Placement */
.badge-col {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

/* Bottom Copyright Bar */
.footer-bottom {
    padding: 0 3.5rem;
    margin-top: 2rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #666;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 3rem 2rem;
    }
    .badge-col {
        grid-column: span 3;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .brun-footer {
        margin: 1rem;
        border-radius: 20px;
    }
    .footer-logo-wrap {
        height: 180px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem 2rem;
    }
    .newsletter-form input {
        width: 100%;
        max-width: none;
    }
    .badge-col {
        grid-column: span 1;
    }
    .footer-bottom {
        padding: 0 2rem;
    }
}

/* Responsive password strength */
@media (max-width: 480px) {
    .password-strength {
        padding: 0.5rem;
        margin-top: -0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .req {
        font-size: 0.75rem;
    }
}


/* ===== MOBILE ADJUSTMENTS ===== */

@media (max-width: 1054px) {
    .agents-hold {
        flex-direction: column;
        align-items: center;
    }
    .agents-section {
       width: 98%;
    }
}

@media (max-width: 1000px) {

    .links {
        display: none;
    }
    .hamburger {
        display: flex;
    }

     .listings {
         width: 100%;
         grid-template-columns: repeat(3, 1fr);
     }
}

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

    .service-box.highlight {
        transform: scale(1);
    }
}

@media (max-width: 868px) {
    .hold-hero-text p { font-size: 1.5rem; }
    .hold-hero-text h1 { font-size: 3.2rem; }
    .hold-hero-text h1 span { font-size: 3.8rem; }

    .hero-brand {
        width: 60vw;
        height: 100vw;
    }

    .search-bar {
        padding: 32px 16px;
    }
    .search-tagline { font-size: 0.875rem; }

    .about {
        display: flex;
        gap: 10%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    .about-left {
        padding: 20px 40px;
        max-width: 600px;
        width: 100%;
    }
    .about-left>h1 {
        font-size: 2rem;
        padding: 20px 0;
    }
    
    .about-left>p {
        font-size: 1rem;
    }
    
    .about-right {
        padding: 20px 40px;
    }
    
    .about-right>ul>li {
        display: flex;
        gap: 40px;
    }

    .about-right>ul>li>.right {
        font-size: 10px;
    }
    
    .left>img {
        transform: scale(0.8);
    }

     .listings {
         width: 100%;
         grid-template-columns: repeat(2, 1fr);
     }
}

@media (max-width: 816px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
.load {
    left: 40%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.8);
}
}

@media (max-width: 809px) {
    .trust-stats {
        gap: 10px;
        padding: 60px 10px;
    }

    .stats-box {
        padding: 10px;
    }

    .stats-box h2 {
        font-size: 1.2rem;
        color: #0a7c0a;
    }
    
    .stats-box p {
        font-weight: bold;
        font-size: 0.7rem;
        color: #444;
    }
}

@media (max-width: 580px) {
     .listings {
         width: 100%;
         grid-template-columns: repeat(1, 1fr);
     }
    .why-us {
        padding: 80px 20px;
        text-align: center;
    }
    
    .why-container {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 10px;
        max-width: 1000px;
        margin: auto;
    }
    
    .why-box {
        background: #fff;
        padding: 35px 10px;
        border-radius: 18px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
    
    .why-box i {
        font-size: 40px;
        color: #0a7c0a;
        margin-bottom: 15px;
    }
}
@media (max-width: 480px) {
    .hold-hero-text p { font-size: 1.2rem; }
    .hold-hero-text h1 { font-size: 2.4rem; }
    .hold-hero-text h1 span { font-size: 5rem; }

    .hero-brand {
        width: 70vw;
        height: 100vw;
    }
}

.section {
    transform: translateY(40px);
    opacity: 0;
    transition: all 1.2s;
}

.section.action {
    transform: translateY(0px);
    opacity: 1;
}

.section2 {
    transform: translateX(40px);
    opacity: 0;
    transition: all 1.2s;
}

.section2.action2 {
    transform: translateX(0px);
    opacity: 1;
}

#alert {
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 20px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
    font-weight: bold;
    display: none;
    z-index: 99999;
}

#alert.success {
    display: block;
    color: #070;
}

#alert.error {
    display: block;
    color: #900;    
}

.serve-terms {
    display: none;
    gap: 6px;
    position: fixed;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffffb7;
    padding: 10px 15px;
    border-radius: 9px;
    border-left: solid #008177 3px;
    border-right: solid #008177 3px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* ── Real-time Property Toast Notifications ─────────── */
#realtime-toast-container {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 10005;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    max-width: 380px;
    width: 90%;
}

.property-toast {
    pointer-events: auto;
    background: rgba(13, 112, 104, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    display: flex;
    gap: 14px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.property-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.property-toast:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    background: rgba(11, 99, 92, 0.99);
}

.toast-img {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.toast-body {
    flex-grow: 1;
    min-width: 0;
}

.toast-badge {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #8af7eb;
    margin-bottom: 2px;
}

.toast-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toast-loc {
    font-size: 11px;
    color: #c9ece8;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toast-price {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    margin: 0;
}

.toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 22px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
    align-self: flex-start;
    margin-top: -3px;
}

.toast-close:hover { color: #fff; }

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #50e3c2;
    width: 100%;
    transform-origin: left;
    animation: toastProgress 6s linear forwards;
}

@keyframes toastProgress {
    to { transform: scaleX(0); }
}

/* ── Font Awesome animation fixes for older Safari / iPhone 6s ── */

/* fa-spin */
#fa-spinner {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

@-webkit-keyframes fa-spin {
    0%   { -webkit-transform: rotate(0deg);   transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes fa-spin {
    0%   { -webkit-transform: rotate(0deg);   transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

/* fa-bounce */
.fa-bounce {
    -webkit-animation: fa-bounce 1s infinite;
    animation: fa-bounce 1s infinite;
}

@-webkit-keyframes fa-bounce {
    0%, 100% { -webkit-transform: translateY(0);    transform: translateY(0); }
    50%       { -webkit-transform: translateY(-6px); transform: translateY(-6px); }
}

@keyframes fa-bounce {
    0%, 100% { -webkit-transform: translateY(0);    transform: translateY(0); }
    50%       { -webkit-transform: translateY(-6px); transform: translateY(-6px); }
}

/* fa-pulse (used in loading spinners) */
.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

/* Ensure animation runs on all webkit browsers */
.fa-spin,
.fa-bounce,
.fa-pulse {
    -webkit-animation-play-state: running;
    animation-play-state: running;
}

/* ── Manual spin animation — replaces fa-spin for full iOS/Safari support ── */
@-webkit-keyframes spin-rotate {
    0%   { -webkit-transform: rotate(0deg)   translateZ(0); transform: rotate(0deg)   translateZ(0); }
    100% { -webkit-transform: rotate(360deg) translateZ(0); transform: rotate(360deg) translateZ(0); }
}
@keyframes spin-rotate {
    0%   { -webkit-transform: rotate(0deg)   translateZ(0); transform: rotate(0deg)   translateZ(0); }
    100% { -webkit-transform: rotate(360deg) translateZ(0); transform: rotate(360deg) translateZ(0); }
}

.spin-icon {
    display: inline-block;
    -webkit-animation: spin-rotate 1s linear infinite;
    animation: spin-rotate 1s linear infinite;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}
/* Container Box - Sized specifically for inline forms/bars */
.ai-search-companion {
    position: relative;
    width: 45px;
    height: 45px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
    perspective: 200px;
}

/* Floating Shadow */
.ai-search-companion .agent-shadow {
    position: absolute;
    bottom: 2px;
    left: 12px;
    width: 20px;
    height: 3px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    animation: companionShadow 5s ease-in-out infinite;
}

/* Torso Base */
.ai-search-companion .agent-body {
    position: absolute;
    bottom: 6px;
    left: 11px;
    width: 22px;
    height: 18px;
    background: linear-gradient(135deg, #31d9f777, #003a37);
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(29, 78, 216, 0.3);
}

/* Humanistic Head Motion */
.ai-search-companion .agent-head {
    position: absolute;
    top: 4px;
    left: 9px;
    width: 26px;
    height: 22px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transform-origin: bottom center;
    animation: companionHead 5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

/* Visor Screen */
.ai-search-companion .agent-visor {
    width: 20px;
    height: 11px;
    background: #1e293b;
    border-radius: 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 2px;
    box-sizing: border-box;
}

/* Glowing Eyes */
.ai-search-companion .agent-eye {
    width: 3.5px;
    height: 3.5px;
    background-color: #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 4px #38bff8;
    animation: companionBlink 3.5s infinite;
}

/* Left Balance Arm */
.ai-search-companion .agent-arm-left {
    position: absolute;
    left: 5px;
    top: 24px;
    width: 5px;
    height: 11px;
    background: linear-gradient(to bottom, #e2e8f0, #cbd5e1);
    border-radius: 3px;
    transform-origin: top center;
    animation: companionLeftArm 2.5s ease-in-out infinite alternate;
}

/* Right Scanning Arm Assembly */
.ai-search-companion .agent-arm-right-container {
    position: absolute;
    right: 3px;
    top: 22px;
    width: 16px;
    height: 20px;
    transform-origin: 3px 3px;
    animation: companionRightArm 4s ease-in-out infinite;
    z-index: 10;
}

.ai-search-companion .agent-arm-right {
    width: 5px;
    height: 11px;
    background: linear-gradient(to bottom, #cbd5e1, #94a3b8);
    border-radius: 3px;
    transform: rotate(-25deg);
}

/* Gripping Hand Point */
.ai-search-companion .agent-hand-grip {
    position: absolute;
    left: 2px;
    top: 7px;
    width: 6px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Handheld Glass Tool */
.ai-search-companion .agent-magnifying-glass {
    position: absolute;
    bottom: 2px;
    left: -2px;
    width: 9px;
    height: 9px;
    border: 1.5px solid #f59e0b;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.08);
    box-shadow: 0 0 4px rgba(245, 158, 11, 0.4);
    transform: rotate(-15deg);
}

/* Tool Handle */
.ai-search-companion .agent-magnifying-glass::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 3.5px;
    width: 1.5px;
    height: 8px;
    background-color: #d97706;
    border-radius: 1px;
}

/* --- Micro Animations --- */
@keyframes companionHead {
    0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
    20% { transform: translateY(0.5px) rotateX(8deg) rotateY(-10deg); }
    40% { transform: translateY(-0.5px) rotateX(-4deg) rotateY(12deg); }
    65% { transform: translateY(0.5px) rotateX(6deg) rotateY(8deg); }
    85% { transform: translateY(-0.5px) rotateX(-6deg) rotateY(-6deg); }
}

@keyframes companionRightArm {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    30% { transform: rotate(-16deg) translateX(-1px); }
    70% { transform: rotate(10deg) translateY(1px); }
}

@keyframes companionLeftArm {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(8deg); }
}

@keyframes companionBlink {
    0%, 88%, 94%, 100% { transform: scaleY(1); }
    91%, 97% { transform: scaleY(0.1); }
}

@keyframes companionShadow {
    0%, 100% { transform: scaleX(1); opacity: 0.7; }
    40% { transform: scaleX(1.1); opacity: 0.4; }
    85% { transform: scaleX(0.9); opacity: 0.8; }
}