/* Reset and Base Styles */
:root {
    --purple: #41007E;
    --purple-light: #6B21A8;
    --purple-bg: rgba(65, 0, 126, 0.06);
    --purple-100: #f5f0ff;
    --red: #dc2626;
    --red-hover: #b91c1c;
    --text: #171717;
    --text-muted: #5c5c5c;
    --border: #e7e7e7;
    --bg-alt: #f8fafc;
    --radius: 18px;
    --radius-sm: 14px;
    --section-padding: clamp(3rem, 6vw, 5rem);
    --shadow: 0 18px 45px rgba(16, 16, 16, 0.12);
    --shadow-hover: 0 22px 55px rgba(16, 16, 16, 0.14);
    --focus-ring: 0 0 0 4px rgba(65, 0, 126, 0.18);
    --card: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
    font-size: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 4vw, 1.5rem);
}

/* Section headings */
section h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

section h2 + .booking-subtitle,
section h2 + .contact-subtitle,
section h2 + .about-subtitle,
.booking-subtitle,
.contact-subtitle,
.about-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 1.5rem;
}

/* Navigation (topbar with glass effect) */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(160%) blur(10px);
    -webkit-backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--purple);
    flex-shrink: 0;
    text-decoration: none;
}

.nav-logo:hover {
    color: var(--purple-light);
}

.nav-logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}

.nav-logo img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu .nav-link {
    display: inline-block;
    padding: 8px 12px;
    color: #334155;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-menu .nav-link:hover {
    color: var(--purple);
    background-color: var(--purple-bg);
}

.nav-menu .nav-link:focus-visible {
    outline: 2px solid var(--purple);
    outline-offset: 2px;
}

.nav-menu .nav-link.call-us {
    margin-left: 8px;
    padding: 8px 16px;
    background-color: var(--red);
    color: #fff;
}

.nav-menu .nav-link.call-us:hover {
    background-color: var(--red-hover);
    color: #fff;
}

.form-success {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid #059669;
    border-radius: 8px;
    color: #065f46;
}

.form-success a {
    color: #059669;
    font-weight: 600;
}

.form-success.form-success-subtle {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.9375rem;
    padding: 0.5rem 0 0;
    margin-bottom: 0;
}

.form-error {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid #dc2626;
    border-radius: 8px;
    color: #b91c1c;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--purple);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 0.9375rem;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: #334155;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform-origin: center;
}

.hamburger:focus-visible {
    outline: 2px solid #41007E;
    outline-offset: 2px;
}

/* Hero Section – carousel background */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    padding-top: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #1a1a2e;
}

.hero-bg-carousel {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-bg-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-bg-slide-1 { background-image: url('assets/images/hero-bg1.png'); }
.hero-bg-slide-2 { background-image: url('assets/images/hero-bg2.png'); }
.hero-bg-slide-3 { background-image: url('assets/images/hero-bg3.png'); }

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(65, 0, 126, 0.75) 0%,
        rgba(65, 0, 126, 0.5) 35%,
        rgba(0, 0, 0, 0.35) 70%,
        transparent 100%
    );
    z-index: 0;
}

.hero-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    padding: 36px 0 44px;
    align-items: stretch;
}

.hero-left {
    padding: 26px 0 20px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    font-size: 13px;
}

.hero-kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.15);
}

/* Two-tone headline: "Your Space." (white) + "Our Priority." (gold), gold flickers every 10s */
.hero-title-a {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-title-b {
    color: #FBBF24;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35), 0 0 24px rgba(251, 191, 36, 0.25);
}

@keyframes hero-title-flicker {
    0%, 90%  { color: #FBBF24; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35), 0 0 24px rgba(251, 191, 36, 0.25); }
    92%      { color: #FDE68A; text-shadow: 0 0 20px rgba(253, 230, 138, 0.6); }
    94%      { color: #FBBF24; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35), 0 0 24px rgba(251, 191, 36, 0.25); }
    96%      { color: #FDE68A; text-shadow: 0 0 20px rgba(253, 230, 138, 0.6); }
    98%, 100% { color: #FBBF24; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35), 0 0 24px rgba(251, 191, 36, 0.25); }
}

.hero-title {
    margin: 14px 0 10px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-title-flicker {
    animation: hero-title-flicker 10s ease-in-out infinite;
}

.hero-sub {
    font-size: clamp(15px, 1.5vw, 17px);
    color: rgba(255, 255, 255, 0.9);
    max-width: 52ch;
    margin: 0 0 18px;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn-hero-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    border: none;
    box-shadow: 0 16px 35px rgba(65, 0, 126, 0.22);
    transition: filter 0.12s ease, transform 0.12s ease;
}

.btn-hero-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.btn-hero-primary:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.btn-hero-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.9);
    transition: background 0.12s ease, border-color 0.12s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-hero-outline:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

/* Search shell (inside hero) */
.search-shell {
    margin-top: 22px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    box-shadow: 0 20px 55px rgba(16, 16, 16, 0.1);
    padding: 14px;
}

.search-row {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.search-field label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 700;
    padding-left: 6px;
}

.search-shell select {
    height: 46px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.14);
    padding: 0 12px;
    outline: none;
    font-weight: 600;
    background: #fff;
    font-family: inherit;
    cursor: pointer;
}

.search-shell select:focus {
    box-shadow: var(--focus-ring);
    border-color: var(--purple);
}

.btn-search {
    height: 46px;
    padding: 0 18px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: #fff;
    box-shadow: 0 16px 35px rgba(65, 0, 126, 0.18);
    transition: filter 0.12s ease, transform 0.12s ease;
    white-space: nowrap;
}

.btn-search:hover {
    filter: brightness(1.03);
}

.btn-search:active {
    transform: translateY(1px);
}

.btn-search:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

/* Hero right (badge only; bg is full hero) */
.hero-right {
    border-radius: var(--radius);
    min-height: 320px;
    position: relative;
    /* transparent – hero bg shows through */
}

.hero-image {
    position: absolute;
    inset: 0;
    /* no background – full hero image stretches behind entire section */
}

.hero-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 12px 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.hero-badge strong {
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
    color: var(--text);
}

.hero-badge span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.hero-badge-pulse {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.18);
    flex-shrink: 0;
}

/* Properties Section */
.properties-section {
    padding: calc(var(--section-padding) + 24px) 0 var(--section-padding);
    background: var(--bg-alt);
}

.properties-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.properties-section-intro {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.75rem;
}

.featured-rental {
    margin-bottom: 2rem;
}

.featured-rental-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.featured-rental-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.featured-rental-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.featured-rental-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-rental-body {
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-rental-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.featured-rental-meta {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.featured-rental-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.featured-rental-link {
    font-weight: 600;
    color: var(--purple);
    font-size: 0.9375rem;
}

.featured-rental-link i {
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.featured-rental-card:hover .featured-rental-link i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .featured-rental-card {
        grid-template-columns: 1fr;
    }
    .featured-rental-image { aspect-ratio: 16/10; }
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 0;
}

.search-loading {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.search-results {
    min-height: 120px;
}

.search-results .property-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    color: var(--text);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.search-results .property-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.search-results .property-card .property-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.search-results .property-card:hover .property-image img {
    transform: scale(1.05);
}

.search-results .property-card .property-image-placeholder {
    background: linear-gradient(135deg, var(--purple-bg), rgba(107, 33, 168, 0.08));
}

.property-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--purple);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    z-index: 1;
}

.search-results .property-card .property-card-content {
    padding: 1.25rem;
}

.search-results .property-card h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.search-results .property-card .property-location {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.search-results .property-card .property-price {
    color: var(--purple);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.search-results .property-card .property-price-period {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.search-results .property-card .property-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.search-results .property-card .property-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8125rem;
}

.search-results .property-card .property-contact a {
    color: var(--purple);
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid var(--purple);
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, color 0.2s ease;
}

.search-results .property-card .property-contact a:hover {
    background: var(--purple);
    color: white;
}

.search-results .property-card .property-contact .btn-book {
    background: var(--purple);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.search-results .property-card .property-contact .btn-book:hover {
    background: var(--purple-light);
    transform: translateY(-1px);
}

.search-results .property-card .property-contact .btn-outline {
    background: none;
    border: 1px solid var(--purple);
    color: var(--purple);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.search-results .property-card .property-contact .btn-outline:hover {
    background: var(--purple);
    color: white;
}

.search-results .no-results {
    text-align: center;
    padding: 2.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.search-results .no-results a {
    color: var(--purple);
    font-weight: 600;
    text-decoration: underline;
}

.search-results .no-results a:hover {
    text-decoration: none;
}

/* Value Proposition Section */
.value-prop {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-alt) 0%, rgba(203, 140, 249, 0.06) 50%, var(--bg-alt) 100%);
}

.value-prop-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    max-width: 20ch;
    margin-left: auto;
    margin-right: auto;
}

.value-prop-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 52ch;
    margin: 0 auto 2.5rem;
}

.value-prop-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 16px 40px rgba(16, 16, 16, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 55px rgba(16, 16, 16, 0.12);
}

.value-card-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    background: rgba(65, 0, 126, 0.1);
    color: var(--purple);
    border-radius: 16px;
    border: 1px solid rgba(65, 0, 126, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Floating card with enhanced styling */
.floating-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: rotate(-5deg);
    position: relative;
    overflow: hidden;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(65, 0, 126, 0.05), 
        rgba(203, 140, 249, 0.05));
    z-index: 1;
}

.floating-card > * {
    position: relative;
    z-index: 2;
}

.card-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

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

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #41007E;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.rating i {
    color: #ffd700;
    font-size: 0.9rem;
}

.rating span {
    color: #41007E;
    font-weight: 600;
    margin-left: 0.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #41007E;
}

.period {
    color: #666;
    font-size: 0.9rem;
}

/* Stats Section */
.stats {
    padding: var(--section-padding) 0;
    background: var(--bg-alt);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.stat-item {
    text-align: center;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Properties Section */
.properties {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.property-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.property-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

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

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #C77DFF;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.property-badge.premium {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.property-content {
    padding: 20px;
}

.property-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.location {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #64748b;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #64748b;
}

.rating i {
    color: #fbbf24;
}

/* Industries Section */
.industries {
    padding: var(--section-padding) 0;
    background: var(--bg-alt);
}

.industries-image {
    text-align: center;
    margin-bottom: 2.5rem;
}

.industries-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industries-image img:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-hover);
}

.industries h2 {
    margin-bottom: 2rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.25rem, 2.5vw, 1.5rem);
}

.industry-card {
    background: #fff;
    border-radius: var(--radius);
    padding: clamp(1.5rem, 3vw, 2rem);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(65, 0, 126, 0.15);
}

.industry-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.25rem;
}

.industry-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.industry-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.industry-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.industry-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.industry-features span i {
    color: var(--purple);
    font-size: 0.625rem;
}

/* Services Section */
.services {
    padding: var(--section-padding) 0;
    background: #fff;
}

.services h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
}

.service-card {
    text-align: center;
    padding: clamp(2rem, 4vw, 2.5rem);
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(65, 0, 126, 0.2);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.service-features li i {
    color: var(--purple);
    font-size: 0.75rem;
}

/* About Section */
.about {
    padding: var(--section-padding) 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.about-text h2 {
    margin-bottom: 0.25rem;
}

.about-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9375rem;
}

.feature i {
    color: var(--purple);
    font-size: 1rem;
}

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

.about-image img {
    width: 100%;
    height: auto;
    min-height: 320px;
    object-fit: cover;
}

/* Contact Section */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-alt);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.contact-text h2 {
    margin-bottom: 0.25rem;
}

.contact-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(65, 0, 126, 0.15);
}

.contact-item.clickable {
    cursor: pointer;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--bg-alt);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.faq-intro {
    text-align: center;
    color: var(--text-muted);
    max-width: 52ch;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
}

.faq-accordion {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s ease, background 0.2s ease;
}

.faq-question:hover {
    color: var(--purple);
    background: var(--purple-bg);
}

.faq-question:focus-visible {
    outline: 2px solid var(--purple);
    outline-offset: 2px;
}

.faq-question i {
    flex-shrink: 0;
    color: var(--purple);
    transition: transform 0.25s ease;
}

.faq-item-open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    border-top: 1px solid var(--border);
}

.faq-answer p {
    padding: 1rem 1.25rem 1.25rem;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: #fff;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.testimonials-intro {
    text-align: center;
    color: var(--text-muted);
    max-width: 48ch;
    margin: 0 auto 2rem;
    font-size: 1rem;
}

.testimonial-card {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--purple-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    margin: 0;
    font-style: normal;
}

.testimonial-quote p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    text-align: center;
}

/* CTA Section */
.cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #fff, var(--purple-100));
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    font-size: 0.9375rem;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: var(--purple);
    transform: translateY(-2px);
}

.cta .btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: #fff;
    font-size: 0.9375rem;
    padding: 12px 24px;
    box-shadow: 0 16px 35px rgba(65, 0, 126, 0.22);
}

.cta .btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

.cta .btn-secondary {
    border-color: rgba(0, 0, 0, 0.18);
    color: var(--text);
}

.cta .btn-secondary:hover {
    background: #f7f7f7;
    color: var(--text);
}

/* Booking Section */
.booking {
    padding: var(--section-padding) 0;
    background: #fff;
}

.request-service.booking {
    background: var(--bg-alt);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.booking-text h2,
.booking-subtitle {
    margin-bottom: 0.5rem;
}

.booking-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.booking-form {
    background: #fff;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    color: var(--text);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(65, 0, 126, 0.12);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #64748b;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--purple);
    border-color: var(--purple);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: var(--section-padding) 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo i {
    color: #41007E;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f1f5f9;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #a78bfa;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: #6B21A8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #41007E;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #cbd5e1;
}

.powered-by {
    margin-top: 10px;
    font-size: 14px;
    color: #94a3b8;
}

.powered-by a {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.powered-by a:hover {
    color: #E55A2B;
    text-decoration: underline;
}

/* Mobile menu (shown when .nav-menu.active) */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-menu {
        display: none;
        order: 3;
        flex-basis: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 16px 0;
        gap: 4px;
        border-top: 1px solid rgba(65, 0, 126, 0.1);
        margin-top: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu .nav-link {
        padding: 12px 16px;
        border-radius: 6px;
    }

    .nav-menu .nav-link.call-us {
        margin-left: 0;
        margin-top: 8px;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(3.5px) rotate(-45deg);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: translateY(-3.5px) rotate(45deg);
    }
}

/* Custom Cursor - obvi8.org style */
.custom-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.custom-cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #000;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.custom-cursor-follower.hover {
    transform: translate(-50%, -50%) scale(1.5);
    border-width: 2px;
    background: rgba(0, 0, 0, 0.1);
}



/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-wrap {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .services-grid,
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding-top: 72px;
    }
    
    .hero-wrap {
        grid-template-columns: 1fr;
        padding: 28px 0 36px;
    }
    
    .hero-right {
        min-height: 280px;
    }
    
    .hero-title {
        font-size: 1.85rem;
        line-height: 1.2;
    }
    
    .hero-sub {
        font-size: 1rem;
    }
    
    .search-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .btn-search {
        grid-column: 1 / -1;
    }
    
    .search-results-grid {
        grid-template-columns: 1fr;
    }
    
    .value-prop-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .search-box {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }
    
    .search-shell .btn-search {
        width: 100%;
    }
    
    .stats {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .services,
    .industries,
    .about,
    .contact,
    .cta {
        padding: 60px 0;
    }
    
    .services-grid,
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card,
    .industry-card {
        padding: 25px 20px;
    }
    
    .service-icon,
    .industry-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .about-subtitle {
        font-size: 1.3rem;
    }
    
    .about-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .feature {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 15px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Hide custom cursor on mobile */
    .custom-cursor,
    .custom-cursor-follower {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding-top: 68px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-sub {
        font-size: 0.9375rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        text-align: center;
    }
    
    .search-row {
        grid-template-columns: 1fr;
    }
    
    .btn-search {
        width: 100%;
    }
    
    .search-results-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .service-card,
    .industry-card {
        padding: 20px 15px;
    }
    
    .service-card h3,
    .industry-card h3 {
        font-size: 1.1rem;
    }
    
    .service-features li,
    .industry-features span {
        font-size: 0.85rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .contact-details h3 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section ul li {
        font-size: 0.9rem;
    }
    
    .powered-by {
        font-size: 12px;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .booking-text h2 {
        font-size: 2rem;
    }
    
    .booking-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-question {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }
    
    .faq-answer p {
        padding: 0.875rem 1rem 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
} 