/*
Theme Name: Titan Stone Real Estate
Theme URI: https://titanstonerealestate.com
Author: Titan Stone Development Team
Author URI: https://titanstonerealestate.com
Description: Premium WordPress theme for Titan Stone Real Estate - Dubai's luxury real estate brokerage
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: titan-stone
Tags: real-estate, luxury, dubai, custom-post-types, responsive
*/

/* ========================================
   CSS VARIABLES & RESET
======================================== */
:root {
    --primary-dark: #1a2234;
    --primary-darker: #121825;
    --primary-light: #2a3650;
    --gold: #c9a227;
    --gold-light: #d4b84a;
    --gold-dark: #a88a1e;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --success: #28a745;
    --error: #dc3545;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.25);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 20px;
    --font-primary: 'Montserrat', sans-serif;
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

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

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* ========================================
   LAYOUT
======================================== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

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

.section-light {
    background-color: var(--gray-100);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.text-white h2 {
    color: var(--white);
}

.section-header.text-white p {
    color: var(--gray-300);
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
    padding: 20px 0;
}

.site-header.scrolled {
    background-color: var(--primary-dark);
    padding: 15px 0;
    box-shadow: var(--shadow-lg);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 50px;
    width: auto;
    max-height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 0 transparent);
    animation: goldenGlow 3s ease-in-out infinite;
}

/* WordPress Custom Logo - Fix oversized logo */
.custom-logo-link {
    display: flex;
    align-items: center;
}

.custom-logo-link img,
img.custom-logo {
    height: 45px !important;
    width: auto !important;
    max-height: 45px !important;
    max-width: 200px !important;
    object-fit: contain;
    filter: drop-shadow(0 0 0 transparent);
    animation: goldenGlow 3s ease-in-out infinite;
}

/* Header scrolled state - smaller logo */
.site-header.scrolled .logo-image,
.site-header.scrolled .custom-logo-link img,
.site-header.scrolled img.custom-logo {
    height: 40px !important;
    max-height: 40px !important;
}

/* Mobile logo */
@media (max-width: 768px) {
    .logo-image,
    .custom-logo-link img,
    img.custom-logo {
        height: 40px !important;
        max-height: 40px !important;
        max-width: 150px !important;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}

@keyframes goldenGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(201, 162, 39, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.8)) drop-shadow(0 0 40px rgba(201, 162, 39, 0.4));
    }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo-text span {
    color: var(--gold);
}

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

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

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

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

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

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 500;
}

.header-phone svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: all var(--transition-fast);
}

@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--primary-darker);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        transition: right var(--transition-normal);
    }

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

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }

    .nav-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-top: 30px;
    }

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

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--primary-dark);
    border-color: var(--gold);
}

.btn-primary:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

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

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

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

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

.btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

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

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

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 34, 52, 0.9) 0%, rgba(26, 34, 52, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.hero-content h1 span {
    color: var(--gold);
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--gray-300);
    margin-bottom: 40px;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.hero-scroll-indicator svg {
    width: 30px;
    height: 30px;
    fill: var(--gold);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}

/* ========================================
   STATISTICS BAR
======================================== */
.stats-section {
    background-color: var(--primary-dark);
    padding: 50px 0;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

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

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-300);
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .stat-number {
        font-size: 2.5rem;
    }
}

/* ========================================
   DEVELOPER PARTNERS
======================================== */
.developers-section {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.developers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
}

.developer-logo {
    background-color: var(--white);
    padding: 25px 15px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.developer-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.developer-logo .developer-logo-img {
    height: 60px;
    width: auto;
    max-width: 100%;
    margin: 0 auto 10px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-normal);
}

.developer-logo:hover .developer-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

.developer-logo img {
    height: 60px;
    width: auto;
    max-width: 100%;
    margin: 0 auto 10px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-normal);
}

.developer-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.developer-logo span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
}

@media (max-width: 1200px) {
    .developers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .developers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .developers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .developer-logo .developer-logo-img,
    .developer-logo img {
        height: 50px;
    }
}

/* ========================================
   PROPERTY CARDS
======================================== */
.properties-section {
    padding: 80px 0;
}

.properties-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background-color: transparent;
    color: var(--gray-600);
    border: 2px solid var(--gray-300);
    border-radius: 50px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--primary-dark);
}

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

.property-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

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

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
}

.property-badge.sale {
    background-color: var(--gold);
    color: var(--primary-dark);
}

.property-badge.rent {
    background-color: var(--primary-dark);
    color: var(--white);
}

.property-badge.featured {
    background-color: var(--success);
    color: var(--white);
}

.property-favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.property-favorite:hover {
    background-color: var(--error);
}

.property-favorite svg {
    width: 20px;
    height: 20px;
    fill: var(--gray-400);
    transition: fill var(--transition-fast);
}

.property-favorite:hover svg {
    fill: var(--white);
}

.property-content {
    padding: 25px;
}

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

.property-location svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.property-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
    transition: color var(--transition-fast);
}

.property-card:hover .property-title {
    color: var(--gold);
}

.property-features {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 15px;
}

.property-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.property-feature svg {
    width: 18px;
    height: 18px;
    fill: var(--gray-400);
}

.property-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.property-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.property-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-500);
}

@media (max-width: 992px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================================
   OFF-PLAN SECTION
======================================== */
.offplan-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

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

.offplan-card {
    background: linear-gradient(145deg, var(--primary-light) 0%, var(--primary-darker) 100%);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
    transition: all var(--transition-normal);
    border: 1px solid rgba(201, 162, 39, 0.1);
}

.offplan-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.offplan-image {
    width: 45%;
    min-height: 280px;
    position: relative;
}

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

.offplan-developer {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    background-color: var(--gold);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
}

.offplan-content {
    width: 55%;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.offplan-location {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.offplan-title {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.offplan-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.offplan-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gray-300);
}

.offplan-detail svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.offplan-price {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.offplan-price-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 5px;
}

.offplan-price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}

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

    .offplan-card {
        flex-direction: column;
    }

    .offplan-image,
    .offplan-content {
        width: 100%;
    }

    .offplan-image {
        height: 200px;
    }
}

/* ========================================
   SERVICES SECTION
======================================== */
.services-section {
    padding: 80px 0;
}

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

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform var(--transition-normal);
}

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

.service-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
}

.service-link svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    transition: transform var(--transition-fast);
}

.service-link:hover svg {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================================
   WHY OFF-PLAN BENEFITS
======================================== */
.benefits-section {
    padding: 80px 0;
    background-color: var(--gray-100);
}

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

.benefit-card {
    background-color: var(--white);
    padding: 35px 25px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--gold);
}

.benefit-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.benefit-description {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================================
   BLOG SECTION
======================================== */
.blog-section {
    padding: 80px 0;
}

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

.blog-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--primary-dark);
    transition: color var(--transition-fast);
}

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

.blog-excerpt {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
}

.blog-read-more svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    transition: transform var(--transition-fast);
}

.blog-read-more:hover svg {
    transform: translateX(5px);
}

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

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

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

.cta-text p {
    color: var(--gray-300);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.cta-contact-item svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

.cta-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
}

.cta-form-wrapper h3 {
    margin-bottom: 25px;
    text-align: center;
}

@media (max-width: 992px) {
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-contact-info {
        align-items: center;
    }

    .cta-text h2 {
        font-size: 2rem;
    }
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-fast);
    background-color: var(--white);
}

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

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

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23adb5bd'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 24px;
    padding-right: 45px;
}

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

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
    padding: 15px;
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
}

.form-error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid var(--error);
    color: var(--error);
    padding: 15px;
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background-color: var(--primary-darker);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about .logo-wrapper {
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--gray-400);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--gold);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

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

.footer-links a {
    color: var(--gray-400);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-links a svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.footer-links a:hover svg {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item svg {
    width: 22px;
    height: 22px;
    fill: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item div {
    color: var(--gray-400);
}

.footer-contact-item strong {
    color: var(--white);
    display: block;
    margin-bottom: 3px;
}

.footer-newsletter {
    margin-top: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius-md);
    background-color: var(--primary-light);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: var(--gray-400);
}

.newsletter-form button {
    padding: 12px 20px;
    background-color: var(--gold);
    color: var(--primary-dark);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.newsletter-form button:hover {
    background-color: var(--gold-light);
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

/* ========================================
   WHATSAPP BUTTON
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
}

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

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ========================================
   PAGE HEADERS
======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(201,162,39,0.1)"/></svg>') repeat;
    background-size: 30px 30px;
}

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

.page-header .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gray-400);
    position: relative;
}

.page-header .breadcrumb a {
    color: var(--gold);
}

.page-header .breadcrumb span {
    color: var(--gray-500);
}

/* ========================================
   ABOUT PAGE
======================================== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
}

.about-image-overlay {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--gold);
    padding: 25px 35px;
    border-radius: var(--border-radius-lg);
}

.about-image-overlay .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.about-image-overlay .label {
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text .lead {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-value {
    display: flex;
    gap: 15px;
}

.about-value-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-value-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

.about-value h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.about-value p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

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

.team-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    text-align: center;
}

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

.team-image {
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.team-info {
    padding: 25px;
}

.team-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-position {
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-contact a {
    width: 40px;
    height: 40px;
    background-color: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.team-contact a:hover {
    background-color: var(--gold);
}

.team-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--gray-600);
    transition: fill var(--transition-fast);
}

.team-contact a:hover svg {
    fill: var(--white);
}

@media (max-width: 992px) {
    .about-intro {
        grid-template-columns: 1fr;
    }

    .about-image-overlay {
        right: 20px;
        bottom: 20px;
    }

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

@media (max-width: 576px) {
    .about-values {
        grid-template-columns: 1fr;
    }

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

/* ========================================
   CONTACT PAGE
======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 20px;
    transition: all var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.contact-info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-info-content p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.contact-info-content a {
    color: var(--gold);
    font-weight: 500;
}

.contact-form-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    margin-bottom: 10px;
}

.contact-form-card > p {
    color: var(--gray-500);
    margin-bottom: 30px;
}

.contact-map {
    height: 400px;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 60px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

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

/* ========================================
   PROPERTY LISTING PAGE
======================================== */
.listing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.listing-count {
    color: var(--gray-600);
}

.listing-count strong {
    color: var(--primary-dark);
}

.listing-sort {
    display: flex;
    align-items: center;
    gap: 15px;
}

.listing-sort label {
    color: var(--gray-600);
}

.listing-sort select {
    padding: 10px 35px 10px 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    background-color: var(--white);
    cursor: pointer;
}

.property-filters {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.filter-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    background-color: var(--white);
}

.filter-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.pagination a {
    background-color: var(--white);
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

.pagination a:hover,
.pagination span.current {
    background-color: var(--gold);
    color: var(--primary-dark);
}

@media (max-width: 992px) {
    .filter-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .filter-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SINGLE PROPERTY PAGE
======================================== */
.single-property-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-main {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 500px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}

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

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.gallery-more {
    position: absolute;
    inset: 0;
    background-color: rgba(26, 34, 52, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

.single-property-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

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

.property-price-tag {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.property-price-tag span {
    font-size: 1rem;
    color: var(--gray-500);
}

.property-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 25px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 30px;
}

.property-spec {
    display: flex;
    align-items: center;
    gap: 12px;
}

.property-spec-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-spec-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

.property-spec-label {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.property-spec-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.property-description h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

.property-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background-color: var(--gray-100);
    border-radius: var(--border-radius-md);
}

.feature-item svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
}

.property-sidebar {
    position: sticky;
    top: 100px;
}

.inquiry-form-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-100);
}

.inquiry-form-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.agent-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    margin-top: 25px;
}

.agent-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--gold);
}

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

.agent-name {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.agent-position {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.agent-contact {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.agent-contact a {
    padding: 10px 20px;
    background-color: var(--gray-100);
    border-radius: var(--border-radius-md);
    color: var(--primary-dark);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.agent-contact a:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
}

@media (max-width: 992px) {
    .single-property-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-main {
        height: 400px;
    }

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

    .single-property-content {
        grid-template-columns: 1fr;
    }

    .property-sidebar {
        position: static;
    }
}

/* ========================================
   LIST PROPERTY PAGE
======================================== */
.list-property-section {
    padding: 80px 0;
}

.list-property-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-section {
    background-color: var(--white);
    padding: 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.form-section-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section-title svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-item input {
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
}

@media (max-width: 768px) {
    .form-row-3,
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SERVICES PAGE
======================================== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

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

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-detail-content p {
    margin-bottom: 20px;
}

.service-detail-list {
    margin-bottom: 25px;
}

.service-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.service-detail-list svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

@media (max-width: 992px) {
    .service-detail {
        grid-template-columns: 1fr;
    }

    .service-detail:nth-child(even) {
        direction: ltr;
    }
}

/* ========================================
   UTILITIES
======================================== */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.hidden { display: none; }
.visible { display: block; }

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
======================================== */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.6rem; }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.4rem; }

    .section {
        padding: 50px 0;
    }

    .btn {
        padding: 12px 25px;
    }

    .btn-lg {
        padding: 14px 30px;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .section {
        padding: 40px 0;
    }

    .container {
        padding: 0 15px;
    }
}
