/**
 * İMZA Gayrimenkul - Premium Luxury Stylesheet
 * Modern, Sophisticated, Professional Design
 */

:root {
    /* Primary Brand Colors - Premium Gold */
    --primary: #c6aa69;
    --primary-dark: #a89055;
    --primary-light: #d4bc8b;
    --primary-rgb: 198, 170, 105;
    
    /* Secondary Colors - Deep Navy */
    --secondary: #16172c;
    --secondary-light: #1e1f3a;
    --secondary-lighter: #252742;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f7;
    --gray-200: #e8e8ed;
    --gray-300: #d1d1d6;
    --gray-400: #86868b;
    --gray-500: #636366;
    --gray-600: #48484a;
    --gray-700: #2c2c2e;
    --gray-800: #1c1c1e;
    --black: #000000;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #8b7347 100%);
    --gradient-dark: linear-gradient(180deg, var(--secondary) 0%, var(--secondary-light) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(22, 23, 44, 0.85) 0%, rgba(22, 23, 44, 0.7) 50%, rgba(22, 23, 44, 0.85) 100%);
    
    /* Shadows - Sophisticated depth */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 30px rgba(198, 170, 105, 0.3);
    --shadow-gold-lg: 0 8px 40px rgba(198, 170, 105, 0.4);
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    /* Typography Scale */
    --font-body: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Archivo', Georgia, sans-serif;
    
    /* Spacing */
    --container-max: 1400px;
    --section-padding: 120px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary);
}

/* Top Bar - Premium */
.top-bar {
    background: var(--secondary);
    color: var(--white);
    padding: 14px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(198, 170, 105, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar .contact-info {
    display: flex;
    gap: 32px;
}

.top-bar .contact-info a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: var(--transition);
}

.top-bar .contact-info a:hover {
    color: var(--primary);
}

.top-bar .contact-info i {
    color: var(--primary);
    font-size: 14px;
}

.top-bar .social-links {
    display: flex;
    gap: 20px;
}

.top-bar .social-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.top-bar .social-links a:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(198, 170, 105, 0.1);
}

/* Header - Luxury Style */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 24px;
    box-shadow: var(--shadow-gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 10px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-top: 4px;
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 8px;
}

.main-nav a {
    padding: 12px 22px;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius);
    position: relative;
    transition: var(--transition);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 20px;
}

/* Header CTA Button */
.btn-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-gold);
    color: var(--secondary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--secondary);
    cursor: pointer;
    padding: 8px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 146px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-xl);
    flex-direction: column;
    gap: 4px;
    z-index: 999;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    padding: 16px 20px;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 16px;
    border-radius: var(--radius);
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

/* Hero Slider - Premium */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    max-height: 1000px;
    overflow: hidden;
}

.hero-slider .swiper {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-wrapper {
    height: 100%;
}

.hero-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 23, 44, 0.85) 0%, rgba(22, 23, 44, 0.6) 50%, rgba(22, 23, 44, 0.85) 100%);
    z-index: 1;
}

/* Hero Slider Navigation */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--white);
    background: rgba(198, 170, 105, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--primary);
    transform: scale(1.1);
    border-color: var(--white);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 24px;
    font-weight: bold;
}

.hero-slider .swiper-pagination {
    bottom: 30px !important;
    z-index: 10;
}

.hero-slider .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 12px;
    height: 12px;
    transition: var(--transition);
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
    color: var(--white);
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(3rem, 7vw, 5.5rem);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease 0.2s forwards;
    font-weight: 300;
}

.hero-content .btn-primary {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease 0.4s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons - Premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--secondary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

.btn-dark {
    background: var(--secondary);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--primary);
    color: var(--secondary);
}

/* Sections */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* About Section */
.about-section {
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    color: var(--gray-500);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-200);
}

.stat-item h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--gray-500);
    font-size: 14px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cards - Premium Design */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
}

.card-content {
    padding: 32px;
}

.card-content h3 {
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.card-content p {
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.8;
}

.card-meta {
    display: flex;
    gap: 24px;
    color: var(--gray-500);
    font-size: 14px;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-meta i {
    color: var(--primary);
}

/* Services Section - Dark Luxury */
.services-section {
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c6aa69' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.services-section .section-header h2,
.services-section .section-header p {
    color: var(--white);
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(198, 170, 105, 0.15);
    padding: 48px 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: translateY(-12px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: rgba(198, 170, 105, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 36px;
    color: var(--primary);
    border: 2px solid rgba(198, 170, 105, 0.2);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--secondary);
    transform: rotateY(360deg);
}

.service-card h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.8;
}

.service-card .link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card .link:hover {
    gap: 16px;
}

/* Projects Section */
.projects-section {
    background: var(--gray-50);
}

.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 23, 44, 0.95) 0%, rgba(22, 23, 44, 0.4) 50%, transparent 100%);
    z-index: 1;
    transition: var(--transition);
}

.project-card:hover::before {
    background: linear-gradient(to top, rgba(22, 23, 44, 0.98) 0%, rgba(22, 23, 44, 0.6) 100%);
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: var(--white);
    z-index: 2;
    transform: translateY(60px);
    transition: var(--transition);
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.6rem;
}

.project-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Properties Section */
.properties-section {
    background: var(--white);
}

.property-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.property-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-type {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 18px;
    background: var(--primary);
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-price {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.property-content {
    padding: 28px;
}

.property-content h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 20px;
}

.property-features {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-500);
}

.property-features i {
    color: var(--primary);
}

/* Features Section - Why Choose Us */
.features-section {
    background: var(--secondary);
    color: var(--white);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.03);
}

.feature-box i {
    font-size: 56px;
    color: var(--primary);
    margin-bottom: 28px;
    display: inline-block;
    transition: var(--transition);
}

.feature-box:hover i {
    transform: translateY(-8px);
}

.feature-box h3 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1.35rem;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-gold);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23000' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-section h2 {
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(22, 23, 44, 0.8);
    font-size: 1.25rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-section .btn-dark {
    position: relative;
    z-index: 1;
}

.cta-section .btn-dark:hover {
    background: var(--white);
    color: var(--secondary);
}

/* Page Header */
.page-header {
    background: var(--gradient-dark);
    padding: 160px 0 100px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c6aa69' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(198, 170, 105, 0.1);
}

.form-control::placeholder {
    color: var(--gray-400);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.contact-info-box {
    padding: 48px;
}

.contact-info-box h3 {
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item i {
    width: 56px;
    height: 56px;
    background: rgba(198, 170, 105, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 17px;
    margin-bottom: 6px;
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-item p {
    color: var(--gray-500);
}

/* Map */
.map-container {
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Property Detail */
.property-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.property-gallery {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.property-gallery img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.property-info-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.property-price-box {
    text-align: center;
    padding: 40px;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-gold);
}

.property-price-box .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.property-price-box .type {
    color: rgba(22, 23, 44, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.property-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(198, 170, 105, 0.08);
}

.feature-item i {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    box-shadow: var(--shadow-sm);
}

/* Filter Section */
.filter-section {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-100);
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.filter-form .form-group {
    margin: 0;
}

.filter-form label {
    font-size: 12px;
    margin-bottom: 8px;
    color: var(--gray-500);
}

.filter-form .form-control {
    padding: 14px 16px;
}

/* Footer - Luxury */
.main-footer {
    background: var(--secondary);
    color: var(--white);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 60px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.footer-logo i {
    font-size: 32px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
    line-height: 1.9;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 28px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 18px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: #25d366;
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* Swiper Customization */
.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination a,
.pagination span {
    padding: 14px 22px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    min-width: 50px;
    text-align: center;
}

.pagination a {
    background: var(--white);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.pagination a:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.pagination span.current {
    background: var(--primary);
    color: var(--secondary);
    font-weight: 600;
    box-shadow: var(--shadow-gold);
}

/* Alerts */
.alert {
    padding: 20px 24px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 100px 40px;
}

.empty-state i {
    font-size: 80px;
    color: var(--gray-200);
    margin-bottom: 30px;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--gray-600);
}

.empty-state p {
    color: var(--gray-400);
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .about-grid,
    .contact-grid,
    .property-detail-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image::after {
        display: none;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .main-nav,
    .btn-header {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .property-features-grid {
        grid-template-columns: 1fr;
    }
    
    .top-bar .contact-info {
        gap: 16px;
    }
    
    .top-bar .social-links {
        display: none;
    }
    
    .hero-slider {
        min-height: 600px;
    }
}

@media (max-width: 480px) {
    .filter-form {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .btn {
        padding: 16px 28px;
        font-size: 14px;
    }
    
    .contact-form,
    .contact-info-box {
        padding: 28px;
    }
    
    .property-price-box .price {
        font-size: 2rem;
    }
}

/* Swiper Gallery Styles */
.propertySwiper .swiper-button-next,
.propertySwiper .swiper-button-prev {
    color: var(--white);
    background: rgba(198, 170, 105, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition);
}

.propertySwiper .swiper-button-next:hover,
.propertySwiper .swiper-button-prev:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.propertySwiper .swiper-button-next::after,
.propertySwiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.propertySwiper .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.6;
    width: 10px;
    height: 10px;
}

.propertySwiper .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

.propertyThumbs {
    margin-top: 10px;
}

.propertyThumbs .swiper-slide {
    opacity: 0.6;
    transition: var(--transition);
    border: 2px solid transparent;
    border-radius: var(--radius);
    overflow: hidden;
}

.propertyThumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--primary);
}

.propertyThumbs .swiper-slide:hover {
    opacity: 1;
}

/* Map Container iframe responsive */
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .propertySwiper .swiper-button-next,
    .propertySwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .propertySwiper .swiper-button-next::after,
    .propertySwiper .swiper-button-prev::after {
        font-size: 16px;
    }
    
    .propertyThumbs .swiper-slide img {
        height: 70px;
    }
}
