/* ============================================
   İKY GROUP - MAIN STYLESHEET
   Modern, Responsive, Luxury Design
   ============================================ */

/* ========== ROOT VARIABLES ========== */
:root {
    /* Colors */
    --primary-gradient: linear-gradient(135deg, #122742, #32bcd1);
    --primary-dark: #122742;
    --primary-light: #32bcd1;
    --secondary: #f39c12;
    --accent: #e74c3c;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    
    /* Neutrals */
    --dark: #1a1a1a;
    --gray-dark: #2c3e50;
    --gray: #7f8c8d;
    --gray-light: #ecf0f1;
    --white: #ffffff;
    --light: #f8f9fa;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 15px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-xl: 35px;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1050;
    --z-tooltip: 1070;
}

/* ========== GLOBAL RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ========== SECTION SPACING ========== */
section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    position: relative;
    z-index: var(--z-fixed);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    transition: var(--transition-fast);
}

.top-bar-item:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.top-bar-item i {
    font-size: 13px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.1);
}

.btn-catalog {
    padding: 8px 20px;
    background: var(--white);
    color: var(--primary-dark);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.btn-catalog:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========== HEADER ========== */
.header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition-base);
}

.header.scrolled .logo img {
    height: 45px;
}

/* ========== NAVIGATION ========== */
.nav-list {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 8px 0;
    transition: var(--transition-base);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-base);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-light);
}

/* ========== LANGUAGE SWITCHER ========== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition-base);
    cursor: pointer;
}

.lang-btn img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-btn:hover {
    border-color: var(--primary-light);
    background: var(--light);
}

.lang-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
}

.language-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    width: 100%;
    text-align: left;
    font-weight: 500;
}

.lang-option:hover {
    background: var(--light);
}

.lang-option img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

/* ========== MOBILE TOGGLE ========== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition-base);
}

/* ========== STICKY SOCIAL BUTTONS ========== */
.sticky-social {
    position: fixed;
    left: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: var(--z-fixed);
}

.sticky-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    position: relative;
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.sticky-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    left: 120%;
    background: var(--dark);
    color: var(--white);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: var(--transition-base);
    pointer-events: none;
}

.sticky-btn:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sticky-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.sticky-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #0066aa);
}

.sticky-btn.instagram {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
}

.sticky-btn.location {
    background: linear-gradient(135deg, #EA4335, #C5221F);
}

.sticky-btn:hover {
    transform: translateX(5px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 39, 66, 0.95) 0%, rgba(50, 188, 209, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: center;
    padding: 50px 0;
}

.hero-left {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: var(--secondary);
    font-size: 18px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, #fff, #32bcd1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, #32bcd1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-sm {
    padding: 10px 25px;
    font-size: 14px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

/* ========== LEAD FORM ========== */
.hero-right {
    position: relative;
}

.lead-form {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.lead-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-light), transparent 30%);
    animation: rotate 6s linear infinite;
    opacity: 0.1;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.form-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.form-icon i {
    font-size: 32px;
    color: var(--white);
}

.form-header h3 {
    font-size: 26px;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.form-header p {
    color: var(--gray);
    font-size: 14px;
}

.contact-form {
    position: relative;
    z-index: 1;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 45px 15px 15px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-size: 15px;
    transition: var(--transition-base);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(50, 188, 209, 0.1);
}

.form-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 16px;
    pointer-events: none;
}

.btn-form {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 16px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.btn-form:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--gray);
}

.form-footer i {
    color: var(--success);
}

/* ========== HERO SLIDER CONTROLS ========== */
.hero-slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    cursor: pointer;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-base);
}

.slider-dot.active {
    background: var(--white);
    width: 35px;
    border-radius: 10px;
}

/* ========== FEATURES SECTION ========== */
.features {
    background: var(--light);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed var(--primary-light);
    animation: rotate 20s linear infinite;
}

.feature-icon i {
    font-size: 36px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ========== ABOUT SECTION ========== */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
    width: 100%;
    transition: var(--transition-slow);
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 140px;
    height: 140px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--white);
}

.badge-content {
    text-align: center;
    color: var(--white);
}

.badge-number {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.about-pattern {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    opacity: 0.1;
    border-radius: 20px;
    z-index: -1;
}

.section-header {
    margin-bottom: 40px;
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 60px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 2px;
    background: var(--primary-gradient);
}

.section-title {
    font-size: 42px;
    font-family: var(--font-heading);
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-description {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
}

.about-description {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--dark);
}

.about-feature-item i {
    color: var(--success);
    font-size: 18px;
}

/* ========== VISION MISSION ========== */
.vision-mission {
    background: var(--primary-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.05)" stroke-width="2" fill="none"/></svg>');
    opacity: 0.5;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.vm-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 50px 35px;
    text-align: center;
    transition: var(--transition-base);
}

.vm-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.vm-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.vm-icon i {
    font-size: 40px;
}

.vm-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
}

.vm-card p {
    line-height: 1.8;
    opacity: 0.95;
}

/* ========== PROJECTS SECTION ========== */
.projects {
    background: var(--light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.project-card:hover .project-overlay {
    opacity: 0.95;
}

.project-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.project-badge.hot {
    background: linear-gradient(135deg, #f39c12, #e74c3c);
}

.project-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.project-status.completed {
    background: rgba(39, 174, 96, 0.95);
    color: var(--white);
}

.project-status.sold {
    background: rgba(231, 76, 60, 0.95);
    color: var(--white);
}

.project-content {
    padding: 30px;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.project-location i {
    color: var(--primary-light);
}

.project-title {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.project-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-features {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--dark);
}

.feature-item i {
    color: var(--primary-light);
    font-size: 16px;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 5px;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}

.btn-favorite {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light);
    color: var(--gray);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.btn-favorite:hover {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1);
}

.btn-favorite.active i::before {
    content: '\f004';
    font-weight: 900;
}

.section-footer {
    text-align: center;
    margin-top: 60px;
}
/* ========== VIDEO SECTION ========== */
.video-section {
    background: var(--white);
}

.video-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.video-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition-base);
    cursor: pointer;
}

.video-tab:hover {
    background: var(--white);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.video-tab.active {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.video-tab i {
    font-size: 20px;
}

.video-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: none;
}

.video-wrapper.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-gradient);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card:hover::before {
    transform: scaleY(1);
}

.testimonial-header {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-avatar {
    position: relative;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light);
    box-shadow: var(--shadow-md);
}

.avatar-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
}

.avatar-badge i {
    font-size: 10px;
    color: var(--white);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.testimonial-position {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 10px;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
}

.testimonial-rating i {
    color: var(--secondary);
    font-size: 14px;
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 60px;
    color: var(--primary-light);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-text {
    color: var(--gray-dark);
    line-height: 1.8;
    font-size: 15px;
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
}

.testimonial-date i {
    color: var(--primary-light);
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    cursor: pointer;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.1);
}

.testimonial-bg-element {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.05;
    z-index: 0;
}

.testimonial-bg-element.element-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
    animation: float 20s ease-in-out infinite;
}

.testimonial-bg-element.element-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
    animation: float 15s ease-in-out infinite reverse;
}

/* ========== CTA SECTION ========== */
.cta {
    background: var(--primary-gradient);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.cta-icon i {
    font-size: 50px;
}

.cta-title {
    font-size: 42px;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.3)"/></svg>');
    animation: particles 60s linear infinite;
    opacity: 0.5;
}

@keyframes particles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-1000px); }
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, #0f1f2f 0%, #1a3a4f 100%);
    color: var(--white);
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column {
    animation: fadeInUp 0.6s ease;
}

.footer-title {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-schedule {
    margin-top: 25px;
}

.footer-schedule h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--primary-light);
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.schedule-item i {
    color: var(--primary-light);
    font-size: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a::before {
    content: '→';
    color: var(--primary-light);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-base);
}

.footer-links li a:hover {
    color: var(--white);
    padding-left: 10px;
}

.footer-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact li i {
    color: var(--primary-light);
    font-size: 18px;
    width: 20px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-contact li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    background: var(--primary-gradient);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.footer-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.location-item i {
    color: var(--primary-light);
    font-size: 14px;
}

.footer-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 20px;
}

.footer-map img {
    width: 100%;
    height: auto;
    transition: var(--transition-base);
}

.footer-map:hover img {
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.copyright a {
    color: var(--primary-light);
    font-weight: 600;
    transition: var(--transition-fast);
}

.copyright a:hover {
    color: var(--white);
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-right {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .top-bar-left, .top-bar-right {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header-content {
        gap: 20px;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-base);
        z-index: var(--z-modal);
        overflow-y: auto;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid var(--gray-light);
    }
    
    .mobile-toggle {
        display: flex;
        z-index: calc(var(--z-modal) + 1);
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }
    
    .sticky-social {
        left: 15px;
        bottom: 15px;
        gap: 10px;
    }
    
    .sticky-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .sticky-btn::before {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 80px 0 50px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .lead-form {
        padding: 30px 25px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        padding-left: 0;
    }
    
    .section-subtitle::before {
        display: none;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .video-tabs {
        flex-direction: column;
    }
    
    .video-tab {
        width: 100%;
        justify-content: center;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-locations {
        grid-template-columns: 1fr;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-slider-controls {
        bottom: 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .project-image {
        height: 220px;
    }
    
    .project-title {
        font-size: 20px;
    }
    
    .project-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }

.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========== SELECTION ========== */
::selection {
    background: var(--primary-light);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-light);
    color: var(--white);
}

/* ========================================
   PROJECTS PAGE STYLES
======================================== */

/* Page Header */
.page-header {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    z-index: -1;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 56px;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 30px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
}

.breadcrumb a {
    color: white;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

.breadcrumb span {
    opacity: 0.7;
}

/* Filters Section */
.filters-section {
    padding: 50px 0 30px;
    background: var(--light);
}

.filters-container {
    background: white;
    padding: 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

/* Search Bar */
.search-bar {
    position: relative;
    margin-bottom: 25px;
}

.search-bar i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 18px;
}

.search-bar input {
    width: 100%;
    padding: 16px 20px 16px 55px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-size: 15px;
    transition: var(--transition-base);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(50, 188, 209, 0.1);
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.filter-btn:hover {
    background: white;
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.filter-btn.active {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.filter-btn i {
    font-size: 16px;
}

/* Advanced Filter Toggle */
.advanced-filter-toggle {
    width: 100%;
    padding: 14px 20px;
    background: var(--primary-light);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.advanced-filter-toggle:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.advanced-filter-toggle.active {
    background: var(--primary-dark);
}

/* Advanced Filters Panel */
.advanced-filters {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 25px;
}

.advanced-filters.active {
    max-height: 500px;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label i {
    color: var(--primary-light);
}

.filter-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-base);
    background: white;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-light);
}

/* Filter Actions */
.filter-actions {
    display: flex;
    gap: 12px;
}

.filter-actions .btn {
    flex: 1;
    justify-content: center;
}

/* Results Info */
.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.results-count {
    font-size: 16px;
    color: var(--gray-dark);
}

.results-count strong {
    color: var(--primary-dark);
    font-size: 24px;
    font-weight: 700;
}

/* View Toggle */
.view-toggle {
    display: flex;
    gap: 8px;
}

.view-btn {
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 18px;
    color: var(--gray);
}

.view-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.view-btn.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
}

/* Projects Listing */
.projects-listing {
    padding: 30px 0 100px;
    background: var(--light);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

/* List View */
.projects-grid.list-view {
    grid-template-columns: 1fr;
}

.projects-grid.list-view .project-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    max-width: 100%;
}

.projects-grid.list-view .project-image {
    height: 100%;
    min-height: 300px;
}

/* Project Card */
.project-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* Project Image */
.project-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

/* Project Overlay */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 39, 66, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

/* Project Badge */
.project-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.project-badge.hot {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

/* Project Status */
.project-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.project-status.completed {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: white;
}

/* Favorite Button */
.btn-favorite {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 2;
    font-size: 20px;
    color: var(--gray);
}

.btn-favorite:hover {
    background: white;
    color: #e74c3c;
    transform: scale(1.15);
}

.btn-favorite.active i {
    font-weight: 900;
    color: #e74c3c;
}

/* Project Content */
.project-content {
    padding: 25px;
}

/* Project Location */
.project-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
}

.project-location i {
    color: var(--primary-light);
}

/* Project Title */
.project-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.project-card:hover .project-title {
    color: var(--primary-light);
}

/* Project Description */
.project-description {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Project Features */
.project-features {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-dark);
}

.feature-item i {
    font-size: 16px;
    color: var(--primary-light);
}

/* Project Footer */
.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Project Price */
.project-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 5px;
}

.price-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
}

/* View Button */
.btn-view {
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-base);
}

.btn-view:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-lg);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pagination-btn {
    min-width: 45px;
    height: 45px;
    padding: 0 16px;
    background: white;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    color: var(--dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--primary-light);
    color: var(--primary-light);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-md);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn.prev,
.pagination-btn.next {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .projects-grid.list-view {
        grid-template-columns: 1fr;
    }

    .projects-grid.list-view .project-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .filters-container {
        padding: 20px;
    }

    .filter-buttons {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .filter-grid {
        grid-template-columns: 1fr;
    }

    .results-info {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card {
        max-width: 100%;
    }

    .filter-actions {
        flex-direction: column;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .pagination-btn {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }

    .project-features {
        flex-direction: column;
        gap: 12px;
    }

    .project-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .btn-view {
        width: 100%;
        border-radius: var(--radius-md);
    }
}