/*
Theme Name: Falcon Homes
Theme URI: https://falconhomes.local
Author: Antigravity
Author URI: https://falconhomes.local
Description: A premium, modern, luxury real estate theme for Falcon Homes.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.0
Text Domain: falconhomes
*/

:root {
    --primary-color: #0b1a30; /* Dark Blue */
    --secondary-color: #f7f7f7; /* Off White */
    --accent-color: #c5a86a; /* Gold Accent */
    --text-color: #333333;
    --light-text: #ffffff;
    --hover-gold: #d4b87c;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--secondary-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--hover-gold);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent-color);
    color: var(--light-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--hover-gold);
    color: var(--light-text);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--light-text);
}

/* HEADER */
.site-header {
    background-color: transparent;
    color: var(--light-text);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: none;
}

.site-header.scrolled {
    background: rgba(7, 17, 31, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(197,168,106,0.15);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: none;
    width: 100%;
    padding: 0 56px;
}

.site-logo-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    color: #ffffff;
    text-decoration: none;

    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;

    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.site-logo-text:hover {
    color: #ffffff;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;

    display: flex;
    flex-direction: column;
    align-items: center;

    color: #fff;
    text-decoration: none;
}

.hero-scroll i {
    font-size: 28px;
    margin-bottom: 8px;
    animation: bounceArrow 2s infinite;
}

.hero-scroll span {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes bounceArrow {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }
}

/* SIDE MENU */

.side-menu {
    position: fixed;
    top: 0;
    left: -380px;
    width: 380px;
    height: 100vh;
    background: #f5f5f5;
    z-index: 9999;
    transition: left 0.4s ease;

    display: flex;
    flex-direction: column;
}

.side-menu.active {
    left: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 25px;
    background: transparent;
    border: none;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    color: #111;
    z-index: 10000;
}

.side-menu-top {
    padding: 90px 50px 50px;
}

.side-menu-bottom {
    margin-top: auto;
    background: #e9e9e9;
    padding: 40px 50px;
}

.menu-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #6d533c;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 0;
    transition: 0.3s ease;
}

.menu-item:hover {
    color: #c5a86a;
}

.arrow {
    margin-left: auto;
    font-size: 28px;
    color: #888;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {

    .side-menu {
        width: 90%;
        left: -90%;
    }

    .side-menu-top {
        padding: 80px 35px 35px;
    }

    .side-menu-bottom {
        padding: 35px;
    }

    .menu-item {
        font-size: 16px;
    }
}

.results-section {
    padding: 90px 0;
    background: #ffffff;
}

.results-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.result-card {
    text-align: center;
    padding: 60px 30px;
}

.result-card:not(:last-child) {
    border-right: 1px solid #e5e5e5;
}

.result-card h3 {
    font-size: 64px;
    font-weight: 400;
    color: #c5a86a;
    margin-bottom: 15px;
    line-height: 1;
}

.result-card span {
    display: block;
    color: #142134;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-card:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }

    .result-card h3 {
        font-size: 48px;
    }
}

.site-logo h1 {
    color: var(--light-text);
    margin: 0;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 7px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.25);
}

.site-logo img {
    display: block;
    width: auto;
    height: 74px;
    object-fit: contain;
}

.menu-toggle {
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--light-text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    padding: 8px 0;
    text-transform: uppercase;
    text-shadow: 0 1px 10px rgba(0,0,0,0.25);
    transition: var(--transition);
}

.menu-toggle:hover,
.menu-toggle:focus {
    color: var(--accent-color);
}

.menu-toggle-icon {
    position: relative;
    width: 38px;
    height: 22px;
    display: inline-block;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: "";
    position: absolute;
    right: 0;
    width: 28px;
    height: 2px;
    background-color: currentColor;
}

.menu-toggle-icon::before {
    top: 3px;
}

.menu-toggle-icon::after {
    bottom: 3px;
}

.menu-toggle-icon {
    border-top: 2px solid currentColor;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: var(--light-text);
    font-weight: 500;
    font-size: 16px;
}

.main-navigation a:hover {
    color: var(--accent-color);
}

/* HERO SECTION */
.hero-section {
    height: 80vh;
    background-image: linear-gradient(rgba(11, 26, 48, 0.7), rgba(11, 26, 48, 0.7)), url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
}

.hero-content h1 {
    font-size: 56px;
    color: var(--light-text);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* PROPERTY SEARCH */
.property-search {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 -30px 40px rgba(0,0,0,0.1);
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.search-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.search-field select, .search-field input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
}

/* FEATURED PROPERTIES */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

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

.property-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

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

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

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

.property-status {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
}

.property-content {
    padding: 25px;
}

.property-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.property-title {
    font-size: 20px;
    margin-bottom: 15px;
}

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

/* SERVICES SECTION */
.services-section {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
}

.services-section .section-title h2 {
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(197, 168, 106, 0.2);
    border-radius: 8px;
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(197, 168, 106, 0.1);
    transform: translateY(-10px);
}

.service-card h3 {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 20px;
}

/* FRONT PAGE */
.front-page {
    background: #ffffff;
}

.front-hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #ffffff;
}

.front-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.front-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.34);
}

.front-hero-content {
    position: relative;
    z-index: 1;
    width: min(980px, 88vw);
    text-align: center;
    padding-top: 90px;
}

.front-hero-content h1 {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 78px);
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 1.05;
    margin-bottom: 24px;
    text-transform: uppercase;
    text-shadow: 0 2px 18px rgba(0,0,0,0.3);
}

.front-hero-content p {
    color: rgba(255,255,255,0.9);
    font-family: var(--font-heading);
    font-size: clamp(18px, 2vw, 30px);
    font-weight: 400;
    line-height: 1.35;
    margin: 0 auto;
    max-width: 560px;
    text-shadow: 0 2px 14px rgba(0,0,0,0.34);
}

.story-section,
.gallery-section,
.locations-section,
.what-we-do-section,
.founder-section {
    padding: 86px 0;
}

.story-grid,
.founder-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 78px;
    align-items: center;
}

.story-media img,
.founder-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1.32 / 1;
    object-fit: cover;
}

.story-copy h2,
.founder-copy h2,
.minimal-section-title h2 {
    color: #142134;
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 6px;
    line-height: 1.25;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.story-copy p,
.founder-copy p,
.minimal-section-title p {
    color: #263447;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 24px;
}

.outline-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 34px;
    border: 1px solid #8d8d8d;
    color: #142134;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.outline-link:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.minimal-section-title {
    max-width: 780px;
    margin: 0 auto 38px;
    text-align: center;
}

.minimal-section-title h2 {
    margin-bottom: 18px;
}

.minimal-section-title p {
    margin-bottom: 0;
}

.gallery-grid,
.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 70px;
}

.gallery-grid figure,
.what-card {
    margin: 0;
}

.gallery-grid img,
.what-card img {
    display: block;
    width: 100%;
    aspect-ratio: 0.88 / 1;
    object-fit: cover;
}

.gallery-grid figcaption,
.what-card span {
    display: block;
    color: #142134;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    padding-top: 18px;
    text-align: center;
    text-transform: uppercase;
}

.locations-section {
    background: #fbfbfb;
}

.front-search-form {
    display: grid;
    grid-template-columns: minmax(230px, 280px) minmax(230px, 280px) 60px;
    justify-content: center;
    margin: 0 auto 46px;
    max-width: 620px;
}

.front-search-form select,
.front-search-form button {
    height: 42px;
    border: 1px solid #bdbdbd;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 16px;
}

.front-search-form select {
    appearance: none;
    background:
        linear-gradient(45deg, transparent 50%, #777 50%),
        linear-gradient(135deg, #777 50%, transparent 50%);
    background-color: #ffffff;
    background-position:
        calc(100% - 22px) 17px,
        calc(100% - 15px) 17px;
    background-repeat: no-repeat;
    background-size: 8px 8px;
    color: #111111;
    padding: 0 44px 0 22px;
}

.front-search-form button {
    background: #9f9f9f;
    color: #ffffff;
    cursor: pointer;
}

.front-search-form button:hover {
    background: var(--primary-color);
}

.featured-property-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-property-grid .property-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.featured-property-grid .property-image {
    height: auto;
    aspect-ratio: 0.80 / 1;
}

.featured-property-grid .property-content {
    padding: 20px 0 0;
    text-align: center;
    background: transparent;
}

.featured-property-grid .property-title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

.featured-property-grid .property-title a {
    color: #142134;
    text-decoration: none;
}

.featured-property-grid .property-title a:hover {
    color: var(--accent-color);
}

.property-price,
.property-location,
.property-meta,
.property-status,
.property-link {
    display: none !important;
}
.property-image-placeholder {
    min-height: 100%;
    display: grid;
    place-items: center;
    background: #e6e6e6;
    color: #777777;
}

.empty-properties {
    grid-column: 1 / -1;
    text-align: center;
}

.what-we-do-section {
    background: #ffffff;
}

.what-card {
    color: inherit;
}

.what-card:hover span {
    color: var(--accent-color);
}

.founder-section {
    background: #f7f7f7;
}

.founder-grid {
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
}

.founder-image img {
    aspect-ratio: 0.86 / 1;
}

/* FOOTER */
.site-footer {
    background-color: #061120;
    color: #aaa;
    padding: 60px 0 20px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h4 {
    color: white;
    margin-bottom: 20px;
}

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

.footer-widget a {
    color: #aaa;
}

.footer-widget a:hover {
    color: var(--accent-color);
}

.site-info {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

/* SINGLE PROPERTY */
.single-property-header {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.single-property-title {
    color: white;
    font-size: 42px;
    margin-bottom: 10px;
}

.single-property-price {
    color: var(--accent-color);
    font-size: 32px;
    font-weight: bold;
}

.property-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

.property-gallery img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    font-size: 22px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    display: inline-block;
}

/* Contact Form */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
}

.whatsapp-btn {
    display: block;
    background-color: #25D366;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 15px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 36px; }
    .property-search { margin-top: 20px; box-shadow: none; }
    .property-details-grid { grid-template-columns: 1fr; }
    .front-hero { min-height: 100vh; }
    .front-hero-content h1 {
        font-size: 38px;
        letter-spacing: 2px;
    }
    .front-hero-content p {
        font-size: 20px;
    }
    .story-section,
    .gallery-section,
    .locations-section,
    .what-we-do-section,
    .founder-section {
        padding: 56px 0;
    }
    .story-grid,
    .founder-grid,
    .gallery-grid,
    .what-we-do-grid,
    .featured-property-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .story-copy h2,
    .founder-copy h2,
    .minimal-section-title h2 {
        font-size: 24px;
        letter-spacing: 4px;
    }
    .story-copy p,
    .founder-copy p,
    .minimal-section-title p {
        font-size: 16px;
    }
    .front-search-form {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .front-search-form select,
    .front-search-form button {
        width: 100%;
    }
    .gallery-grid img,
    .what-card img,
    .featured-property-grid .property-image {
        aspect-ratio: 1.12 / 1;
    }
    .site-header { padding: 22px 0; }
    .header-inner { padding: 0 22px; }
    .site-logo h1 {
        font-size: 18px;
        letter-spacing: 4px;
    }
    .site-logo img {
        height: 52px;
    }
    .menu-toggle {
        font-size: 14px;
        gap: 8px;
    }
    .menu-toggle-icon {
        width: 30px;
        height: 18px;
    }
    .menu-toggle-icon::before,
    .menu-toggle-icon::after {
        width: 22px;
    }
}

/* =========================
   ABOUT HERO
========================= */

.about-hero {
    position: relative;
    height: 100vh;

    background-image: url('https://images.unsplash.com/photo-1657589195248-28d10cecc4c6?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.10),
        rgba(0,0,0,0.45)
    );
}

.about-hero-content {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.about-hero-content h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
}

.scroll-indicator:hover {
    color: #ffffff;
}

.scroll-indicator i {
    font-size: 22px;
    margin-bottom: 8px;
    animation: bounceArrow 2s infinite;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes bounceArrow {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* Smooth Scroll */

html {
    scroll-behavior: smooth;
}

/* Mobile */

@media (max-width: 768px) {

    .about-hero-content {
        bottom: 40px;
    }

    .about-hero-content h2 {
        font-size: 24px;
        letter-spacing: 3px;
    }
}

/* =========================
   ENQUIRE DRAWER
========================= */

.enquire-tab{
    position:fixed;
    right:0;
    top:50%;
    transform:translateY(-50%);
    background:#9e8254;
    color:#fff;
    padding:18px 12px;
    writing-mode:vertical-rl;
    text-orientation:mixed;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    z-index:9999;
}

.enquire-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9998;
}

.enquire-overlay.active{
    opacity:1;
    visibility:visible;
}

.enquire-drawer{
    position:fixed;
    top:0;
    right:-420px;
    width:380px;
    height:100vh;
    background:#fff;
    z-index:9999;
    transition:.35s ease;
    overflow-y:auto;
    padding:40px 28px;
}

.enquire-drawer.active{
    right:0;
}

.enquire-close{
    position:absolute;
    top:18px;
    right:24px;
    border:none;
    background:none;
    font-size:40px;
    cursor:pointer;
    color:#111;
}

.enquire-drawer h2{
    margin-top:25px;
    margin-bottom:35px;

    font-size:20px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;

    font-family: var(--font-body);
}

.enquiry-form label{
    display:block;
    margin-bottom:8px;
    color:#1f2b3d;
    font-size:15px;
    font-weight:600;
}

.enquiry-form input,
.enquiry-form select{
    width:100%;
    border:none;
    border-bottom:1px solid #7e7e7e;
    padding:12px 0;
    margin-bottom:28px;
    background:none;
    font-size:16px;
}

.enquiry-form input:focus,
.enquiry-form select:focus{
    outline:none;
}

.enquiry-form textarea{
    width:100%;
    border:1px solid #ddd;
    min-height:120px;
    padding:15px;
    margin-bottom:25px;
    resize:vertical;
}

.enquiry-submit{
    width:100%;
    height:48px;
    border:1px solid #b89a67;
    background:#fff;
    color:#9e8254;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.enquiry-submit:hover{
    background:#9e8254;
    color:#fff;
}

.all-properties-btn-wrap{
    text-align:center;
    margin-top:60px;
}

.all-properties-btn{
    display:inline-block;
    padding:14px 40px;
    border:1px solid #b89a67;
    color:#b89a67;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    transition:all .3s ease;
}

.all-properties-btn:hover{
    background:#b89a67;
    color:#fff;
}

/* ABOUT PAGE IMPROVEMENTS */

.results-section .result-card h3{
font-family: var(--font-heading);
}

.what-we-do-section .what-card{
transition: .35s ease;
}

.what-we-do-section .what-card{
transform: translateY(-8px);
}

.what-we-do-section .what-card img{
transition: .5s ease;
}

.what-we-do-section .what-card img{
transform: scale(1.04);
}

.founder-copy .outline-link,
.story-copy .outline-link{
margin-top:10px;
}

@media (max-width:768px){

.results-grid{
    margin-top:40px;
}

.what-we-do-grid{
    margin-top:30px;
}

}


/* =========================
   explore properties
========================= */

.properties-hero {
    position: relative;
    height: 100vh;

    background-image: url('https://images.unsplash.com/photo-1709166134536-4ad986946730?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.properties-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.10),
        rgba(0,0,0,0.45)
    );
}

.properties-hero-content {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.properties-hero-content h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
}

.scroll-indicator:hover {
    color: #ffffff;
}

.scroll-indicator i {
    font-size: 22px;
    margin-bottom: 8px;
    animation: bounceArrow 2s infinite;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes bounceArrow {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* Smooth Scroll */

html {
    scroll-behavior: smooth;
}

/* Mobile */

@media (max-width: 768px) {

    .properties-hero-content {
        bottom: 40px;
    }

    .properties-hero-content h2 {
        font-size: 24px;
        letter-spacing: 3px;
    }
}

/* ARCHIVE PAGE */

.properties-archive{
    background:#f8f7f3;
    padding:80px 0;
}

.archive-title{
    margin-bottom:50px;
}

.archive-filter-bar{
    margin-bottom:60px;
}

.archive-filter-bar form{
    display:flex;
    gap:15px;
    max-width:700px;
    margin:0 auto;
}

.archive-filter-bar input{
    flex:1;
    padding:16px 20px;
    border:1px solid #ddd;
    background:#fff;
}

.archive-filter-bar button{
    padding:16px 35px;
    background:#b89a67;
    color:#fff;
    border:none;
    cursor:pointer;
}

.archive-properties-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.archive-property-card{
    background:#fff;
    overflow:hidden;
    transition:.35s ease;
}

.archive-property-card:hover{
    transform:translateY(-8px);
}

.archive-property-image{
    display:block;
    overflow:hidden;
}

.archive-property-image img{
    width:100%;
    height:340px;
    object-fit:cover;
    transition:.5s ease;
}

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

.archive-property-content{
    padding:25px;
}

.archive-property-content h3{
    margin-bottom:10px;
}

.archive-property-content h3 a{
    color:var(--primary-color);
    text-decoration:none;
}

.archive-property-location{
    color:#666;
    margin-bottom:15px;
}

.archive-property-price{
    font-size:28px;
    color:#b89a67;
    margin-bottom:20px;
}

.archive-property-link{
    text-transform:uppercase;
    letter-spacing:2px;
    color:#b89a67;
    text-decoration:none;
    font-size:13px;
}

.archive-pagination{
    text-align:center;
    margin-top:60px;
}

.archive-pagination .page-numbers{
    display:inline-block;
    margin:0 5px;
    padding:12px 16px;
    background:#fff;
}

.archive-pagination .current{
    background:#b89a67;
    color:#fff;
}

@media(max-width:1024px){

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

}

@media(max-width:768px){

    .archive-filter-bar form{
        flex-direction:column;
    }

    .archive-properties-grid{
        grid-template-columns:1fr;
    }

}

/* =========================
   SINGLE PROPERTY PAGE
========================= */

.single-property-hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.single-property-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.single-property-hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.single-property-hero-content{
    position:absolute;
    left:0;
    right:0;
    bottom:60px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    z-index:2;
    color:#fff;
}

.single-property-hero-content h1{
    font-size:60px;
    color:#fff;
    margin-bottom:20px;
    text-transform:uppercase;
    letter-spacing:4px;
}

.single-property-layout{
    padding:80px 0;
    background:#f8f8f8;
}

/* =========================
   FONTS
========================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* =========================
   PROPERTY PAGE ROOT
========================= */
.single-property-page {
    --sp-bg:          #FAF8F5;
    --sp-primary:     #1A2332;
    --sp-gold:        #C9A84C;
    --sp-gold-light:  #E8D5A3;
    --sp-muted:       #8A8F98;
    --sp-card-bg:     #FFFFFF;
    --sp-border:      #ECEAE6;
    --sp-radius:      14px;
    --sp-radius-sm:   8px;
    --sp-shadow:      0 4px 24px rgba(26,35,50,.07);
    --sp-shadow-lg:   0 12px 48px rgba(26,35,50,.12);
    font-family: 'Inter', sans-serif;
    background: var(--sp-bg);
    color: var(--sp-primary);
}

/* =========================
   LAYOUT
========================= */
.sp-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.sp-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 64px;
    align-items: start;
    padding: 60px 0 100px;
}

/* =========================
   INTRO — signature element
========================= */
.sp-intro {
    padding-bottom: 52px;
    border-bottom: 1px solid var(--sp-border);
    margin-bottom: 60px;
}

.sp-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--sp-gold);
    margin-bottom: 18px;
}

.sp-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--sp-gold);
    border-radius: 2px;
}

.sp-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--sp-primary);
    margin: 0 0 6px;
}

/* The gold underline — the signature */
.sp-title-rule {
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, var(--sp-gold), var(--sp-gold-light));
    border-radius: 2px;
    margin: 16px 0 24px;
}

.sp-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--sp-muted);
    margin-bottom: 28px;
}

.sp-address i {
    color: var(--sp-gold);
    font-size: 14px;
}

.sp-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 32px;
}

.sp-price-symbol {
    font-size: 26px;
    font-weight: 300;
    color: var(--sp-primary);
    opacity: .55;
}

.sp-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(34px, 4vw, 46px);
    font-weight: 700;
    color: var(--sp-primary);
    letter-spacing: -.01em;
}

.sp-price-suffix {
    font-size: 14px;
    color: var(--sp-muted);
    font-weight: 400;
}

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

/* =========================
   BUTTONS
========================= */
.sp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--sp-radius-sm);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    cursor: pointer;
    text-decoration: none;
    transition: all .22s ease;
    border: none;
}

.sp-btn-primary {
    background: var(--sp-primary);
    color: #fff;
}

.sp-btn-primary:hover {
    background: #263547;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26,35,50,.22);
}

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

.sp-btn-outline:hover {
    background: var(--sp-primary);
    color: #fff;
}

.sp-btn-whatsapp {
    background: #25D366;
    color: #fff;
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 28px;
    border-radius: var(--sp-radius-sm);
}

.sp-btn-whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37,211,102,.3);
}

/* =========================
   SECTION HEADER
========================= */
.sp-section {
    margin-bottom: 72px;
}

.sp-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.sp-section-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--sp-primary);
    margin: 0;
    white-space: nowrap;
}

.sp-section-rule {
    flex: 1;
    height: 1px;
    background: var(--sp-border);
}

/* =========================
   GALLERY
========================= */
.sp-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 220px;
    gap: 12px;
}

/* First image spans full height on the left */
.sp-gallery-item:first-child {
    grid-row: 1 / 3;
}

.sp-gallery-item {
    overflow: hidden;
    border-radius: var(--sp-radius);
    position: relative;
}

.sp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}

.sp-gallery-item:hover img {
    transform: scale(1.06);
}

.sp-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(26,35,50,.35));
    pointer-events: none;
    border-radius: var(--sp-radius);
    opacity: 0;
    transition: opacity .3s;
}

.sp-gallery-item:hover::after {
    opacity: 1;
}

/* =========================
   OVERVIEW STATS
========================= */
.sp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--sp-border);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius);
    overflow: hidden;
}

.sp-stat-card {
    background: var(--sp-card-bg);
    padding: 32px 20px;
    text-align: center;
    transition: background .2s;
}

.sp-stat-card:hover {
    background: #FEFCF9;
}

.sp-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FBF5E6, #F5ECD1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.sp-stat-icon i {
    color: var(--sp-gold);
    font-size: 17px;
}

.sp-stat-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--sp-primary);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.sp-stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--sp-muted);
}

/* =========================
   DESCRIPTION
========================= */
.sp-description p {
    font-size: 17px;
    line-height: 1.9;
    color: #4A5260;
    font-weight: 300;
}

/* =========================
   AMENITIES — pill tags
========================= */
.sp-amenities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sp-amenity-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--sp-card-bg);
    border: 1px solid var(--sp-border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--sp-primary);
    transition: all .2s;
}

.sp-amenity-pill i {
    color: var(--sp-gold);
    font-size: 12px;
}

.sp-amenity-pill:hover {
    border-color: var(--sp-gold-light);
    background: #FEFCF7;
    transform: translateY(-1px);
    box-shadow: var(--sp-shadow);
}

/* =========================
   LOCATION
========================= */
.sp-location-body {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: var(--sp-card-bg);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius);
}

.sp-location-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FBF5E6, #F5ECD1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sp-location-icon i {
    color: var(--sp-gold);
    font-size: 22px;
}

.sp-location-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.sp-location-text span {
    font-size: 13px;
    color: var(--sp-muted);
}

/* =========================
   STICKY ENQUIRY CARD
========================= */
.sp-enquiry-card {
    position: sticky;
    top: 110px;
    background: var(--sp-card-bg);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius);
    overflow: hidden;
    box-shadow: var(--sp-shadow-lg);
}

.sp-enquiry-head {
    background: var(--sp-primary);
    padding: 28px 32px;
    color: #fff;
}

.sp-enquiry-head h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 4px;
    color: #fff;
}

.sp-enquiry-head p {
    font-size: 13px;
    margin: 0;
    opacity: .65;
}

.sp-enquiry-body {
    padding: 28px 32px;
}

.sp-field {
    position: relative;
    margin-bottom: 14px;
}

.sp-field i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sp-muted);
    font-size: 13px;
    pointer-events: none;
}

.sp-field input,
.sp-field textarea {
    width: 100%;
    padding: 13px 14px 13px 38px;
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--sp-primary);
    background: var(--sp-bg);
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}

.sp-field input:focus,
.sp-field textarea:focus {
    outline: none;
    border-color: var(--sp-gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}

.sp-field textarea {
    padding-top: 13px;
    min-height: 100px;
    resize: vertical;
}

.sp-field-textarea i {
    top: 16px;
    transform: none;
}

.sp-enquiry-submit {
    width: 100%;
    padding: 15px;
    background: var(--sp-gold);
    color: #fff;
    border: none;
    border-radius: var(--sp-radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .03em;
    cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
    margin-top: 4px;
}

.sp-enquiry-submit:hover {
    background: #B8963E;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,168,76,.35);
}

.sp-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--sp-muted);
}

.sp-divider::before,
.sp-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--sp-border);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .sp-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sp-enquiry-card {
        position: static;
    }

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

@media (max-width: 768px) {
    .sp-container {
        padding: 0 20px;
    }

    .sp-layout-grid {
        padding: 40px 0 60px;
    }

    .sp-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .sp-gallery-item:first-child {
        grid-row: auto;
    }

    .sp-gallery-item {
        height: 240px;
    }

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

    .sp-enquiry-head,
    .sp-enquiry-body {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .sp-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .sp-btn {
        width: 100%;
        justify-content: center;
    }
}


.contact-hero {
    position: relative;
    height: 100vh;

    background-image: url('https://images.unsplash.com/photo-1516156008625-3a9d6067fab5?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.contact-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.10),
        rgba(0,0,0,0.45)
    );
}

.contact-content {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.contact-content h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
}

.scroll-indicator:hover {
    color: #ffffff;
}

.scroll-indicator i {
    font-size: 22px;
    margin-bottom: 8px;
    animation: bounceArrow 2s infinite;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes bounceArrow {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* Smooth Scroll */

html {
    scroll-behavior: smooth;
}

/* Mobile */

@media (max-width: 768px) {

    .contact-content {
        bottom: 40px;
    }

    .contact-content h2 {
        font-size: 24px;
        letter-spacing: 3px;
    }
}

/* ==========================================
   CONTACT PAGE
========================================== */

.contact-page{
    background:#f8f8f8;
    padding:100px 0;
}

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

/* LEFT SIDE */

.section-tag{
    display:inline-block;
    color:#0b1a30;
    font-size:12px;
    font-weight:600;
    letter-spacing:3px;
    margin-bottom:15px;
    text-transform:uppercase;
}

.contact-info h2{
    font-size:48px;
    line-height:1.2;
    color:#0b1a30;
    margin-bottom:20px;
}

.contact-info > p{
    color:#666;
    line-height:1.9;
    margin-bottom:40px;
}

.contact-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    background:#fff;
    padding:28px;
    border-radius:14px;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s ease;
}

.contact-card:hover{
    transform:translateY(-4px);
    border-left:4px solid #0b1a30;
}

.contact-card i{
    font-size:22px;
    color:#0b1a30;
    margin-top:4px;
}

.contact-card h4{
    margin-bottom:6px;
    color:#0b1a30;
}

.contact-card p{
    margin:0;
    color:#666;
}

.whatsapp-contact-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:15px;
    padding:16px 30px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s ease;
}

.whatsapp-contact-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(37,211,102,.25);
}

/* RIGHT SIDE */

.contact-form-card{
    background:#fff;
    padding:50px;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    border-top:5px solid #0b1a30;
}

.contact-form-card h3{
    font-size:32px;
    color:#0b1a30;
    margin-bottom:10px;
}

.contact-form-card p{
    color:#666;
    margin-bottom:30px;
    line-height:1.8;
}

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

/* FORM */

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #e5e5e5;
    border-radius:8px;
    font-family:var(--font-body);
    font-size:15px;
    transition:.3s ease;
    background:#fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#999;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#0b1a30;
    box-shadow:0 0 0 4px rgba(11,26,48,.08);
}

.contact-form textarea{
    min-height:160px;
    resize:vertical;
}

.contact-form button{
    width:100%;
    background:#0b1a30;
    color:#fff;
    border:none;
    padding:16px;
    border-radius:8px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:.3s ease;
}

.contact-form button:hover{
    background:#14284a;
    transform:translateY(-2px);
}

/* RESPONSIVE */

@media(max-width:992px){

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

    .contact-info h2{
        font-size:36px;
    }

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

    .contact-form-card{
        padding:35px;
    }
}

@media(max-width:768px){

    .contact-page{
        padding:70px 0;
    }

    .contact-info h2{
        font-size:30px;
    }

    .contact-card{
        padding:22px;
    }
}

@media (max-width: 768px){

    .site-header{
        padding: 10px 0;
    }

    .header-inner{
        padding: 0 15px;
    }

    .site-logo-text{
        font-size: 24px;
        letter-spacing: 1px;
        white-space: nowrap;
        max-width: none;
        line-height: 1;
    }

    .site-logo-text{
    left:56%;
}

    .menu-toggle{
        font-size: 12px;
    }

    .menu-toggle-icon{
        width: 24px;
        height: 16px;
    }

    .menu-toggle-icon::before,
    .menu-toggle-icon::after{
        width: 18px;
    }

    .enquire-tab{
        font-size: 14px;
        padding: 12px 8px;
    }
}

.page-content{
    padding:120px 0 80px;
    background:#fff;
}

.page-content .container{
    max-width:900px;
}

.page-content h1{
    margin-bottom:30px;
}

.page-content h2{
    margin-top:40px;
    margin-bottom:15px;
}

.page-content p,
.page-content li{
    line-height:1.9;
    color:#555;
}

.page-content ul{
    padding-left:20px;
}

.page-template-privacy-policy .site-header,
.page-template-terms-and-conditions .site-header{
    background:#0b1a30;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.founder-name {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #1f2f46;
}

.founder-title{
    display:block;
    margin:2px 0 8px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:1rem;
    color:#777;
}

.founder-copy .founder-name{
    margin:0 !important;
}

.founder-copy .founder-title{
    display:block;
    margin-top:-2px;
    margin-bottom:12px;
}