/* ==========================================
   GLOBAL STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D4A574;
    --secondary-color: #F5A623;
    --green: #337523 ;
    --dark-bg: #1a1a1a;
    --light-text: #ffffff;
    --border-color: #404040;
    --overlay-color: rgba(0, 0, 0, 0.4);
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================
   HEADER STYLES
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* background-color: transparent; */
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%); */
    padding: 1.5rem 0;
    /* backdrop-filter: blur(10px); */
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.header.scrolled,
.header[data-scrolled="true"] {
    background: #000000 !important;
    background-color: #000000 !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

/* Phone Contact (Left) */
.contact-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    grid-column: 1;
}

.contact-phone svg {
    width: 18px;
    height: 18px;
}

/* ==========================================
   LEGAL PAGES
   ========================================== */
.legal-page-section {
    padding: 9rem 0 4.5rem;
    background: radial-gradient(circle at 20% 0%, rgba(212, 165, 116, 0.16), transparent 45%),
                linear-gradient(180deg, #141414 0%, #1a1a1a 55%, #151515 100%);
}

.legal-page-card {
    max-width: 980px;
    margin: 0 auto;
    background: #222222;
    border: 1px solid rgba(212, 165, 116, 0.32);
    border-radius: 10px;
    padding: 2.25rem 2.25rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.legal-page-kicker {
    margin: 0;
    color: var(--secondary-color);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.legal-page-title {
    margin: 0.4rem 0 0;
    color: var(--primary-color);
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}

.legal-page-updated {
    margin: 0.6rem 0 0;
    color: #b6b6b6;
    font-size: 0.92rem;
}

.legal-page-content {
    margin-top: 1.7rem;
    color: #dfdfdf;
}

.legal-page-content h2 {
    margin: 1.4rem 0 0.55rem;
    color: var(--primary-color);
    font-size: 1.08rem;
    font-weight: 700;
}

.legal-page-content p {
    margin: 0;
    color: #d4d4d4;
    font-size: 0.96rem;
    line-height: 1.75;
}

.legal-page-content p + p {
    margin-top: 0.85rem;
}

.legal-page-content ul {
    margin: 0.35rem 0 0;
    padding-left: 1.2rem;
}

.legal-page-content li {
    margin-bottom: 0.45rem;
    color: #d4d4d4;
    font-size: 0.95rem;
    line-height: 1.7;
}

.legal-page-content a {
    color: var(--secondary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-page-content a:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .legal-page-section {
        padding-top: 8.2rem;
    }

    .legal-page-card {
        padding: 1.9rem 1.7rem 1.7rem;
    }
}

@media (max-width: 640px) {
    .legal-page-section {
        padding: 7.5rem 0 3rem;
    }

    .legal-page-card {
        border-radius: 8px;
        padding: 1.4rem 1.1rem 1.25rem;
    }

    .legal-page-content h2 {
        font-size: 1rem;
    }

    .legal-page-content p,
    .legal-page-content li {
        font-size: 0.92rem;
        line-height: 1.66;
    }
}

/* Navigation Menu Left */
.nav-left {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    grid-column: 2;
}

/* Logo Styles (Center) */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    grid-column: 3;
    justify-self: center;
}

.logo-icon {
    width: 50px;
    height: 65px;
    color: var(--secondary-color);
}

.logo-text {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--secondary-color);
}

/* Navigation Menu Right */
.nav-right {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    grid-column: 4;
}

/* Register Button */
.btn-register {
    grid-column: 5;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-transform: uppercase;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    min-width: 220px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    padding: 0.4rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1002;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    padding: 0.65rem 1rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-dropdown-item:hover {
    background: rgba(245, 166, 35, 0.12);
    color: var(--secondary-color);
}

/* Register Button */
.btn-register {
    background: var(--primary-color);
    color: #000;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    grid-column: 5;
}

.btn-register:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: right 0.3s ease;
    padding-top: 80px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    padding: 2rem 1.5rem;
}

.mobile-nav-link {
    display: block;
    color: var(--light-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--secondary-color);
}

.mobile-nav-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--light-text);
    background: transparent;
    border: none;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 1rem 0;
    cursor: pointer;
}

.mobile-nav-dropdown-icon {
    transition: transform 0.2s ease;
}

.mobile-nav-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.mobile-nav-dropdown .mobile-nav-link {
    padding: 0.65rem 0 0.65rem 1rem;
    font-size: 0.9rem;
    border-bottom: none;
}

.mobile-nav-dropdown.open .mobile-nav-dropdown-menu {
    max-height: 180px;
}

.mobile-nav-dropdown.open .mobile-nav-dropdown-icon {
    transform: rotate(180deg);
}

.mobile-contact-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-phone svg {
    width: 18px;
    height: 18px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 4rem;
}

/* Hero Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.9s ease;
    filter: brightness(0.6) contrast(1.1);
}

.hero-slide.active {
    opacity: 1;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(20, 20, 30, 0.5) 0%,
        rgba(80, 80, 100, 0.3) 50%,
        rgba(30, 30, 50, 0.6) 100%
    );
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--light-text);
    max-width: 800px;
    animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Title */
.hero-title {
    font-size: clamp(30px, 6vw, 80px);
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--light-text);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Hero Navigation Arrows */
.hero-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 4;
    pointer-events: none;
    width: 100%;
}

.hero-arrow {
    width: 70px;
    height: 70px;
    border: 2px solid var(--light-text);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.hero-arrow.prev {
    margin-left: 0;
}

.hero-arrow.next {
    margin-right: 0;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--light-text);
    transform: scale(1.05);
}

.hero-arrow svg {
    width: 32px;
    height: 32px;
    stroke-width: 3;
}

/* Hero Action Buttons */
.hero-actions {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 4;
}

.btn-related,
.btn-buy-now {
    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    min-width: 150px;
}

.btn-icon-svg {
    width: 18px;
    height: 18px;
}

.btn-related {
    background: #E94B4B;
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(233, 75, 75, 0.4);
}

.btn-related:hover {
    background: #D63939;
    transform: translateX(-3px);
    box-shadow: 0 6px 20px rgba(233, 75, 75, 0.5);
}

.btn-buy-now {
    background: var(--light-text);
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-buy-now:hover {
    background: #f0f0f0;
    transform: translateX(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-buy-now svg {
    stroke: #333;
}

/* Contact Badge - Removed */
.contact-badge {
    display: none;
}

/* ==========================================
   ABOUT SECTION STYLES
   ========================================== */
.about-section {
    padding: 8rem 0;
    background-color: var(--dark-bg);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* About Content - Left Side */
.about-content {
    padding-right: 2rem;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
}

/* Testimonial */
.testimonial {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-top: 3rem;
}

.testimonial-profile {
    flex-shrink: 0;
}

.testimonial-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.testimonial-content {
    flex: 1;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-signature {
    margin-top: 1rem;
}

.signature-text {
    font-family: 'Brush Script MT', cursive, 'Segoe Script', 'Comic Sans MS', sans-serif;
    font-size: 1.5rem;
    color: var(--light-text);
    font-style: italic;
}

/* Testimonial Page */
.testimonial-page-section {
    padding: 10rem 0;
    background:
        radial-gradient(circle at top, rgba(212, 165, 116, 0.14), transparent 32%),
        linear-gradient(180deg, #202020 0%, var(--dark-bg) 100%);
}

.testimonial-page-header {
    max-width: 720px;
    margin: 0 auto 4rem;
    text-align: center;
}

.testimonial-page-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border: 1px solid rgba(245, 166, 35, 0.8);
    border-radius: 999px;
    color: var(--secondary-color);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.testimonial-page-title {
    font-size: clamp(1rem, 3vw, 3rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.testimonial-page-subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.testimonial-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.testimonial-page-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 2.4rem;
    border: 1px solid rgba(212, 165, 116, 0.14);
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
}

.testimonial-page-card-featured {
    border-color: rgba(245, 166, 35, 0.34);
    transform: translateY(-10px);
}

.testimonial-page-quote-mark {
    font-size: 5rem;
    line-height: 1;
    color: rgba(212, 165, 116, 0.32);
    margin-bottom: 1rem;
}

.testimonial-page-copy {
    flex: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.95;
}

.testimonial-page-copy span {
    color: var(--secondary-color);
}

.testimonial-page-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-page-author img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(245, 166, 35, 0.55);
    background: #2b2b2b;
}

.testimonial-page-author h2 {
    margin: 0 0 0.25rem;
    color: var(--light-text);
    font-size: 1.25rem;
    font-weight: 600;
}

.testimonial-page-author p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.95rem;
}

/* About Images - Right Side */
.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: 100%;
    min-height: 500px;
}

.about-image-main {
    grid-column: 1;
    position: relative;
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-secondary {
    grid-column: 2;
    position: relative;
    overflow: hidden;
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-main:hover img,
.about-image-secondary:hover img {
    transform: scale(1.05);
}

/* Responsive Styles for About Section */
@media (max-width: 1024px) {
    .about-section {
        padding: 6rem 0;
    }

    .about-grid {
        gap: 3rem;
    }

    .about-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .about-images {
        min-height: 400px;
    }

    .testimonial-page-section {
        padding: 6rem 0;
    }

    .testimonial-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-page-card-featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        padding-right: 0;
    }

    .about-heading {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .testimonial {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonial-profile img {
        width: 70px;
        height: 70px;
    }

    .about-images {
        grid-template-columns: 1fr;
        gap: 1rem;
        min-height: 600px;
    }

    .about-image-main,
    .about-image-secondary {
        grid-column: 1;
        min-height: 280px;
    }

    .testimonial-page-section {
        padding: 4.5rem 0;
    }

    .testimonial-page-header {
        margin-bottom: 2.5rem;
    }

    .testimonial-page-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-page-card {
        padding: 2rem;
        border-radius: 24px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-heading {
        font-size: 1.4rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .testimonial {
        margin-top: 2rem;
    }

    .testimonial-profile img {
        width: 60px;
        height: 60px;
    }

    .testimonial-quote {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .signature-text {
        font-size: 1.2rem;
    }

    .about-images {
        gap: 0.75rem;
        min-height: 500px;
    }

    .about-image-main,
    .about-image-secondary {
        min-height: 240px;
    }

    .testimonial-page-kicker {
        padding: 0.7rem 1.3rem;
        font-size: 0.78rem;
        letter-spacing: 0.14em;
    }

    .testimonial-page-title {
        font-size: 2rem;
    }

    .testimonial-page-copy {
        font-size: 0.96rem;
        line-height: 1.8;
    }

    .testimonial-page-author img {
        width: 60px;
        height: 60px;
    }

    .testimonial-page-author h2 {
        font-size: 1.05rem;
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1124px) {
    .nav-left,
    .nav-right,
    .contact-phone {
        display: none;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .logo {
        flex-direction: row;
        gap: 0.5rem;
        order: 1;
        margin-right: auto;
    }

    .logo-icon {
        width: 35px;
        height: 45px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .btn-register {
        order: 2;
    }

    .hamburger-menu {
        display: flex;
        order: 3;
    }

    .hero-nav {
        left: 0;
        right: 0;
    }

    .hero-arrow {
        width: 60px;
        height: 60px;
    }

    .hero-actions {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .contact-phone {
        display: none;
    }

    .logo {
        flex-direction: row;
        order: 1;
        margin-right: auto;
    }

    .logo-icon {
        width: 28px;
        height: 36px;
    }

    .logo-text {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .btn-register {
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
        order: 2;
    }

    .hamburger-menu {
        display: flex;
        order: 3;
    }

    .hero-title {
        font-size: clamp(36px, 8vw, 60px);
    }

    .hero-subtitle {
        font-size: clamp(14px, 2vw, 20px);
        margin-bottom: 2rem;
    }

    .hero-nav {
        left: 0;
        right: 0;
    }

    .hero-arrow {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }

    .hero-arrow svg {
        width: 24px;
        height: 24px;
    }

    .hero-actions {
        right: 0.5rem;
        gap: 0.75rem;
    }

    .btn-related,
    .btn-buy-now {
        padding: 0.7rem 1.2rem;
        font-size: 0.7rem;
        min-width: 120px;
    }

    .btn-icon-svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.75rem 0;
    }

    .container {
        padding: 0 0.5rem;
    }

    .header-content {
        display: flex;
        gap: 0.75rem;
    }

    .logo {
        flex-direction: row;
        gap: 0.3rem;
    }

    .logo-icon {
        width: 24px;
        height: 32px;
    }

    .logo-text {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .btn-register {
        padding: 0.5rem 0.8rem;
        font-size: 0.65rem;
        letter-spacing: 0.3px;
    }

    .hamburger-menu {
        width: 24px;
        height: 18px;
    }

    .hamburger-menu span {
        height: 2.5px;
    }

    .hero {
        padding-top: 3rem;
    }

    .hero-title {
        font-size: clamp(28px, 6vw, 48px);
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: clamp(12px, 1.5vw, 16px);
        margin-bottom: 1.5rem;
    }

    .hero-nav {
        left: 0;
        right: 0;
    }

    .hero-arrow {
        width: 45px;
        height: 45px;
    }

    .hero-arrow svg {
        width: 20px;
        height: 20px;
    }

    .hero-actions {
        top: auto;
        bottom: 1rem;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
        gap: 0.5rem;
    }

    .btn-related,
    .btn-buy-now {
        padding: 0.6rem 1rem;
        font-size: 0.65rem;
        min-width: 100px;
    }

    .btn-icon-svg {
        width: 12px;
        height: 12px;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-actions {
    animation: slideInRight 0.8s ease 0.5s both;
}



/* ==========================================
   FOOTER STYLES
   ========================================== */
.footer {
    background-color: var(--dark-bg);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 0rem;
    margin-top: 6rem;
}

.footer-content {
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    justify-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Contact Info */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.contact-item a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Properties List */
.footer-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 0.75rem 1rem;
    width: 100%;
}

.footer-list li a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: var(--primary-color);
}

/* Office Hours */
.office-hours p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--light-text);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    background-color: rgba(212, 165, 116, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
}

.newsletter-input-group input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: none;
    color: var(--light-text);
    font-size: 0.9rem;
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    background-color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.25rem;
    color: var(--dark-bg);
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background-color: var(--secondary-color);
}

.newsletter-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0 .5rem;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo img:hover {
    opacity: 1;
}

.footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

.footer-copyright a{
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(212, 165, 116, 0.1);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.scroll-to-top.show {
    display: flex;
}

.whatsapp-icon {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    background-color: green;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-icon a i{
    color: #fff;
}



/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-list {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }

    .footer-bottom-content {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-bottom-content > * {
        width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .scroll-to-top {
        bottom: 4rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    .whatsapp-icon{
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    .office-hours{
        padding-left: 30px;
    }
    .footer-social{
        padding-left: 30px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
        margin-top: 3rem;
    }

    .footer-grid {
        gap: 1.5rem;
    }

    .footer-list {
        grid-template-columns: 1fr;
    }

    .footer-heading {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .contact-item, .footer-list li a, .office-hours p {
        font-size: 0.85rem;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-input-group input, .newsletter-btn {
        width: 100%;
    }

    .footer-logo img {
        height: 45px;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }
}

/* ==========================================
   BEST OFFERS SECTION
   ========================================== */
.best-offers-section {
    padding: 5rem 0;
    background-color: var(--dark-bg);
    position: relative;
}

.offers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.offers-filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.offers-tabs,
.offers-subtabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.offers-tabs {
    justify-content: center;
}

.offers-subtabs-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.offers-subtabs-label {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    opacity: 0.85;
}

.offers-subtabs {
    justify-content: center;
    padding-left: 0.15rem;
}

.offers-tab,
.offers-subtab {
    border: 1px solid rgba(212, 165, 116, 0.45);
    background: rgba(255, 255, 255, 0.03);
    color: #d5d5d5;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.offers-tab {
    padding: 0.65rem 1.2rem;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.offers-subtab {
    padding: 0.5rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.offers-tab.active,
.offers-subtab.active,
.offers-tab:hover,
.offers-subtab:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-bg);
}

.offer-heading{
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.offers-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin: 0;
}

.offers-subtitle {
    margin: 0;
    color: #c7c7c7;
    font-size: 0.95rem;
    max-width: 42rem;
}

.offers-nav {
    display: flex;
    gap: 1rem;
}

.offers-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0;
}

.offers-arrow svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.offers-arrow:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.offers-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.offers-arrow:disabled:hover {
    background: transparent;
    color: var(--primary-color);
}

/* Carousel Styles */
.offers-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    margin: 0 -2rem;
    padding: 0 2rem;
}

.offers-carousel {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    will-change: transform;
}

.offer-card.is-hidden {
    display: none;
}

.offer-card {
    flex: 0 0 calc(33.333% - 1.35rem);
    background: #252525;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 4px;
}

.offer-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.offer-card-image {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%;
    overflow: hidden;
    background: #1a1a1a;
}

.offer-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-card-image img {
    transform: scale(1.05);
}

.offer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 10;
}

.offer-badge.new {
    background: var(--green);
    color: #000;
}

.offer-badge.related {
    background: var(--green);
    color: #fff;
}

.offer-card-content {
    padding: 1.5rem;
}

.offer-location {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}

.offer-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-text);
    margin: 0 0 0.75rem 0;
}

.offer-details {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.offers-empty-state {
    margin-top: 1.25rem;
    color: #b4b4b4;
    font-size: 0.95rem;
}

/* Responsive Styles for Best Offers */
@media (max-width: 1024px) {
    .offers-title {
        font-size: 2rem;
    }

    .offer-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .offers-carousel {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .best-offers-section {
        padding: 3rem 0;
    }

    .offers-header {
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
        text-align: center;
    }

    .offers-nav {
        margin-top: 1.5rem;
        gap: 0.75rem;
    }

    .offers-filters {
        margin-bottom: 1.5rem;
    }

    .offers-subtabs {
        padding-left: 0;
    }

    .offers-arrow {
        width: 40px;
        height: 40px;
    }

    .offers-arrow svg {
        width: 20px;
        height: 20px;
    }

    .offers-title {
        font-size: 1.75rem;
    }

    .offer-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .offers-carousel-wrapper {
        margin: 0 -1rem;
        padding: 0 1rem;
    }

    .offers-carousel {
        gap: 1rem;
    }

    .offer-card-content {
        padding: 1rem;
    }

    .offer-price {
        font-size: 1.5rem;
    }

    .offer-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 640px) {
    .best-offers-section {
        padding: 2rem 0;
    }

    .offers-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .offers-header {
        gap: 1rem;
    }

    .offers-subtitle {
        font-size: 0.85rem;
    }

    .offers-tab {
        font-size: 0.8rem;
        padding: 0.52rem 0.95rem;
    }

    .offers-subtab {
        font-size: 0.74rem;
        padding: 0.45rem 0.85rem;
    }

    .offer-card {
        flex: 0 0 100%;
    }

    .offer-price {
        font-size: 1.75rem;
    }

    .offer-location {
        font-size: 0.8rem;
    }

    .offer-details {
        font-size: 0.85rem;
    }

    .offers-carousel-wrapper {
        margin: 0 -1rem;
        padding: 0 1rem;
    }

    .offers-carousel {
        gap: 1rem;
    }

    .offer-card-content {
        padding: 1rem;
    }
}

/* ==========================================
   POPULAR LOCALITIES SECTION
   ========================================== */
.popular-localities-section {
    background: #ece8e5;
    padding: 4.5rem 0 4rem;
}

.localities-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.localities-header-line {
    width: 220px;
    border-top: 2px dashed #204872;
}

.localities-title {
    margin: 0;
    color: var(--primary-color);
    font-size: clamp(1.8rem, 2.5vw, 3rem);
    line-height: 1;
    font-weight: 700;
}

.localities-title span {
    color: #d0322f;
}

.localities-grid {
    display: flex;
    gap: 0.75rem;
    transition: transform 0.35s ease;
    will-change: transform;
}

.localities-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.locality-card {
    position: relative;
    flex: 0 0 calc((100% - 2.25rem) / 4);
    min-height: 275px;
    overflow: hidden;
    background: #102f54;
}

.locality-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.locality-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 18%, rgba(0, 0, 0, 0.15) 58%, rgba(0, 0, 0, 0.2) 100%);
}

.locality-card h3 {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1.8rem;
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.1;
    z-index: 2;
}

.locality-card-empty {
    background: #176bc8;
}

.locality-empty-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.locality-empty-icon {
    font-size: 2.1rem;
    margin-bottom: 0.35rem;
}

.locality-empty-content p {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.25;
}

.localities-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 0;
    background: #fff;
    color: #000;
    font-size: 2rem;
    line-height: 1;
    z-index: 3;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.localities-nav-btn.prev {
    left: 0;
}

.localities-nav-btn.next {
    right: 0;
}

@media (max-width: 1200px) {
    .locality-card {
        flex: 0 0 calc((100% - 0.75rem) / 2);
    }

    .locality-card h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .popular-localities-section {
        padding: 3.2rem 0;
    }

    .localities-header-line {
        width: 100px;
    }

    .locality-card {
        flex: 0 0 100%;
    }

    .locality-card {
        min-height: 240px;
    }

    .locality-card h3 {
        font-size: 1.4rem;
        bottom: 1.2rem;
    }

    .localities-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 1.6rem;
    }
}

    /* ==========================================
       DEVELOPMENT SECTION
       ========================================== */
    .development-section {
        background: #ece8e5;
        padding: 5rem 0;
    }

    .development-head {
        text-align: center;
        margin-bottom: 3rem;
    }

    .development-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
        color: #000;
        margin: 0 0 0.75rem;
        font-weight: 600;
    }

    .development-title {
        font-size: clamp(1.5rem, 3vw, 3rem);
        line-height: 1.15;
        color: var(--primary-color);
        margin: 0;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .development-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .development-card {
        position: relative;
        overflow: hidden;
        min-height: 420px;
    }

    .development-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.35s ease;
    }

    .development-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 10%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0.25) 100%);
    }

    .development-content {
        position: absolute;
        left: 2rem;
        right: 2rem;
        bottom: 1.8rem;
        z-index: 2;
        color: #fff;
    }

    .development-content h3 {
        margin: 0 0 0.75rem;
        font-size: 2rem;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .development-content p {
        margin: 0;
        font-size: 0.95rem;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .development-card:hover img {
        transform: scale(1.06);
    }

    @media (max-width: 1100px) {
        .development-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 768px) {
        .development-section {
            padding: 3.5rem 0;
        }

        .development-head {
            margin-bottom: 2rem;
        }

        .development-card {
            min-height: 360px;
        }

        .development-content {
            left: 1.25rem;
            right: 1.25rem;
            bottom: 1.25rem;
        }

        .development-content h3 {
            font-size: 1.65rem;
        }
    }

    @media (max-width: 576px) {
        .development-grid {
            grid-template-columns: 1fr;
        }

        .development-card {
            min-height: 320px;
        }

        .development-title {
            font-size: 1.8rem;
        }

        .development-content h3 {
            font-size: 1.4rem;
        }

        .development-content p {
            font-size: 0.8rem;
            letter-spacing: 1px;
        }
    }

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    background: var(--dark-bg);
    padding: 4.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    padding: 1rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0 0 1rem;
}

.stat-label {
    margin: 0;
    color: #ffffff;
    font-size: 1.9rem;
    letter-spacing: 2px;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .stat-label {
        font-size: 1.55rem;
    }
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

    .stat-label {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 1.5rem 1rem;
        margin-bottom: 0;
    }

    .stat-item:nth-child(-n + 2) {
        padding-bottom: 1.5rem;
        margin-bottom: 0;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-label {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    background: var(--dark-bg);
    padding: 5rem 0;
    overflow: hidden;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3rem;
    align-items: center;
}

.faq-title {
    margin: 0 0 2.25rem;
    color: var(--primary-color);
    font-size: clamp(1rem, 3vw, 3rem);
    line-height: 1.2;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.02);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: .8rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.faq-icon {
    color: var(--primary-color);
    font-size: 1.25rem;
    line-height: 1;
    transition: transform 0.25s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    padding: 0 1.5rem 1.5rem;
    font-size: .8rem;
    line-height: 1.7;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-contact {
    margin: 1.75rem 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
}

.faq-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-right {
    position: relative;
    min-height: 580px;
}

.faq-main-image {
    width: 82%;
    margin-left: auto;
    border-radius: 0;
    overflow: hidden;
}

.faq-main-image img,
.faq-circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.faq-circle-image {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    left: 0;
    bottom: 1.25rem;
    border: 6px solid #111c2d;
}

@media (max-width: 1200px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .faq-right {
        min-height: 460px;
        max-width: 860px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3.5rem 0;
    }

    .faq-question {
        padding: 1rem 1.1rem;
        font-size: 0.92rem;
    }

    .faq-answer p {
        padding: 0 1.1rem 1.1rem;
        font-size: 0.95rem;
    }

    .faq-contact {
        font-size: 0.95rem;
    }

    .faq-right {
        min-height: 380px;
    }

    .faq-main-image {
        width: 100%;
    }

    .faq-circle-image {
        width: 180px;
        height: 180px;
        left: 0.75rem;
        bottom: -1rem;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.55rem;
    }

    .faq-right {
        min-height: 320px;
    }

    .faq-circle-image {
        width: 132px;
        height: 132px;
    }
}

/* ==========================================
   BLOG SECTION
   ========================================== */
.blog-section {
    background: var(--dark-bg);
    padding: 5rem 0;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.25);
}

.blog-label {
    margin: 0 0 0.8rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85);
}

.blog-title {
    margin: 0;
    font-size: clamp(1rem, 3vw, 3rem);
    line-height: 1.15;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-nav {
    display: flex;
    gap: 0.75rem;
}

.blog-arrow {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.blog-arrow:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.blog-arrow svg {
    width: 20px;
    height: 20px;
}

.blog-track-wrapper {
    overflow: hidden;
}

.blog-track {
    display: flex;
    gap: 1.75rem;
    transition: transform 0.45s ease;
}

.blog-card {
    flex: 0 0 calc(33.333% - 1.2rem);
    background: #ede9e6;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-image-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.blog-card:hover .blog-image-wrap img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    background: #f7f4f2;
    color: #9c7a57;
    border-radius: 999px;
    padding: 0.25rem 0.9rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.blog-content {
    padding: 1.65rem 1.5rem 1.45rem;
    color: #222;
}

.blog-card-title {
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-meta {
    margin: 0.95rem 0 1.15rem;
    color: #a98158;
    font-size: 0.78rem;
    letter-spacing: 0.8px;
}

.blog-excerpt {
    margin: 0;
    color: #676767;
    line-height: 1.6;
    font-size: .9rem;
}

.blog-link {
    margin-top: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #b2875f;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.blog-link span {
    font-size: 1rem;
}

@media (max-width: 992px) {
    .blog-card {
        flex: 0 0 calc(50% - 0.9rem);
    }

    .blog-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 3.5rem 0;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .blog-nav {
        align-self: flex-end;
    }

    .blog-card-title {
        font-size: 1.2rem;
    }

    .blog-excerpt {
        font-size: 0.95rem;
    }

    .blog-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .blog-track {
        gap: 1rem;
    }

    .blog-card {
        flex: 0 0 100%;
    }

    .blog-title {
        font-size: 1.7rem;
    }

    .blog-arrow {
        width: 40px;
        height: 40px;
    }

    .blog-content {
        padding: 1.1rem;
    }
}

/* ==========================================
   PARTNERS SECTION
   ========================================== */
.partners-section {
    background: var(--dark-bg);
    padding: 5rem 0 5.5rem;
    overflow: hidden;
}

.partners-title {
    margin: 0 0 3rem;
    text-align: center;
    color: var(--primary-color);
    font-size: clamp(1rem, 3vw, 3rem);
    line-height: 1.25;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.partners-marquee {
    display: flex;
    align-items: center;
    width: max-content;
    animation: partnersScroll 24s linear infinite;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-right: 1.5rem;
}

.partner-item {
    flex: 0 0 220px;
    width: 220px;
    min-width: 220px;
    max-width: 220px;
    height: 110px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(212, 165, 116, 0.35);
    /* background: rgba(255, 255, 255, 0.02); */
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0.98);
}

@keyframes partnersScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 3.5rem 0 4rem;
    }

    .partners-title {
        margin-bottom: 2rem;
    }

    .partner-item {
        flex: 0 0 160px;
        width: 160px;
        min-width: 160px;
        max-width: 160px;
        height: 82px;
        padding: 0.8rem 1rem;
    }

    .partners-marquee {
        animation-duration: 18s;
    }
}

/* ==========================================
   REGISTER SECTION
   ========================================== */
.register-section {
    background: var(--dark-bg);
    padding: 5.5rem 0 6rem;
}

.register-wrap {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.register-label {
    margin: 0;
    color: #ffffff;
    font-size: 0.82rem;
    letter-spacing: 2px;
}

.register-title {
    margin: 1rem 0 2.8rem;
    color: var(--primary-color);
    font-size: clamp(1rem, 3vw, 3rem);
    line-height: 1.1;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="tel"] {
    width: 100%;
    height: 62px;
    background: #060e1d;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    padding: 0 1.8rem;
    font-size: 1rem;
    outline: none;
}

.register-form input::placeholder {
    color: rgba(255, 255, 255, 0.82);
}

.register-form input:focus {
    border-color: rgba(212, 165, 116, 0.8);
}

.register-consent {
    margin-top: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
}

.register-consent input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.register-checkmark {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    background: #0a1222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.register-consent input:checked + .register-checkmark::after {
    content: '';
    width: 8px;
    height: 14px;
    border: solid var(--primary-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.register-consent a {
    color: var(--primary-color);
    text-decoration: underline;
}

.register-btn {
    margin: 1.7rem auto 0;
    min-width: 250px;
    height: 70px;
    border: 0;
    border-radius: 20px;
    background: #b48962;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease;
}

.register-btn:hover {
    background: #a97b52;
}

@media (max-width: 768px) {
    .register-section {
        padding: 4rem 0 4.5rem;
    }

    .register-title {
        margin-bottom: 2rem;
    }

    .register-form input[type="text"],
    .register-form input[type="email"],
    .register-form input[type="tel"] {
        height: 60px;
        padding: 0 1rem;
        font-size: 0.98rem;
    }

    .register-consent {
        font-size: 0.95rem;
    }

    .register-btn {
        min-width: 230px;
        height: 62px;
        font-size: 0.92rem;
    }
}

@media (max-width: 576px) {
    .register-title {
        font-size: 2rem;
    }

    .register-consent {
        align-items: flex-start;
        line-height: 1.5;
    }
}

/* ==========================================
   CONTACT PAGE FORM
   ========================================== */
.contact-form-section {
    /* background: linear-gradient(90deg, #151f2f 0%, #121b2b 100%); */
    background: var(--dark-bg);
    min-height: 100vh;
    padding: 8.5rem 0 5rem;
}

.contact-form-wrap {
    max-width: 1050px;
    margin: 0 auto;
}

.contact-form-label {
    margin: 0;
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.contact-form-title {
    margin: 0.75rem 0 2.75rem;
    color: var(--primary-color);
    text-align: center;
    font-size: clamp(1rem, 3vw, 3rem);
    line-height: 1.1;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.property-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.property-form-grid.two-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.property-field input,
.property-field select,
.property-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #040b19;
    color: #ffffff;
    border-radius: 6px;
    outline: none;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.property-field input,
.property-field select {
    height: 64px;
    padding: 0 1.75rem;
}

.property-field textarea {
    /* min-height: 100px; */
    resize: vertical;
    padding: 1.35rem 1.75rem;
}

.property-field input::placeholder,
.property-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.85);
}

.property-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #9ea4ae 50%), linear-gradient(135deg, #9ea4ae 50%, transparent 50%);
    background-position: calc(100% - 28px) calc(50% - 4px), calc(100% - 22px) calc(50% - 4px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.property-field input:focus,
.property-field select:focus,
.property-field textarea:focus {
    border-color: rgba(212, 165, 116, 0.8);
}

.property-form-submit {
    margin: 0.75rem auto 0;
    min-width: 290px;
    height: 74px;
    border: none;
    border-radius: 6px;
    background: #b48962;
    color: #ffffff;
    font-size: 1.05rem;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease;
}

.property-form-submit:hover {
    background: #a77b53;
}

@media (max-width: 992px) {
    .contact-form-section {
        padding-top: 7.5rem;
    }

    .contact-form-wrap {
        max-width: 860px;
    }

    .property-field input,
    .property-field select {
        height: 66px;
        padding: 0 1.2rem;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 6.8rem 0 4rem;
    }

    .contact-form-title {
        margin-bottom: 2rem;
    }

    .property-form-grid.two-cols {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .property-field textarea {
        min-height: 180px;
        padding: 1rem 1.1rem;
    }

    .property-form-submit {
        min-width: 230px;
        height: 62px;
        font-size: 0.92rem;
    }
}

/* ==========================================
   HOME CLIENT SECTION
   ========================================== */
.client-section {
    background: #121212;
    padding: 4.5rem 0;
}

.client-section .section-title {
    color: var(--primary-color);
    font-size: clamp(1.7rem, 3.2vw, 2.7rem);
    margin-bottom: 0.7rem;
    letter-spacing: 0.5px;
}

.client-section .text-muted {
    color: #bcbcbc !important;
}

.client-testimonial {
    align-items: stretch !important;
}

.client-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
}

.client-avatar {
    width: 86px;
    height: 86px;
    border: 2px solid rgba(212, 165, 116, 0.45);
    border-radius: 50%;
    padding: 0;
    background: transparent;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.client-avatar:hover,
.client-avatar.is-active {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 24px rgba(212, 165, 116, 0.24);
}

.client-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.client-content {
    flex: 1;
    min-height: 260px;
    background: #1d1d1d;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 1.8rem;
    display: flex;
    align-items: center;
}

.client-testimonial-text {
    display: none;
    width: 100%;
}

.client-testimonial-text.is-active {
    display: block;
}

.client-testimonial-text .text-mute {
    color: #cbcbcb;
    line-height: 1.75;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.client-name {
    color: var(--primary-color);
    margin: 0 0 0.35rem;
}

@media (max-width: 992px) {
    .client-section {
        padding: 3.7rem 0;
    }

    .client-images {
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
    }

    .client-content {
        width: 100%;
        min-height: 220px;
        padding: 1.4rem;
    }
}

@media (max-width: 768px) {
    .client-section {
        padding: 3rem 0;
    }

    .client-avatar {
        width: 72px;
        height: 72px;
    }

    .client-content {
        min-height: 200px;
        padding: 1.2rem;
    }

    .client-testimonial-text .text-mute {
        font-size: 0.94rem;
        line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .client-section .section-title {
        font-size: 1.45rem;
    }

    .client-avatar {
        width: 62px;
        height: 62px;
    }

    .client-content {
        border-radius: 10px;
        padding: 1rem;
    }

    .client-name {
        font-size: 1.08rem;
    }
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.ab-hero-section,
.ab-team-section,
.ab-services-section,
.ab-why-section {
    background: var(--dark-bg);
}

.ab-hero-section {
    padding: 9rem 0 5rem;
}

.ab-team-section,
.ab-services-section,
.ab-why-section {
    padding: 5rem 0 2rem;
}

.ab-hero-content,
.ab-section-head {
    text-align: center;
}

.ab-section-label {
    margin: 0;
    font-size: 0.85rem;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ab-hero-title,
.ab-section-title {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.ab-hero-title {
    margin: 0.8rem 0 1.2rem;
    font-size: clamp(1rem, 3vw, 3rem);
    line-height: 1.1;
}

.ab-hero-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.ab-section-title {
    margin: 0.75rem 0 0;
    font-size: clamp(1rem, 3vw, 3rem);
    line-height: 1.2;
}

.ab-team-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.ab-team-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #0a1222;
    overflow: hidden;
}

.ab-team-card img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    display: block;
}

.ab-team-card-body {
    padding: 1.2rem;
}

.ab-team-card-body h3 {
    margin: 0 0 0.4rem;
    color: #ffffff;
    font-size: 1.25rem;
}

.ab-team-card-body p {
    margin: 0;
    color: var(--primary-color);
}

.ab-services-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.ab-service-card {
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.6rem;
}

.ab-service-card h3 {
    margin: 0 0 0.8rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.ab-service-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.ab-why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.ab-why-list {
    margin: 1.5rem 0 0;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
}

.ab-why-right img {
    width: 100%;
    min-height: 380px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 992px) {
    .ab-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ab-why-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ab-hero-section {
        padding: 7.4rem 0 4rem;
    }

    .ab-team-section,
    .ab-services-section,
    .ab-why-section {
        padding: 4rem 0;
    }

    .ab-team-grid,
    .ab-services-grid {
        grid-template-columns: 1fr;
    }

    .ab-hero-text {
        font-size: 1rem;
    }

    .ab-team-card img {
        height: 240px;
    }

    .ab-why-right img {
        min-height: 260px;
    }
}

/* ==========================================
   BLOG PAGE
   ========================================== */
.bp-hero-section,
.bp-cards-section {
    background: var(--dark-bg);
}

.bp-hero-section {
    padding: 9rem 0 4rem;
}

.bp-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.bp-label {
    margin: 0;
    color: #ffffff;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bp-title {
    margin: 0.85rem 0 1rem;
    color: var(--primary-color);
    font-size: clamp(1rem, 3vw, 3rem);
    line-height: 1.1;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.bp-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.7;
}

.bp-cards-section {
    padding: 1.25rem 0 5rem;
}

.bp-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.bp-card {
    background: #ece7e3;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.bp-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.bp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bp-card:hover .bp-card-image img {
    transform: scale(1.05);
}

.bp-card-date {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    background: #f8f5f2;
    color: #9a7755;
    border-radius: 999px;
    padding: 0.25rem 0.85rem;
    font-size: 0.78rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.bp-card-body {
    padding: 1.3rem;
    color: #1d1d1d;
}

.bp-card-body h3 {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.bp-meta {
    margin: 0.8rem 0;
    color: #a47e58;
    font-size: 0.8rem;
    letter-spacing: 0.6px;
}

.bp-card-body p {
    margin: 0;
    color: #5c5c5c;
    line-height: 1.65;
}

.bp-card-body a {
    display: inline-block;
    margin-top: 1rem;
    color: #ad835e;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .bp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .bp-hero-section {
        padding: 7.2rem 0 3rem;
    }

    .bp-cards-section {
        padding-bottom: 4rem;
    }

    .bp-grid {
        grid-template-columns: 1fr;
    }

    .bp-subtitle {
        font-size: 1rem;
    }
}

/* ==========================================
   PROPERTY PAGE
   ========================================== */
.pp-hero-section,
.pp-cards-section {
    background: var(--dark-bg);
}

.pp-hero-section {
    padding: 9rem 0 0rem;
}

.pp-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pp-label {
    margin: 0;
    color: #ffffff;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pp-title {
    margin: 0.85rem 0 1rem;
    color: var(--primary-color);
    font-size: clamp(1rem, 3vw, 3rem);
    line-height: 1.1;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.pp-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.7;
}

.pp-cards-section {
    padding: 1.25rem 0 5rem;
}

.pp-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.pp-card {
    background: #ece7e3;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.pp-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.pp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pp-card:hover .pp-card-image img {
    transform: scale(1.05);
}

.pp-badge {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    background: #f8f5f2;
    color: #9a7755;
    border-radius: 999px;
    padding: 0.25rem 0.85rem;
    font-size: 0.78rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.pp-card-body {
    padding: 1.25rem;
}

.pp-card-body h3 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.35;
    color: #202020;
}

.pp-location {
    margin: 0.65rem 0 0.55rem;
    color: #7b7b7b;
    font-size: 0.95rem;
}

.pp-price {
    margin: 0;
    color: #a47e58;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pp-details {
    margin: 0.55rem 0 0;
    color: #5d5d5d;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .pp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .pp-hero-section {
        padding: 7.2rem 0 3rem;
    }

    .pp-cards-section {
        padding-bottom: 4rem;
    }

    .pp-grid {
        grid-template-columns: 1fr;
    }

    .pp-subtitle {
        font-size: 1rem;
    }
}

/* ==========================================
   AREA CONVERTER PAGE
   ========================================== */
.ac-page-section {
    background: var(--dark-bg);
    padding: 8.5rem 0 5rem;
}

.ac-page-header {
    margin-bottom: 1.6rem;
}

.ac-page-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.4rem;
}

.ac-breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    display: inline-flex;
    padding: 0.35rem 0.85rem;
    font-size: 0.92rem;
    color: #555;
}

.ac-breadcrumb ol li + li::before {
    content: '›';
    margin-right: 0.35rem;
    color: #999;
}

.ac-breadcrumb a {
    color: #555;
    text-decoration: none;
}

.ac-breadcrumb a:hover {
    text-decoration: underline;
}

/* Two-column layout */
.ac-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}

/* Form card */
.ac-form-card {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.ac-form-header {
    background: var(--dark-bg);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.8rem 1.2rem;
}

.ac-table {
    width: 100%;
    border-collapse: collapse;
}

.ac-table tr {
    border-bottom: 1px solid #e8e8e8;
}

.ac-table tr:last-child {
    border-bottom: none;
}

.ac-label-cell {
    width: 38%;
    padding: 0.9rem 1.2rem;
    text-align: right;
    font-weight: 500;
    font-size: 0.97rem;
    color: #555;
    background: #f7f7f7;
    border-right: 1px solid #e8e8e8;
    white-space: nowrap;
}

.ac-input-cell {
    padding: 0.75rem 1.2rem;
    background: #fff;
}

.ac-input,
.ac-select {
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 0.45rem 0.7rem;
    font-size: 0.97rem;
    color: #333;
    outline: none;
    width: 200px;
    max-width: 100%;
}

.ac-input:focus,
.ac-select:focus {
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(32,72,114,0.12);
}

.ac-result-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ac-result-input {
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 0.45rem 0.7rem;
    font-size: 0.97rem;
    color: #333;
    width: 140px;
    background: #f9f9f9;
    outline: none;
}

.ac-result-unit {
    font-size: 0.97rem;
    color: #555;
    font-style: italic;
}

.ac-btn {
    padding: 0.5rem 1.4rem;
    border: none;
    border-radius: 3px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-right: 0.4rem;
}

.ac-btn:hover {
    opacity: 0.88;
}

.ac-btn-calculate {
    background: var(--dark-bg);
    color: #fff;
}

.ac-btn-clear {
    background: #6c757d;
    color: #fff;
}

/* Sidebar */
.ac-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ac-sidebar-widget {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.ac-widget-title {
    background: var(--dark-bg);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.65rem 1rem;
    margin: 0;
    letter-spacing: 0.5px;
    border-bottom: 3px solid #a98158;
}

.ac-hot-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ac-hot-list li {
    border-bottom: 1px solid #eee;
}

.ac-hot-list li:last-child {
    border-bottom: none;
}

.ac-hot-list li a {
    display: block;
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
    color: #fff;
    text-decoration: none;
    line-height: 1.4;
    transition: background 0.15s, color 0.15s;
}

.ac-hot-list li a:hover {
    background: #f0f4f8;
    color: #a98158;
}

/* Contact widget */
.ac-contact-list {
    list-style: none;
    margin: 0;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.ac-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.45;
}

.ac-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1a2e4a;
    color: #fff;
    font-size: 0.8rem;
    margin-top: 0.1rem;
}

.ac-contact-list a {
    color: #fff;
    text-decoration: none;
}

.ac-contact-list a:hover {
    text-decoration: underline;
    color: #a98158;
}

@media (max-width: 900px) {
    .ac-layout {
        grid-template-columns: 1fr;
    }

    .ac-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ac-sidebar-widget {
        flex: 1 1 300px;
    }
}

@media (max-width: 576px) {
    .ac-label-cell {
        width: 42%;
        padding: 0.75rem 0.6rem;
        font-size: 0.88rem;
    }
    .ac-input-cell {
        padding: 0.65rem 0.6rem;
    }
    .ac-input,
    .ac-select {
        width: 100%;
    }
    .ac-sidebar {
        flex-direction: column;
    }
}

 /* real estate agent */


.rea-hero {
    padding: 8.5rem 0 5rem;
    background: var(--dark-bg);
    color: #fff;
}

.rea-hero-content {
    max-width: 760px;
}

.rea-kicker {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d4a574;
    margin-bottom: 0.75rem;
}

.rea-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.rea-hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.rea-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.rea-btn {
    display: inline-block;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
}

.rea-btn-primary {
    background: #d4a574;
    color: #111;
}

.rea-btn-primary:hover {
    background: #c8945d;
    color: #111;
}

.rea-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
}

.rea-btn-outline:hover {
    border-color: #fff;
    color: #fff;
}

.rea-section {
    padding: 4.5rem 0;
    background: var(--dark-bg);
}

.rea-section-alt {
    background: #f7f7f7;
}

.rea-head {
    max-width: 720px;
    margin-bottom: 2rem;
}

.rea-head h2 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.rea-head p{
    color:#fff;
}

.rea-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.rea-card {
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 1.25rem;
    background: #fff;
}

.rea-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: #000;
}

.rea-card p {
    color: #5b5f64;
    margin: 0;
}

.rea-head2 h2{
    color: var(--dark-bg);
}
.rea-head2 p{
    color: var(--dark-bg);
    margin-bottom: 30px;
}

.rea-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
}

.rea-step {
    background: var(--dark-bg);
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 1rem;
    text-align: center;
}

.rea-step span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #d4a574;
    color: #111;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.rea-step p {
    margin: 0;
    font-weight: 600;
}

.rea-cta {
    padding: 4.5rem 0 1rem;
    text-align: center;
    background: var(--dark-bg);
    color: #fff;
}

.rea-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
}

@media (max-width: 991.98px) {
    .rea-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rea-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .rea-grid,
    .rea-steps {
        grid-template-columns: 1fr;
    }
}

/* career page  */

.career-page-section {
        
        padding: 8.5rem 0 3rem;
        background: var(--dark-bg);
    }

    .career-shell {
        max-width: 920px;
        margin: 0 auto;
        padding: 2.4rem;
        border-radius: 24px;
        border: 1px solid var(--career-border);
        /*background: #fff;*/
        box-shadow: 0 16px 42px rgba(15, 35, 59, 0.08);
    }

    .career-page-header {
        text-align: center;
        margin-bottom: 1.8rem;
    }

    .career-page-title {
        margin: 0;
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 700;
        color: var(--dark-bg);
        letter-spacing: 0.3px;
    }

    .career-subtitle {
        margin: 0.75rem auto 1.2rem;
        max-width: 700px;
        color: var(--dark-bg);
        font-size: 1.05rem;
    }

    .career-breadcrumb ol {
        list-style: none;
        padding: 0;
        margin: 0;
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        color: var(--dark-bg);
    }

    .career-breadcrumb a {
        color: var(--dark-bg);
        text-decoration: none;
        font-weight: 600;
    }

    .career-status-card {
        display: grid;
        gap: 1.4rem;
        padding: 1.4rem;
        border: 1px solid var(--dark-bg);
        border-radius: 18px;
        background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
    }

    .career-status-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        width: fit-content;
        padding: 0.4rem 0.75rem;
        border-radius: 999px;
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--dark-bg);
        background: #fff4e8;
        border: 1px solid #ffd8b3;
    }

    .career-status-copy {
        color: var(--dark-bg);
        margin: 0;
        line-height: 1.65;
    }

    .career-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.85rem;
    }

    .career-btn {
        border: none;
        border-radius: 10px;
        padding: 0.72rem 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
    }

    .career-btn:hover {
        transform: translateY(-1px);
    }

    .career-btn-primary {
        background: var(--dark-bg);
        color: #fff;
        box-shadow: 0 8px 20px rgba(15, 35, 59, 0.12);
    }

    .career-btn-secondary {
        background: #f6f9fc;
        color: var(--dark-bg);
        border: 1px solid var(--dark-bg);
    }

    .career-last-updated {
        margin: 0;
        font-size: 0.95rem;
        color: var(--dark-bg);
    }

    .career-notify {
        border-top: 1px dashed var(--dark-bg);
        padding-top: 1rem;
        display: none;
    }

    .career-notify.active {
        display: block;
        animation: fade-in-up 260ms ease;
    }

    .career-notify label {
        display: block;
        margin-bottom: 0.45rem;
        font-weight: 600;
        color: var(--dark-bg);
    }

    .career-notify-row {
        display: flex;
        gap: 0.65rem;
        flex-wrap: wrap;
    }

    .career-notify input {
        flex: 1 1 260px;
        min-width: 0;
        border-radius: 10px;
        border: 1px solid var(--dark-bg);
        padding: 0.72rem 0.82rem;
        font-size: 0.96rem;
    }

    .career-note {
        margin: 0.65rem 0 0;
        font-size: 0.9rem;
        color: var(--dark-bg);
    }

    @keyframes fade-in-up {
        from {
            opacity: 0;
            transform: translateY(6px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 768px) {
        .career-page-section {
            padding: 7rem 0 4.8rem;
        }

        .career-shell {
            padding: 1.3rem;
            border-radius: 16px;
        }
    }


/*real estate consultant*/
    
.rec-hero {
    padding: 8.5rem 0 5rem;
    background: var(--dark-bg);
    color: #fff;
}

.rec-hero-content {
    max-width: 760px;
}

.rec-kicker {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d4a574;
    margin-bottom: 0.75rem;
}

.rec-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.rec-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.rec-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.rec-btn {
    display: inline-block;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
}

.rec-btn-primary {
    background: #d4a574;
    color: #111;
}

.rec-btn-primary:hover {
    background: #c8945d;
    color: #111;
}

.rec-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
}

.rec-btn-outline:hover {
    border-color: #fff;
    color: #fff;
}

.rec-section {
    padding: 4.5rem 0;
}

.rec-section-alt {
    background: #f7f7f7;
}

.rec-head {
    max-width: 720px;
    margin-bottom: 2rem;
}

.rec-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.rec-card {
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 1.25rem;
    background: #fff;
}

.rec-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1.08rem;
    color: var(--dark-bg);
}

.rec-card p {
    margin: 0;
    color: #5b5f64;
}

.rec-two-col {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.2rem;
    align-items: start;
}

.rec-two-col h2{
    color: var(--dark-bg);
}

.rec-list {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
}

.rec-list li {
    margin-bottom: 0.55rem;
    color: #30343a;
}

.rec-box {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 1.25rem;
}
.rec-box h3{
    color: var(--dark-bg);
}
.rec-box p {
    color: #5b5f64;
    margin: 0.65rem 0 1rem;
}

@media (max-width: 991.98px) {
    .rec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rec-two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .rec-grid {
        grid-template-columns: 1fr;
    }
}