/* ============================================================
   BUJJIBABU – Real Estate Associate
   Premium Real Estate Website Stylesheet
   Colors: Royal Navy / Deep Charcoal / White / Warm Gold
   ============================================================ */

:root {
    --navy: #0b1d33;
    --navy-dark: #071325;
    --navy-light: #12294a;
    --charcoal: #1a1f2e;
    --charcoal-2: #232a3d;
    --gold: #c9a24b;
    --gold-light: #e3c577;
    --gold-dark: #a8843a;
    --white: #ffffff;
    --off-white: #f7f5f1;
    --gray: #8b93a7;
    --gray-light: #e8ebf0;
    --shadow-sm: 0 2px 12px rgba(11, 29, 51, 0.08);
    --shadow-md: 0 10px 35px rgba(11, 29, 51, 0.12);
    --shadow-lg: 0 20px 60px rgba(11, 29, 51, 0.18);
    --shadow-gold: 0 10px 30px rgba(201, 162, 75, 0.3);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    color: var(--navy);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(7, 19, 37, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.logo-icon {
    font-size: 26px;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(201, 162, 75, 0.4);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    line-height: 1.1;
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold-light);
    text-transform: uppercase;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    position: relative;
    padding: 6px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold-light);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.nav-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.nav-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(201, 162, 75, 0.45);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
    filter: saturate(1.05);
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(7, 19, 37, 0.6) 0%,
        rgba(7, 19, 37, 0.55) 50%,
        rgba(7, 19, 37, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 162, 75, 0.15);
    border: 1px solid rgba(201, 162, 75, 0.4);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-title span.gold {
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    max-width: 620px;
    margin: 0 auto 40px;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-phone {
    font-family: var(--font-serif);
    font-size: 24px;
    letter-spacing: 4px;
    color: var(--gold-light);
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 10px;
    letter-spacing: 3px;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    margin: 12px auto 0;
    animation: scrollLine 2s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes scrollLine {
    0% { transform: translateY(-15px); opacity: 0; }
    40% { opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy-dark);
    box-shadow: 0 8px 25px rgba(201, 162, 75, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 162, 75, 0.5);
}

.btn-gold {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1.5px solid var(--gold);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-gold:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy-light);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 12px;
}

.btn-full {
    width: 100%;
}

/* ============ SECTION HEADERS ============ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title.left-align {
    text-align: left;
}

.section-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
    margin: 0 auto;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.section-divider.left-align {
    margin: 0 0 40px;
}

.section-divider span {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* ============ SERVICES ============ */
.services {
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(11, 29, 51, 0.3));
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 28px;
    position: relative;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -58px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(11, 29, 51, 0.25);
    margin-bottom: 18px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy-dark);
    transform: rotate(-6deg) scale(1.05);
    box-shadow: 0 10px 25px rgba(201, 162, 75, 0.4);
}

.service-content h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--navy);
}

.service-content p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-link {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: var(--navy);
}

/* ============ FEATURED PROPERTIES ============ */
.featured {
    background: var(--white);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.property-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(11, 29, 51, 0.05);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.property-img {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.property-card:hover .property-img img {
    transform: scale(1.08);
}

.property-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(7, 19, 37, 0.85);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    text-transform: uppercase;
    z-index: 2;
}

.property-cat {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    z-index: 2;
}

.property-info {
    padding: 28px;
}

.property-info h3 {
    font-family: var(--font-serif);
    font-size: 23px;
    margin-bottom: 14px;
    color: var(--navy);
}

.property-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.property-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 13px;
    font-weight: 500;
}

.property-meta svg {
    color: var(--gold-dark);
}

.property-info p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.property-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============ WHY CHOOSE US ============ */
.why-us {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 162, 75, 0.08) 0%, transparent 70%);
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 162, 75, 0.05) 0%, transparent 70%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.why-us .section-title {
    color: var(--white);
}

.why-us-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 35px;
    margin-top: 10px;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition);
}

.why-item:hover .why-icon {
    transform: translateY(-4px);
    background: rgba(201, 162, 75, 0.25);
}

.why-icon {
    min-width: 52px;
    width: 52px;
    height: 52px;
    background: rgba(201, 162, 75, 0.12);
    border: 1px solid rgba(201, 162, 75, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    transition: var(--transition);
}

.why-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--white);
    font-weight: 600;
}

.why-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.why-us-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    opacity: 0.5;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold-light);
    display: inline-block;
}

.stat-suffix {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-light);
}

.stat-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 6px;
}

.why-us-image {
    grid-column: 1 / -1;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
    position: relative;
}

.why-us-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 162, 75, 0.15) 0%, transparent 60%);
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.why-us-image:hover img {
    transform: scale(1.05);
}

/* ============ CATEGORIES ============ */
.categories {
    background: var(--off-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.category-item {
    position: relative;
    height: 260px;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.category-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(7, 19, 37, 0.9) 0%, rgba(7, 19, 37, 0.2) 50%, rgba(7, 19, 37, 0.1) 100%);
    transition: var(--transition);
}

.category-item:hover::after {
    background: linear-gradient(to top, rgba(7, 19, 37, 0.95) 0%, rgba(7, 19, 37, 0.4) 60%, rgba(7, 19, 37, 0.2) 100%);
}

.category-item:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: relative;
    z-index: 2;
    padding: 22px 18px;
    width: 100%;
    text-align: center;
}

.category-overlay h3 {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 17px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    transition: var(--transition);
}

.category-item:hover .category-overlay h3 {
    color: var(--gold-light);
}

.category-overlay span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
}

.category-item:hover .category-overlay span {
    opacity: 1;
    transform: translateY(0);
    color: var(--gold-light);
}

/* ============ ABOUT ============ */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-image:hover img {
    transform: scale(1.04);
}

.about-exp-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(7, 19, 37, 0.9);
    backdrop-filter: blur(10px);
    padding: 18px 24px;
    border-radius: 16px;
    border: 1px solid rgba(201, 162, 75, 0.3);
    text-align: center;
}

.about-exp-badge .big {
    display: block;
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 2px;
}

.about-exp-badge .small {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    margin-top: 4px;
}

.about-text {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 35px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--off-white);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    transition: var(--transition);
    border: 1px solid transparent;
}

.about-feature:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 75, 0.06);
    transform: translateX(4px);
}

.about-feature svg {
    color: var(--gold-dark);
    flex-shrink: 0;
}

/* ============ CTA ============ */
.cta-section {
    padding: 0;
    position: relative;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-attachment: fixed;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 19, 37, 0.9) 0%, rgba(11, 29, 51, 0.8) 50%, rgba(7, 19, 37, 0.9) 100%);
}

.cta-section .container {
    position: relative;
    z-index: 2;
    padding-top: 110px;
    padding-bottom: 110px;
}

.cta-content {
    text-align: center;
    color: var(--white);
    max-width: 760px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(30px, 4.5vw, 48px);
    margin-bottom: 18px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ CONTACT ============ */
.contact {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3,
.contact-form-wrap h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-icon {
    min-width: 50px;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 162, 75, 0.2);
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--navy);
    color: var(--gold-light);
    transform: translateY(-3px);
}

.contact-item span {
    display: block;
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 3px;
}

.contact-item a {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--gold-dark);
}

.contact-map-placeholder {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.contact-map-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 19, 37, 0.15);
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(11, 29, 51, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1.5px solid var(--gray-light);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--navy);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.12);
}

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

/* ============ FOOTER ============ */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 45px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 17px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 6px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-phone,
.footer-email {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 10px;
    transition: var(--transition);
    word-break: break-all;
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--gold-light);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

/* ============ FLOATING BUTTONS ============ */
.floating-buttons {
    position: fixed;
    right: 22px;
    bottom: 100px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    position: relative;
}

.float-btn::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0.3;
    animation: floatPulse 2s ease-out infinite;
}

.float-phone {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.float-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

@keyframes floatPulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.35); opacity: 0; }
}

/* ============ MOBILE BAR ============ */
.mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    display: none;
    background: rgba(7, 19, 37, 0.95);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
}

.mobile-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.mobile-bar-call {
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-bar-call:active {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-bar-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
}

.mobile-bar-whatsapp:active {
    filter: brightness(0.9);
}

/* ============ REVEAL ANIMATIONS ============ */
[data-animate] {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate].animate {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .navbar {
        padding: 14px 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 78%;
        max-width: 340px;
        height: 100vh;
        background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 16px;
        font-size: clamp(16px, 5vw, 20px);
    }

    .nav-actions {
        margin-right: 60px;
    }

    .nav-call-btn span {
        display: none;
    }

    .nav-call-btn {
        padding: 10px 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }

    .why-us-list {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
        max-height: 380px;
    }

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

    .contact-form-wrap {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }

    .floating-buttons {
        bottom: 85px;
        right: 16px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
    }

    .mobile-bar {
        display: flex;
    }

    /* Add bottom padding so content isn't hidden behind mobile bar */
    body {
        padding-bottom: 54px;
    }

    .cta-bg img {
        min-height: 400px;
    }

    .cta-section .container {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .why-us-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-actions {
        flex-direction: column;
    }

    .property-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-grid,
    .featured-grid {
        max-width: 100%;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .category-item {
        height: 200px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .why-us-stats {
        grid-template-columns: 2fr;
    }

    .stat-card {
        padding: 20px 14px;
    }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-bg img,
    .service-img img,
    .property-img img,
    .category-item img,
    .about-image img,
    .why-us-image img {
        animation: none;
        transition: none;
    }

    .hero-bg img {
        animation: none;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .logo-icon {
        animation: none;
    }

    .scroll-line {
        animation: none;
    }

    .section-divider span {
        animation: none;
    }

    .float-btn::after {
        animation: none;
    }
}