/*
Theme Name: Golden Property
Theme URI: https://goldenproperty.com.bd
Author: Golden Property
Author URI: https://goldenproperty.com.bd
Description: A professional real estate WordPress theme for Golden Property - Land Plots Seller in Bashundhara Housing Residential Area, Dhaka, Bangladesh. Features BDT currency, property listings, gallery, testimonials, and Google Maps integration.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: golden-property
Tags: real-estate, bangladesh, property, one-page, customizer-ready, responsive, business
*/

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

/* ============================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
    /* Brand Colors */
    --gp-gold:          #C9A227;
    --gp-gold-light:    #E8C547;
    --gp-gold-dark:     #A07D15;
    --gp-navy:          #0D2137;
    --gp-navy-light:    #163352;
    --gp-navy-dark:     #071525;
    --gp-white:         #FFFFFF;
    --gp-off-white:     #F8F6F1;
    --gp-light-gray:    #F1F0EE;
    --gp-mid-gray:      #9CA3AF;
    --gp-dark-gray:     #374151;
    --gp-text:          #1F2937;
    --gp-text-light:    #6B7280;

    /* Typography */
    --font-heading:     'Playfair Display', Georgia, serif;
    --font-body:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-pad:      80px;
    --section-pad-sm:   48px;
    --container-max:    1280px;
    --container-px:     24px;

    /* Borders & Radii */
    --radius-sm:        6px;
    --radius-md:        12px;
    --radius-lg:        20px;
    --radius-xl:        32px;

    /* Shadows */
    --shadow-sm:        0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md:        0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg:        0 12px 40px rgba(0,0,0,0.15);
    --shadow-gold:      0 4px 20px rgba(201,162,39,0.30);

    /* Transitions */
    --transition:       0.3s ease;
    --transition-slow:  0.5s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gp-text);
    background-color: var(--gp-white);
    overflow-x: hidden;
}

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

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

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

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--gp-navy);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.gp-container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-px);
    width: 100%;
}

.gp-section {
    padding-block: var(--section-pad);
}

.gp-section-sm {
    padding-block: var(--section-pad-sm);
}

.gp-section-dark {
    background: var(--gp-navy);
    color: var(--gp-white);
}

.gp-section-dark h1,
.gp-section-dark h2,
.gp-section-dark h3,
.gp-section-dark h4 {
    color: var(--gp-white);
}

.gp-section-gold {
    background: linear-gradient(135deg, var(--gp-gold) 0%, var(--gp-gold-dark) 100%);
    color: var(--gp-navy);
}

.gp-section-off-white {
    background: var(--gp-off-white);
}

/* Grid Utilities */
.gp-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.gp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.gp-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Flex Utilities */
.gp-flex { display: flex; }
.gp-flex-center { display: flex; align-items: center; justify-content: center; }
.gp-flex-between { display: flex; align-items: center; justify-content: space-between; }
.gp-flex-col { display: flex; flex-direction: column; }
.gp-gap-1 { gap: 8px; }
.gp-gap-2 { gap: 16px; }
.gp-gap-3 { gap: 24px; }
.gp-gap-4 { gap: 32px; }

/* Text Utilities */
.gp-text-center { text-align: center; }
.gp-text-gold { color: var(--gp-gold); }
.gp-text-navy { color: var(--gp-navy); }
.gp-text-white { color: var(--gp-white); }
.gp-text-muted { color: var(--gp-text-light); }
.gp-text-sm { font-size: 0.875rem; }
.gp-text-lg { font-size: 1.125rem; }
.gp-font-heading { font-family: var(--font-heading); }

/* ============================================================
   SECTION HEADER PATTERN
   ============================================================ */
.gp-section-header {
    margin-bottom: 56px;
    max-width: 640px;
}

.gp-section-header.gp-text-center {
    margin-inline: auto;
}

.gp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gp-gold);
    margin-bottom: 12px;
}

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

.gp-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gp-navy);
}

.gp-section-subtitle {
    font-size: 1.0625rem;
    color: var(--gp-text-light);
    line-height: 1.7;
}

.gp-section-dark .gp-section-title { color: var(--gp-white); }
.gp-section-dark .gp-section-subtitle { color: rgba(255,255,255,0.7); }

/* ============================================================
   BUTTONS
   ============================================================ */
.gp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.gp-btn-gold {
    background: var(--gp-gold);
    color: var(--gp-navy);
    border-color: var(--gp-gold);
}
.gp-btn-gold:hover {
    background: var(--gp-gold-dark);
    border-color: var(--gp-gold-dark);
    color: var(--gp-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.gp-btn-outline-white {
    background: transparent;
    color: var(--gp-white);
    border-color: rgba(255,255,255,0.7);
}
.gp-btn-outline-white:hover {
    background: var(--gp-white);
    color: var(--gp-navy);
    border-color: var(--gp-white);
}

.gp-btn-outline-gold {
    background: transparent;
    color: var(--gp-gold);
    border-color: var(--gp-gold);
}
.gp-btn-outline-gold:hover {
    background: var(--gp-gold);
    color: var(--gp-navy);
}

.gp-btn-navy {
    background: var(--gp-navy);
    color: var(--gp-white);
    border-color: var(--gp-navy);
}
.gp-btn-navy:hover {
    background: var(--gp-navy-light);
    border-color: var(--gp-navy-light);
    color: var(--gp-white);
    transform: translateY(-2px);
}

.gp-btn-lg {
    padding: 18px 40px;
    font-size: 1.0625rem;
}

.gp-btn-sm {
    padding: 10px 20px;
    font-size: 0.8125rem;
}

.gp-btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   BADGES
   ============================================================ */
.gp-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.gp-badge-gold { background: rgba(201,162,39,0.15); color: var(--gp-gold-dark); }
.gp-badge-green { background: rgba(34,197,94,0.12); color: #15803d; }
.gp-badge-navy { background: rgba(13,33,55,0.10); color: var(--gp-navy); }

/* ============================================================
   CARDS
   ============================================================ */
.gp-card {
    background: var(--gp-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all var(--transition);
}
.gp-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* ============================================================
   FORMS
   ============================================================ */
.gp-form-group {
    margin-bottom: 20px;
}

.gp-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gp-navy);
    margin-bottom: 8px;
}

.gp-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E5E7EB;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--gp-text);
    background: var(--gp-white);
    transition: border-color var(--transition);
    outline: none;
}

.gp-form-control:focus {
    border-color: var(--gp-gold);
    box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}

.gp-form-control::placeholder { color: var(--gp-mid-gray); }

textarea.gp-form-control {
    resize: vertical;
    min-height: 120px;
}

/* ============================================================
   STAR RATING
   ============================================================ */
.gp-stars {
    display: flex;
    gap: 2px;
    color: var(--gp-gold);
    font-size: 1rem;
}

/* ============================================================
   DIVIDER
   ============================================================ */
.gp-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gp-gold), var(--gp-gold-light));
    border-radius: 3px;
    margin: 16px auto 0;
}
.gp-divider-left { margin-left: 0; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes gp-fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes gp-counter {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes gp-pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,39,0.6); }
    50%       { box-shadow: 0 0 0 12px rgba(201,162,39,0); }
}

@keyframes gp-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

.gp-animate-fade-up {
    opacity: 0;
    animation: gp-fade-up 0.6s ease forwards;
}

.gp-animate-delay-1 { animation-delay: 0.1s; }
.gp-animate-delay-2 { animation-delay: 0.2s; }
.gp-animate-delay-3 { animation-delay: 0.3s; }
.gp-animate-delay-4 { animation-delay: 0.4s; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

:focus-visible {
    outline: 2px solid var(--gp-gold);
    outline-offset: 3px;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
    :root {
        --section-pad: 64px;
        --section-pad-sm: 40px;
    }
    .gp-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .gp-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 48px;
        --section-pad-sm: 32px;
        --container-px: 16px;
    }
    .gp-grid-4,
    .gp-grid-3,
    .gp-grid-2 { grid-template-columns: 1fr; }
    .gp-section-header { margin-bottom: 36px; }
}
