/* ===================================================================
   Base & Premium Theme Styles
=================================================================== */

/* -------------------------------------------------------------------
   [Table of contents]

   1.  - Root Variables & Basic Setup
   2.  - Typography
   3.  - Header & Navigation
   4.  - Hero Section
   5.  - General Layout & Sections
   6.  - Buttons & UI Elements
   7.  - Page Title Section
   8.  - Service Cards
   9.  - Featured Listings & Projects (Cards)
   10. - İlanlar & Projeler Pages (Grid)
   11. - İlan Detay Page
   12. - Page.php Content Style
   13. - Footer
   14. - Helper & Animation Classes
   15. - Responsive Design
   16. - Yönetim Kadrosu
------------------------------------------------------------------- */

/* 1. Root Variables & Basic Setup
------------------------------------------------------------------- */
:root {
    --gold-foil: #c09f6b;
    --light-bg: #f8f9fa;      /* Main light gray background */
    --white-bg: #ffffff;       /* White for cards/elevated surfaces */
    --dark-text: #212529;      /* Primary dark text */
    --mid-text: #555555;       /* Secondary dark text */
    --light-text: #f8f9fa;     /* Text on dark/gold backgrounds */
    --border-color: #dee2e6;   /* Light border color */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-foil) var(--dark-bg);
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--light-bg);
    color: var(--mid-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

/* 2. Typography
------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--dark-text);
    font-weight: 600;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--mid-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4rem;
}

/* 3. Header & Navigation
------------------------------------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.8rem 0;
    z-index: 1000;
    transition: background-color 0.4s ease, padding 0.4s ease, border-bottom 0.4s ease;
    background: transparent;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.mobile-menu-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-text);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--gold-foil);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: var(--mid-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold-foil);
    transition: width 0.4s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--dark-text);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

/* Modern Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(192, 159, 107, 0.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-menu-btn:hover {
    background: rgba(192, 159, 107, 0.2);
    border-color: var(--gold-foil);
    transform: scale(1.05);
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: var(--dark-text);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mobile-menu-btn.active {
    background: rgba(192, 159, 107, 0.3);
    border-color: var(--gold-foil);
    transform: rotate(180deg);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--gold-foil);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--gold-foil);
}


/* 3. Hero Section
------------------------------------------------------------------- */
.hero-section-video {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

#bgvid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content-overlay {
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lottie-hero-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
}

#lottie-hero-animation svg {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-family: var(--font-sans);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1;
    color: #ffffff;
    text-align: center;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    position: relative;
    animation: modernHeroReveal 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.6));
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(192, 159, 107, 0.1) 50%, 
        transparent 70%);
    border-radius: 20px;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--gold-foil) 30%, 
        #e4cb9a 50%, 
        var(--gold-foil) 70%, 
        transparent);
    border-radius: 2px;
    animation: underlineModern 1.2s ease-out 0.8s forwards;
    transform-origin: center;
    scale: 0;
    box-shadow: 0 0 15px rgba(192, 159, 107, 0.5);
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 1px;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(192, 159, 107, 0.3);
    animation: modernSubtitleReveal 1.2s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(30px);
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(192, 159, 107, 0.3);
}

@keyframes modernHeroReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
        filter: blur(10px);
    }
    50% {
        opacity: 0.8;
        transform: translateY(20px) scale(0.95);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes modernSubtitleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes underlineModern {
    0% {
        scale: 0;
        opacity: 0;
    }
    50% {
        scale: 1.2;
        opacity: 0.8;
    }
    100% {
        scale: 1;
        opacity: 1;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.02);
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: heroButtonsReveal 1s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes heroButtonsReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-button.premium-button-outlined {
    background: transparent;
    border: 2px solid var(--gold-foil);
    color: var(--gold-foil);
}

.premium-button.premium-button-outlined:hover {
    background: var(--gold-foil);
    color: var(--dark-bg);
}

.premium-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gold-foil);
    color: var(--dark-bg);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.premium-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(192, 159, 107, 0.3);
}

.premium-button-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--gold-foil);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--gold-foil);
    transition: all 0.3s ease;
}

.premium-button-outline:hover {
    background: var(--gold-foil);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

.hero-slider {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    position: relative;
    margin-top: 80px;
}

.single-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.single-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content {
    animation: fadeIn 2s ease-in-out;
}

.hero-title {
    font-size: 5rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-title span {
    color: var(--gold-foil);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #f0f0f0;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

/* 5. General Layout & Sections
------------------------------------------------------------------- */
.section {
    padding: 120px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.section:nth-child(even) {
    background-color: var(--charcoal-bg);
}

/* 6. Buttons & UI Elements
------------------------------------------------------------------- */

.hero-buttons-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    animation: heroButtonsReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.premium-button {
    font-family: var(--font-sans);
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease-in-out;
    z-index: 1;
    border: 1px solid var(--gold-foil);
}

.premium-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-foil);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-in-out;
    z-index: -1;
}

.premium-button:hover::before {
    transform: scaleX(1);
    transform-origin: right;
}

.premium-button:hover {
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.premium-button-outlined {
    border-color: rgba(255, 255, 255, 0.7);
}

.premium-button-outlined::before {
    background: #fff;
}

.premium-button-outlined:hover {
    color: var(--dark-bg);
}

.premium-button .fas {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.premium-button:hover .fas {
    transform: translateX(5px);
}


.whatsapp-premium:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* 4. Section Headers
------------------------------------------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.animated-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: var(--gold-foil);
    color: var(--dark-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white-smoke);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--mid-gray);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}

/* Animated Text Styles */
.animated-badge {
    opacity: 0;
    transform: translateY(-20px);
}

.animated-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    margin-right: 0.3rem;
}

.animated-subtitle {
    opacity: 0;
    transform: translateY(20px);
}

.animated-decoration {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-foil), #ffd700);
    margin: 1.5rem auto 0;
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
}

/* 5. Section Dividers
------------------------------------------------------------------- */
.angled-divider {
    position: relative;
    height: 100px;
    background-color: #1a1a1a; /* Match the dark section background */
    overflow: hidden;
}

.angled-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111; /* Match the main page background */
    transform-origin: top left;
    transform: skewY(-4deg);
}

/* 7. Page Title Section
------------------------------------------------------------------- */
.page-title-section {
    padding: 180px 0 100px;
    background-color: var(--charcoal-bg);
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.page-title {
    font-size: 4rem;
    font-weight: 600;
    color: var(--white-smoke);
    margin-bottom: 1.5rem;
}

.page-subtitle {
    color: var(--gold-foil);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
}

/* 8. Service Cards
------------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white-bg);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    border-color: var(--gold-foil);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold-foil);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white-smoke);
}

.service-card p {
    color: var(--mid-gray);
    font-size: 0.95rem;
}

/* 5. Premium Listings & Projects
------------------------------------------------------------------- */

.animated-header {
    padding-right: 120px; /* Make space for the animation */
}

.header-lottie-animation {
    position: absolute;
    top: -20px;
    right: 0;
    width: 150px;
    height: 150px;
    z-index: 0;
    opacity: 0.7;
}

/* 9. Featured Listings & Projects (Cards)
------------------------------------------------------------------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.item-card {
    background: var(--charcoal-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-decoration: none;
    color: var(--light-gray);
}

.item-card:hover {
    border-color: var(--gold-foil);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.item-card-image {
    height: 250px;
    overflow: hidden;
}

.item-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.item-card:hover .item-card-image img {
    transform: scale(1.05);
}

.item-card-content {
    padding: 1.5rem;
}

.item-card-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--white-smoke);
    font-weight: 500;
}

.item-card-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-foil);
    margin-bottom: 1rem;
}

.item-card-description {
    font-size: 0.95rem;
    color: var(--mid-gray);
    margin-bottom: 1.5rem;
    height: 50px; /* 2-3 lines of text */
    overflow: hidden;
}

.item-card-button {
    color: var(--gold-foil);
    text-decoration: none;
    font-weight: 600;
}

/* 10. İlanlar & Projeler Pages (Grid)
------------------------------------------------------------------- */
.grid-container .item-card {
    margin-bottom: 0; /* Override if any margin exists */
}

/* 11. İlan Detay Page
------------------------------------------------------------------- */
.listing-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.listing-detail-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.listing-detail-info h3 {
    font-size: 1.8rem;
    color: var(--gold-foil);
    border-bottom: 1px solid rgba(192, 159, 107, 0.2);
    padding-bottom: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.detail-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-foil);
    margin-bottom: 2rem;
}

.detail-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--light-gray);
}

.detail-meta {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.detail-meta li {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--mid-text);
}

.detail-meta li strong {
    color: var(--dark-text);
    margin-right: 10px;
}

/* 12. Page.php Content Style
------------------------------------------------------------------- */
.page-content .content-container {
    max-width: 900px;
    background: var(--charcoal-bg);
    padding: 3rem;
}

.content-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--light-gray);
}

.content-body p {
    margin-bottom: 1.5rem;
}

/* 13. Footer
------------------------------------------------------------------- */
footer {
    background: #f7f7f7;
    padding: 80px 0;
    font-size: 0.95rem;
    color: var(--mid-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-widget h4 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-widget p, .footer-widget ul li {
    margin-bottom: 1rem;
    color: var(--mid-gray);
}

.footer-widget a {
    color: var(--mid-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget a:hover {
    color: var(--gold-foil);
}

.footer-links {
    list-style: none;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    font-size: 1.3rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--mid-gray);
}

/* 14. Helper & Animation Classes
------------------------------------------------------------------- */
.text-center {
    text-align: center;
}

.error-message {
    color: #ff6b6b;
    font-size: 1.2rem;
    margin: 2rem 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 15. Advanced Sections Styling
------------------------------------------------------------------- */

.section-header {
    position: relative; /* Added for child positioning */
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(192, 159, 107, 0.1);
    color: var(--gold-foil);
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Premium Listings */
.premium-listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.premium-listing-card {
    background: var(--white-bg);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 8px;
    overflow: hidden;
}

.premium-listing-card:hover {
    border-color: var(--gold-foil);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.listing-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.listing-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-listing-card:hover .listing-image-wrapper img {
    transform: scale(1.1);
}

.listing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 1rem;
    display: flex;
    align-items: flex-start;
}

.listing-badge {
    background: var(--gold-foil);
    color: var(--dark-bg);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
}

.listing-content {
    padding: 1.5rem;
    background: var(--white-bg);
    flex-grow: 1;
}

.listing-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--mid-text);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.listing-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-serif);
    color: var(--dark-text);
}

.listing-description {
    color: var(--mid-text);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    height: 60px;
}

.listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.listing-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-foil);
}

.listing-price span {
    font-size: 1rem;
    font-weight: 500;
}

.listing-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-foil);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.listing-btn:hover {
    gap: 1rem;
}

/* Premium Projects */
.project-border-wrapper {
    position: relative;
}

.border-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allows clicks to go through to the card */
    z-index: 2;
}

.border-rect {
    fill: none;
    stroke: var(--gold-foil);
    stroke-width: 3px;
}

.premium-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.premium-project-card {
    background: var(--white-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.project-image-wrapper {
    height: 450px;
    position: relative;
    overflow: hidden;
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-project-card:hover .project-image-wrapper img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
    padding: 1.5rem;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.premium-project-card:hover .project-overlay-content {
    transform: translateY(0);
}

.project-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-foil);
    font-family: var(--font-serif);
}

.project-view-btn {
    width: 50px;
    height: 50px;
    background: var(--gold-foil);
    color: var(--dark-bg);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.project-view-btn:hover {
    transform: scale(1.1);
    background: var(--white-smoke);
}

.project-content {
    padding: 1.5rem;
    background: var(--white-bg);
    flex-grow: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.project-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--mid-text);
    margin-bottom: 1rem;
}

.project-category {
    background: rgba(192, 159, 107, 0.1);
    color: var(--gold-foil);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.project-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--mid-text);
    margin-bottom: 1rem;
}

/* Premium Gallery Section */
.premium-gallery {
    background-color: var(--secondary-bg);
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.gallery-item {
    height: 350px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: -1;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover::before {
    opacity: 0.5;
}

.gallery-item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Premium About Section */
.premium-about {
    background-color: var(--background-color);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr; /* Definitive fix: Set a fixed width for the image column */
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto; /* Let height adjust automatically */
    max-height: none; /* Remove max-height constraint */
    object-fit: cover; /* Revert to cover for better filling */
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1); /* Re-add a subtle shadow */
}

.about-content .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
}

.about-content .premium-button {
    margin-top: 1rem;
    background-color: var(--primary-color);
    color: #fff;
}

.about-content .premium-button:hover {
    background-color: var(--primary-hover);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-image {
        margin-bottom: 2rem;
    }
    .about-content .section-header {
        text-align: center;
    }
}


/* Premium Team Section */
.premium-team {
    background-color: var(--background-color);
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.team-card {
    background-color: var(--white-bg);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-foil);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.team-image-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image-wrapper img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.25rem 0;
}

.team-position {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.no-team {
    grid-column: 1 / -1; /* Span all columns */
    text-align: center;
    padding: 3rem;
    background-color: var(--secondary-bg);
    border-radius: 8px;
    color: var(--text-color-secondary);
}

/* Premium Contact */
.premium-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    background: var(--charcoal-bg);
    padding: 4rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--gold-foil);
    width: 50px;
    height: 50px;
    background: rgba(192, 159, 107, 0.1);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.contact-details h4 {
    font-size: 1.2rem;
    color: var(--white-smoke);
    margin-bottom: 0.25rem;
}

.contact-details p, .contact-details small {
    color: var(--mid-gray);
}

.contact-social h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--mid-gray);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold-foil);
    color: var(--dark-bg);
    border-color: var(--gold-foil);
}

.premium-contact-form .form-header {
    margin-bottom: 2rem;
}

.premium-contact-form .form-header h3 {
    font-size: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--mid-gray);
    font-size: 0.9rem;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--light-gray);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--gold-foil);
}

.premium-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gold-foil);
    color: var(--dark-bg);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.premium-submit-btn:hover {
    background: var(--white-smoke);
}

/* Premium Footer */
.premium-footer {
    background-color: var(--white-bg);
    color: var(--mid-text);
    padding: 5rem 0 2rem;
    position: relative;
    font-size: 0.95rem;
    border-top: 1px solid var(--border-color);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--white-smoke);
    margin-bottom: 1rem;
}

.newsletter-form {
    margin-top: 1.5rem;
    display: flex;
}

.newsletter-form input {
    flex-grow: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--charcoal-bg);
    padding: 0.75rem;
    color: var(--light-gray);
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background: var(--gold-foil);
    border: none;
    color: var(--dark-bg);
    padding: 0 1rem;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    font-size: 1.1rem;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
    font-size: 1.3rem;
    color: var(--white-smoke);
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
}

.footer-links ul, .footer-contact ul {
    list-style: none;
}

.footer-links ul li a, .footer-contact ul li {
    color: var(--mid-gray);
    text-decoration: none;
    margin-bottom: 0.75rem;
    display: inline-block;
    transition: color 0.3s, transform 0.3s;
}

.footer-links ul li a:hover {
    color: var(--gold-foil);
    transform: translateX(5px);
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact ul li i {
    color: var(--gold-foil);
    margin-top: 5px;
}

.social-icons-group {
    display: flex;
    gap: 0.75rem;
}

.social-icons-group .social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--mid-gray);
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
}

.social-icons-group .social-icon:hover {
    background: var(--gold-foil);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--gold-foil);
    text-decoration: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--gold-foil);
    color: var(--dark-bg);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-premium {
    bottom: 80px;
}

/* 16. Responsive Design
------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .premium-contact-grid {
        grid-template-columns: 1fr;
        padding: 3rem;
    }
    .footer-top-grid {
        grid-template-columns: 2fr 1fr 1.5fr;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .premium-contact-grid {
        gap: 3rem;
    }
    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-about, .footer-social {
        grid-column: 1 / -1;
        text-align: center;
    }
    .social-icons-group {
        justify-content: center;
    }
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-menu {
        gap: 1.5rem;
    }
    .listing-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* General Mobile Layout */
    .section-title { font-size: 2.2rem; }
    .services-grid, .premium-listings-grid, .premium-projects-grid {
        grid-template-columns: 1fr;
    }

    /* Hero Section Mobile */
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .premium-button {
        width: 200px;
        text-align: center;
    }

    /* Hide Complex Animations on Mobile */
    .animated-header {
        padding-right: 0;
    }
    .header-lottie-animation {
        display: none;
    }

    /* Section Dividers Mobile */
    .section-divider {
        height: 80px;
    }

    /* Footer Mobile */
    .footer-top-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Form Mobile */
    .form-row {
        flex-direction: column;
    }
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    .premium-contact-grid {
        padding: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-top-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-links ul, .footer-contact ul {
        padding: 0;
    }
    .footer-contact ul li {
        justify-content: center;
    }
    .newsletter-form {
        justify-content: center;
    }
    .premium-listings-grid, .premium-projects-grid {
        grid-template-columns: 1fr;
    }

    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--white-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        border-left: 1px solid var(--border-color);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
        transform: translateX(0);
    }
    
    .nav-menu li {
        margin: 0.8rem 0;
        width: 90%;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }
    
    .nav-menu a {
        font-size: 1.1rem;
        font-weight: 500;
        padding: 1rem 1.5rem;
        display: block;
        width: 100%;
        text-align: left;
        color: var(--mid-text);
        text-decoration: none;
        border-radius: 12px;
        background: transparent;
        border: 1px solid transparent;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        letter-spacing: 0.5px;
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(192, 159, 107, 0.3), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-menu a:hover {
        color: var(--dark-text);
        background: rgba(192, 159, 107, 0.1);
        border-color: transparent;
        transform: translateX(10px) scale(1.02);
        box-shadow: none;
    }
    
    .nav-menu a:hover::before {
        left: 100%;
    }
    
    .nav-menu a:active {
        transform: translateX(8px) scale(0.98);
    }
    
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .section { 
        padding: 80px 0; 
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    .card-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
}

/* ===================================================================
   Custom Button Styles
=================================================================== */
.premium-button-filled {
    font-family: var(--font-sans);
    padding: 1rem 2.5rem;
    background: var(--gold-foil);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.premium-button-filled:hover {
    transform: translateY(-3px) scale(1.05);
    background-color: #d4b488; /* Slightly lighter gold */
    box-shadow: 0 10px 25px rgba(192, 159, 107, 0.4);
    color: #000;
}

.premium-button-filled .fas {
    transition: transform 0.3s ease;
}

.premium-button-filled:hover .fas {
    transform: translateX(5px);
}

/*--------------------------------------------------------------
# Premium Management Section
--------------------------------------------------------------*/
.premium-management {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.management-card {
    background-color: var(--white-bg);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.management-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.management-image-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.management-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.management-card:hover .management-image-wrapper img {
    transform: scale(1.05);
}

.management-info {
    padding: 25px;
}

.management-name {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0 0 5px 0;
}

.management-position {
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--gold-foil);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================================================
   Responsive Media Queries
==================================================================== */

@media (max-width: 768px) {
    .premium-about .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image img {
        width: 100%;
        height: auto;
    }

    .about-image {
        margin-bottom: 1rem;
    }

    .premium-listings-grid,
    .premium-projects-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================================
   Görsel Placeholder Stilleri
=================================================================== */

.no-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #6c757d;
    font-size: 14px;
    text-align: center;
    border-radius: 8px;
    min-height: 200px;
}

.no-image-placeholder.large {
    min-height: 400px;
    font-size: 16px;
}

.no-image-placeholder i {
    font-size: 48px;
    margin-bottom: 10px;
    opacity: 0.6;
}

.no-image-placeholder.large i {
    font-size: 64px;
}

.no-image-placeholder span {
    font-weight: 500;
}

/* ===================================================================
   Sabit İletişim Butonları
=================================================================== */

/* Sabit WhatsApp ve Telefon Butonları */
.fixed-contact-buttons {
    position: fixed;
    left: 20px;
    top: 80%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fixed-contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
}

.fixed-contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.fixed-contact-btn.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.fixed-contact-btn.phone {
    background: linear-gradient(45deg, #007bff, #0056b3);
}

.fixed-contact-btn .tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.fixed-contact-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.fixed-contact-btn .tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right-color: rgba(0,0,0,0.8);
}

/* Mobil için responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
        margin: 0;
    }
    
    .fixed-contact-buttons {
        left: 10px;
        top: 85%;
    }
    
    .fixed-contact-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .fixed-contact-btn .tooltip {
        display: none;
    }
}

/* Tablet için responsive */
@media (max-width: 1024px) {
    .fixed-contact-buttons {
        left: 15px;
    }
    
    .fixed-contact-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

