/*
Theme Name: Hill Homes
Theme URI: https://thehillhomes.in
Author: Hill Homes
Author URI: https://thehillhomes.in
Description: Custom WordPress theme for Hill Homes - Luxury Hill Properties
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hillhomes
*/

/* ===========================
   CSS Variables / Root
   =========================== */
:root {
    --hh-primary: #1a1a2e;
    --hh-secondary: #c9a84c;
    --hh-accent: #d4af37;
    --hh-dark: #0f0f1a;
    --hh-light: #f8f9fa;
    --hh-white: #ffffff;
    --hh-gray: #6c757d;
    --hh-gray-light: #e9ecef;
    --hh-text: #333333;
    --hh-text-light: #999999;
    --hh-font-primary: 'Poppins', sans-serif;
    --hh-font-secondary: 'Playfair Display', serif;
    --hh-transition: all 0.3s ease;
    --hh-shadow: 0 5px 30px rgba(0,0,0,0.1);
    --hh-shadow-hover: 0 10px 40px rgba(0,0,0,0.15);
    --hh-radius: 8px;
}

/* ===========================
   Reset & Base
   =========================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--hh-font-primary);
    color: var(--hh-text);
    line-height: 1.6;
    background: var(--hh-white);
    overflow-x: hidden;
}

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

a:hover {
    color: var(--hh-secondary);
}

ul, ol {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--hh-font-secondary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--hh-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--hh-gray);
}

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

.section-padding {
    padding: 80px 0;
}

/* ===========================
   Buttons
   =========================== */
.btn-primary-hh {
    display: inline-block;
    padding: 12px 30px;
    background: var(--hh-secondary);
    color: var(--hh-white);
    border: 2px solid var(--hh-secondary);
    border-radius: var(--hh-radius);
    font-family: var(--hh-font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--hh-transition);
}

.btn-primary-hh:hover {
    background: transparent;
    color: var(--hh-secondary);
}

.btn-outline-hh {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--hh-white);
    border: 2px solid var(--hh-white);
    border-radius: var(--hh-radius);
    font-family: var(--hh-font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--hh-transition);
}

.btn-outline-hh:hover {
    background: var(--hh-white);
    color: var(--hh-primary);
}

/* ===========================
   Header / Navigation
   =========================== */
.hh-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--hh-transition);
    padding: 15px 0;
}

.hh-header.scrolled {
    background: var(--hh-white);
    box-shadow: var(--hh-shadow);
    padding: 10px 0;
}

.hh-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hh-logo img {
    height: 50px;
    width: auto;
}

.hh-logo .logo-dark {
    display: none;
}

.hh-header.scrolled .hh-logo .logo-light {
    display: none;
}

.hh-header.scrolled .hh-logo .logo-dark {
    display: block;
}

.hh-nav {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hh-nav a {
    color: var(--hh-white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

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

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

.hh-header.scrolled .hh-nav a {
    color: var(--hh-primary);
}

.hh-header.scrolled .hh-nav a:hover {
    color: var(--hh-secondary);
}

.hh-nav .btn-primary-hh {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* Mobile Menu */
.hh-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.hh-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--hh-white);
    transition: var(--hh-transition);
}

.hh-header.scrolled .hh-menu-toggle span {
    background: var(--hh-primary);
}

/* ===========================
   Hero / Page Title
   =========================== */
.hh-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hh-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hh-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
    z-index: -1;
}

.hh-hero-content {
    text-align: center;
    color: var(--hh-white);
    z-index: 1;
    padding: 0 20px;
}

.hh-hero-content h1 {
    font-size: 3.5rem;
    color: var(--hh-white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hh-hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header (inner pages) */
.hh-page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hh-page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hh-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
    z-index: -1;
}

.hh-page-header-content {
    text-align: center;
    color: var(--hh-white);
    z-index: 1;
}

.hh-page-header-content h1 {
    font-size: 2.8rem;
    color: var(--hh-white);
    margin-bottom: 15px;
}

.hh-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.hh-breadcrumb a {
    color: var(--hh-secondary);
}

.hh-breadcrumb .separator {
    color: rgba(255,255,255,0.5);
}

/* ===========================
   Section Headers
   =========================== */
.hh-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.hh-section-header .subtitle {
    display: inline-block;
    color: var(--hh-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hh-section-header h2 {
    margin-bottom: 15px;
}

.hh-section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   Property Cards
   =========================== */
.hh-properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

.hh-property-card-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.hh-property-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--hh-transition);
}

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

.hh-property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--hh-secondary);
    color: var(--hh-white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.hh-property-card-body {
    padding: 20px;
}

.hh-property-card-body h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.hh-property-card-body h4 a:hover {
    color: var(--hh-secondary);
}

.hh-property-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--hh-gray);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.hh-property-location svg {
    width: 14px;
    height: 14px;
    fill: var(--hh-secondary);
    flex-shrink: 0;
}

.hh-property-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hh-secondary);
}

.hh-property-config {
    font-size: 0.85rem;
    color: var(--hh-gray);
    margin-top: 5px;
}

/* ===========================
   Delivered Projects
   =========================== */
.hh-delivered-section {
    background: var(--hh-light);
}

/* ===========================
   CTA Section
   =========================== */
.hh-cta {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.hh-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hh-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.85);
    z-index: -1;
}

.hh-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hh-cta-content h2 {
    color: var(--hh-white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hh-cta-content p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

.hh-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===========================
   WhatsApp Float
   =========================== */
.hh-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--hh-transition);
}

.hh-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.hh-whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* ===========================
   Footer
   =========================== */
.hh-footer {
    background: var(--hh-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

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

.hh-footer-about .hh-footer-logo {
    height: 45px;
    margin-bottom: 20px;
}

.hh-footer-about p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.8;
}

.hh-footer h5 {
    color: var(--hh-white);
    font-family: var(--hh-font-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.hh-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--hh-secondary);
}

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

.hh-footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--hh-transition);
}

.hh-footer-links a:hover {
    color: var(--hh-secondary);
    padding-left: 5px;
}

.hh-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.hh-footer-contact li svg {
    width: 18px;
    height: 18px;
    fill: var(--hh-secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

.hh-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.hh-footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.hh-social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hh-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--hh-transition);
}

.hh-social-links a:hover {
    background: var(--hh-secondary);
    border-color: var(--hh-secondary);
    color: var(--hh-white);
}

.hh-social-links a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ===========================
   All Properties Page
   =========================== */
.hh-all-properties .hh-properties-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* ===========================
   Single Property Page
   =========================== */
.hh-single-property {
    padding: 60px 0;
}

.hh-property-overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.hh-property-main h2 {
    margin-bottom: 5px;
}

.hh-property-tagline {
    color: var(--hh-secondary);
    font-weight: 600;
    margin-bottom: 15px;
}

.hh-property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.hh-property-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--hh-gray);
}

.hh-property-meta-item svg {
    width: 16px;
    height: 16px;
    fill: var(--hh-secondary);
}

.hh-property-meta-item strong {
    color: var(--hh-text);
}

.hh-property-sidebar {
    background: var(--hh-light);
    border-radius: var(--hh-radius);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.hh-property-sidebar .price-label {
    font-size: 0.85rem;
    color: var(--hh-gray);
    margin-bottom: 5px;
}

.hh-property-sidebar .price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--hh-secondary);
    font-family: var(--hh-font-secondary);
    margin-bottom: 20px;
}

.hh-callback-form .form-group {
    margin-bottom: 15px;
}

.hh-callback-form input,
.hh-callback-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--hh-gray-light);
    border-radius: var(--hh-radius);
    font-family: var(--hh-font-primary);
    font-size: 0.9rem;
    transition: var(--hh-transition);
}

.hh-callback-form input:focus,
.hh-callback-form textarea:focus {
    border-color: var(--hh-secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.hh-callback-form .btn-primary-hh {
    width: 100%;
    text-align: center;
}

.hh-brochure-btn {
    display: block;
    margin-top: 15px;
    text-align: center;
    padding: 12px;
    background: var(--hh-primary);
    color: var(--hh-white);
    border-radius: var(--hh-radius);
    font-weight: 600;
    font-size: 0.9rem;
}

.hh-brochure-btn:hover {
    background: var(--hh-secondary);
    color: var(--hh-white);
}

/* Property Gallery */
.hh-property-gallery {
    margin-bottom: 50px;
}

.hh-property-gallery h3 {
    margin-bottom: 20px;
}

.hh-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

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

.hh-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--hh-transition);
}

.hh-gallery-item:hover img {
    transform: scale(1.05);
}

.hh-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: var(--hh-transition);
}

.hh-gallery-item:hover::after {
    background: rgba(0,0,0,0.2);
}

/* Property Amenities */
.hh-property-amenities {
    margin-bottom: 50px;
}

.hh-property-amenities h3 {
    margin-bottom: 20px;
}

.hh-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hh-amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--hh-light);
    border-radius: var(--hh-radius);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--hh-transition);
}

.hh-amenity-item:hover {
    background: var(--hh-secondary);
    color: var(--hh-white);
}

.hh-amenity-item svg {
    width: 20px;
    height: 20px;
    fill: var(--hh-secondary);
    flex-shrink: 0;
}

.hh-amenity-item:hover svg {
    fill: var(--hh-white);
}

/* Property Description */
.hh-property-description {
    margin-bottom: 50px;
}

.hh-property-description h3 {
    margin-bottom: 15px;
}

.hh-property-description p {
    line-height: 1.8;
}

/* Property Location */
.hh-property-location-details {
    margin-bottom: 50px;
}

.hh-property-location-details h3 {
    margin-bottom: 20px;
}

.hh-distance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hh-distance-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: var(--hh-light);
    border-radius: var(--hh-radius);
}

.hh-distance-item .place {
    font-weight: 500;
    color: var(--hh-text);
}

.hh-distance-item .distance {
    color: var(--hh-secondary);
    font-weight: 600;
}

/* Floor Plans */
.hh-floor-plans {
    margin-bottom: 50px;
}

.hh-floor-plans h3 {
    margin-bottom: 20px;
}

.hh-floor-plan-item {
    border: 1px solid var(--hh-gray-light);
    border-radius: var(--hh-radius);
    margin-bottom: 10px;
    overflow: hidden;
}

.hh-floor-plan-header {
    padding: 15px 20px;
    background: var(--hh-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    transition: var(--hh-transition);
}

.hh-floor-plan-header:hover {
    background: var(--hh-secondary);
    color: var(--hh-white);
}

.hh-floor-plan-header .arrow {
    transition: var(--hh-transition);
}

.hh-floor-plan-header.active .arrow {
    transform: rotate(180deg);
}

.hh-floor-plan-body {
    display: none;
    padding: 20px;
    text-align: center;
}

.hh-floor-plan-body.active {
    display: block;
}

.hh-floor-plan-body img {
    max-width: 100%;
    margin: 0 auto;
}

/* ===========================
   Blog Page
   =========================== */
.hh-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.hh-blog-card {
    background: var(--hh-white);
    border-radius: var(--hh-radius);
    overflow: hidden;
    box-shadow: var(--hh-shadow);
    transition: var(--hh-transition);
}

.hh-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hh-shadow-hover);
}

.hh-blog-card-img {
    height: 250px;
    overflow: hidden;
}

.hh-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--hh-transition);
}

.hh-blog-card:hover .hh-blog-card-img img {
    transform: scale(1.05);
}

.hh-blog-card-body {
    padding: 25px;
}

.hh-blog-card-body h4 {
    margin-bottom: 10px;
}

.hh-blog-card-body h4 a:hover {
    color: var(--hh-secondary);
}

.hh-blog-card-body p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.hh-read-more {
    color: var(--hh-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.hh-read-more:hover {
    gap: 10px;
}

/* Single Blog Post */
.hh-single-blog {
    padding: 60px 0;
}

.hh-single-blog .blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.hh-single-blog .blog-content h2,
.hh-single-blog .blog-content h3 {
    margin: 30px 0 15px;
}

.hh-single-blog .blog-content p {
    line-height: 1.9;
    font-size: 1.05rem;
}

.hh-single-blog .blog-content img {
    border-radius: var(--hh-radius);
    margin: 20px 0;
}

/* ===========================
   Contact Page
   =========================== */
.hh-contact-section {
    padding: 60px 0;
}

.hh-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.hh-contact-info-card {
    padding: 20px 0;
}

.hh-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.hh-contact-info-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hh-contact-info-item .icon svg {
    width: 22px;
    height: 22px;
    fill: var(--hh-secondary);
}

.hh-contact-info-item h5 {
    font-family: var(--hh-font-primary);
    margin-bottom: 5px;
    font-size: 1rem;
}

.hh-contact-info-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.hh-contact-info-item a {
    color: var(--hh-secondary);
}

.hh-contact-form {
    background: var(--hh-light);
    border-radius: var(--hh-radius);
    padding: 40px;
}

.hh-contact-form h3 {
    margin-bottom: 25px;
}

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

.hh-contact-form label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--hh-text);
}

.hh-contact-form input,
.hh-contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--hh-gray-light);
    border-radius: var(--hh-radius);
    font-family: var(--hh-font-primary);
    font-size: 0.95rem;
    background: var(--hh-white);
    transition: var(--hh-transition);
}

.hh-contact-form input:focus,
.hh-contact-form textarea:focus {
    border-color: var(--hh-secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

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

.hh-contact-form .consent-text {
    font-size: 0.8rem;
    color: var(--hh-gray);
    margin-top: 10px;
}

.hh-contact-form .btn-primary-hh {
    width: 100%;
    text-align: center;
    padding: 15px;
}

/* ===========================
   Lightbox
   =========================== */
.hh-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.hh-lightbox.active {
    display: flex;
}

.hh-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--hh-radius);
}

.hh-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--hh-white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--hh-transition);
    background: none;
    border: none;
}

.hh-lightbox-close:hover {
    color: var(--hh-secondary);
}

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

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

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

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

    .hh-property-overview {
        grid-template-columns: 1fr;
    }

    .hh-property-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .hh-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--hh-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--hh-shadow);
        gap: 15px;
    }

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

    .hh-nav a {
        color: var(--hh-primary);
    }

    .hh-menu-toggle {
        display: flex;
    }

    .hh-hero {
        min-height: 500px;
    }

    .hh-hero-content h1 {
        font-size: 2.5rem;
    }

    .hh-properties-grid,
    .hh-all-properties .hh-properties-grid {
        grid-template-columns: 1fr;
    }

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

    .hh-blog-grid {
        grid-template-columns: 1fr;
    }

    .hh-footer-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hh-distance-grid {
        grid-template-columns: 1fr;
    }

    .hh-page-header {
        height: 300px;
    }

    .hh-page-header-content h1 {
        font-size: 2rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .hh-cta-content h2 {
        font-size: 1.8rem;
    }

    .hh-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

    .hh-gallery-grid {
        grid-template-columns: 1fr;
    }

    .hh-contact-form {
        padding: 25px;
    }

    .hh-property-sidebar {
        padding: 20px;
    }
}
