/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal-dark: #D4AF37;
    --teal-medium: #FFD700;
    --teal-light: #FFE55C;
    --teal-accent: #F4C430;
    --gold-dark: #B8860B;
    --gold-medium: #D4AF37;
    --gold-light: #FFD700;
    --gold-accent: #FFE55C;
    --grey-dark: #2c3e50;
    --grey-medium: #34495e;
    --grey-light: #ecf0f1;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --blue-light: #e8f4f8;
    --green-success: #2ecc71;
    --orange-warning: #f39c12;
    --red-danger: #e74c3c;
}

html {
    scroll-behavior: smooth;
}

/* Remove scroll-triggered animations - keep elements visible */
.hero-title,
.hero-description,
.hero-features li,
.hero-cta-btn,
.callback-form,
.value-card,
.category-card,
.property-card,
.service-detail-item,
.why-choose-card,
.network-stat,
.city-item,
.society-item,
.stat-item {    
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.reveal {
    opacity: 1 !important;
    transform: none !important;
}

.reveal.active {
    opacity: 1 !important;
    transform: none !important;
}

.property-image img {
    opacity: 1 !important;
    animation: none !important;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

/* Apply Merriweather to all headings */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.categories-section-title,
.category-title,
.about-dehleez-title,
.why-choose-title,
.why-buy-title,
.value-propositions-title,
.properties-header h2,
.services-left h2,
.contact-left h2,
.mission-label,
.footer-section h4,
.network-access h2,
.how-it-works-title,
.service-detail-content h3,
.why-choose-card h3,
.value-card-title,
.category-card h3,
.property-card h3,
.properties-title-section h2 {
    font-family: 'Merriweather', serif;
}

/* Smooth scroll and animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #ffffff;
    color: var(--text-dark);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.separator {
    opacity: 0.5;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.social-icon:hover {
    background: var(--gold-medium);
    border-color: var(--gold-medium);
    color: #ffffff;
}

/* Navigation */
.navbar {
    background: #ffffff;
    color: var(--text-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
    width: 100%;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-icon {
    height: 4rem;
    width: auto;
    object-fit: contain;
    display: block;
    background: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold-medium);
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-end;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
    white-space: nowrap;
}

.phone-number:hover {
    color: var(--gold-medium);
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.phone-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.contact-btn {
    background: var(--gold-medium);
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
    border-radius: 25px;
    white-space: nowrap;
    flex-shrink: 0;
}

.contact-btn:hover {
    background: var(--gold-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    width: 100%;
}

.hero-left {
    color: var(--white);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.4s both;
    max-width: 90%;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-features li {
    font-size: 1.1rem;
    font-weight: 500;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out both;
}

.hero-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.hero-features li:nth-child(1) {
    animation-delay: 0.5s;
}

.hero-features li:nth-child(2) {
    animation-delay: 0.6s;
}

.hero-features li:nth-child(3) {
    animation-delay: 0.7s;
}

.hero-features li:nth-child(4) {
    animation-delay: 0.8s;
}

.hero-cta-btn {
    display: inline-block;
    background: var(--teal-dark);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.5s both;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.hero-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-cta-btn:hover::before {
    left: 100%;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: var(--teal-medium);
}

.hero-right {
    display: flex;
    justify-content: flex-end;
}

.callback-form {
    background: rgba(212, 175, 55, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    color: var(--text-dark);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    min-height: auto;
    overflow: visible;
}

.callback-form:hover {
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.callback-form h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffffff 0%, #e8e8e8 100%);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.progress-text {
    position: absolute;
    top: -25px;
    left: 0;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.form-question {
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid transparent;
    color: var(--text-dark);
}

.radio-label:hover {
    background: transparent;
    border-color: transparent;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--text-dark);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    width: 100%;
}

.form-next-btn,
.form-back-btn,
.form-submit-btn {
    flex: 1;
    background: #ffffff;
    color: #1a1f2e;
    border: none;
    padding: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.form-back-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.form-back-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-next-btn:hover {
    background: #f5f5f5;
}

.form-submit-btn {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-medium) 100%);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, var(--gold-medium) 0%, var(--gold-light) 100%);
}

.input-group {
    margin-bottom: 0.75rem;
}

.input-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.95rem;
    box-sizing: border-box;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-group input:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(0, 0, 0, 0.1);
}

.input-group input:valid {
    border-color: rgba(0, 0, 0, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(245, 245, 245, 1) 100%);
    position: relative;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    max-width: 300px;
    position: relative;
}

.divider-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    transform: translateY(-50%);
}

.divider-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal-dark), var(--teal-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 2rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
    transition: all 0.4s ease;
}

.divider-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--teal-dark), var(--teal-light));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: pulse-ring 2s ease-in-out infinite;
}

.divider-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.divider-icon:hover::before {
    opacity: 0.5;
}

.divider-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Two Panel Section */
.two-panel {
    display: flex;
    flex-direction: column;
    position: relative;
    background: #f5f5f5;
    overflow: hidden;
}

.panel-background-overlay {
    display: none;
}

.value-propositions {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 5rem 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.value-propositions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.value-propositions-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.value-propositions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-dark), var(--teal-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.value-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover::after {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
}

.value-card:nth-child(1) {
    animation-delay: 0.1s;
}

.value-card:nth-child(2) {
    animation-delay: 0.2s;
}

.value-card:nth-child(3) {
    animation-delay: 0.3s;
}

.value-card:nth-child(4) {
    animation-delay: 0.4s;
}

.value-card-icon-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
}

.value-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-dark);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    animation: scaleIn 0.6s ease-out both;
}

.value-card-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.value-card:nth-child(1) .value-card-icon {
    animation-delay: 0.2s;
}

.value-card:nth-child(2) .value-card-icon {
    animation-delay: 0.3s;
}

.value-card:nth-child(3) .value-card-icon {
    animation-delay: 0.4s;
}

.value-card:nth-child(4) .value-card-icon {
    animation-delay: 0.5s;
}

.value-card:hover .value-card-icon {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal-medium));
    color: var(--white);
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.value-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.value-card:hover .value-card-title {
    color: var(--teal-dark);
}

.value-card-description {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.value-card:hover .value-card-description {
    color: #4a5a6a;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.panel-left,
.panel-right {
    display: none;
}

.panel-left {
    background: #2c2c2c;
    color: var(--white);
    animation: slideInLeft 0.8s ease-out both;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0.05);
}

.panel-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--teal-light), var(--teal-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.panel-left:hover {
    background: #333333;
    box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.panel-left:hover::before {
    opacity: 1;
}

.panel-right {
    background: #B8860B;
    color: var(--white);
    animation: slideInRight 0.8s ease-out both;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0.05);
}

.panel-right::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--teal-light), var(--teal-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.panel-right:hover {
    background: #D4AF37;
    box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0.08);
    transform: translateX(-5px);
}

.panel-right:hover::before {
    opacity: 1;
}

.panel-left h2,
.panel-right h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
    transition: transform 0.3s ease;
}

.panel-left:hover h2,
.panel-right:hover h2 {
    transform: translateX(5px);
}

.panel-left h2::after,
.panel-right h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
}

.panel-left:hover h2::after,
.panel-right:hover h2::after {
    width: 120px;
    background: rgba(255, 255, 255, 0.5);
}

.panel-left p,
.panel-right p {
    font-size: 1.15rem;
    line-height: 1.9;
    opacity: 0.95;
    font-weight: 400;
    max-width: 90%;
    letter-spacing: 0.2px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.panel-left:hover p,
.panel-right:hover p {
    opacity: 1;
    transform: translateX(3px);
}

.panel-left .container,
.panel-right .container {
    max-width: 100%;
    padding: 0;
}

@media (min-width: 769px) {
    .two-panel {
        display: block;
    }
}

@media (max-width: 968px) {
    .value-propositions-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .value-propositions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .value-propositions {
        padding: 3rem 0;
    }
    
    .value-propositions-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .value-propositions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .value-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-card-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .value-card-title {
        font-size: 1.15rem;
    }
    
    .value-card-description {
        font-size: 0.9rem;
    }
}

/* Help Section */
/* About Dehleez Marketing Section */
.about-dehleez-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF8DC 0%, #FFEAA7 100%);
    position: relative;
    overflow: hidden;
}

.about-dehleez-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-dehleez-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out both;
}

.about-dehleez-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-dehleez-left {
    text-align: left;
}

.about-dehleez-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-dehleez-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.about-dehleez-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 3rem;
    letter-spacing: -1px;
    line-height: 1.1;
    position: relative;
    display: inline-block;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-dehleez-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--teal-dark), transparent);
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out 0.5s both;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.about-dehleez-main {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-dehleez-intro {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 2rem;
    letter-spacing: -0.3px;
}

.about-dehleez-description {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.about-dehleez-mission {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    padding: 3rem 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    backdrop-filter: blur(10px);
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-dehleez-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--teal-dark), var(--teal-light));
}

.mission-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.mission-label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--teal-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.about-dehleez-mission:hover .mission-label::after {
    transform: scaleX(1);
}

.mission-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.7;
    margin: 0;
    letter-spacing: -0.2px;
}

.about-dehleez-mission:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.2);
}

/* Available Property Categories Section */
.property-categories-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.property-categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.categories-section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 4rem;
    letter-spacing: -1px;
    position: relative;
    animation: fadeInUp 0.8s ease-out both;
}

.categories-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--teal-dark), transparent);
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out 0.3s both;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.category-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
    animation: fadeInUp 0.8s ease-out both;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card > * {
    position: relative;
    z-index: 2;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-dark), var(--teal-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.category-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover::after {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.25);
}

.category-card:nth-child(1) {
    animation-delay: 0.1s;
}

.category-card:nth-child(2) {
    animation-delay: 0.2s;
}

.category-card:nth-child(3) {
    animation-delay: 0.3s;
}

.category-icon-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-dark);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    animation: scaleIn 0.6s ease-out both;
}

.category-card:nth-child(1) .category-icon {
    animation-delay: 0.2s;
}

.category-card:nth-child(2) .category-icon {
    animation-delay: 0.3s;
}

.category-card:nth-child(3) .category-icon {
    animation-delay: 0.4s;
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal-medium));
    color: var(--white);
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
    flex-shrink: 0;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card:hover .category-title {
    color: var(--teal-dark);
}

.category-description {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
    flex-shrink: 0;
    min-height: 3.57rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
    min-height: 7.5rem;
}

.category-list li {
    font-size: 1rem;
    color: #4a5a6a;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.category-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--teal-dark);
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.category-card:hover .category-list li {
    color: #2c3e50;
    transform: translateX(5px);
}

.category-card:hover .category-list li::before {
    transform: scale(1.3);
}

.category-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    flex-shrink: 0;
    min-height: 5.25rem;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.category-contact-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-medium) 100%);
    color: var(--white);
    padding: 0.875rem 2rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    margin-top: auto;
    flex-shrink: 0;
    width: 100%;
    position: relative;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
}

.category-contact-btn:hover {
    background: linear-gradient(135deg, var(--teal-medium) 0%, var(--teal-light) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 600;
    min-height: 1.75rem;
    flex-shrink: 0;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--teal-dark), var(--teal-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.category-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Featured Properties */
.featured-properties {
    padding: 5rem 0;
    background: var(--white);
}

.properties-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.properties-title-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.properties-title-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-align: center;
}

.properties-title-section p {
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: center;
}

.properties-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.action-link {
    color: var(--teal-dark);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--teal-dark);
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.action-link:hover {
    color: var(--white);
    background: var(--teal-dark);
    border-color: var(--teal-dark);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.property-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.property-card {
    animation: fadeInUp 0.8s ease-out both;
}

.property-card:nth-child(1) {
    animation-delay: 0.1s;
}

.property-card:nth-child(2) {
    animation-delay: 0.2s;
}

.property-card:nth-child(3) {
    animation-delay: 0.3s;
}

.property-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: blur(1.5px);
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-location {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--teal-dark);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
}

.property-info {
    padding: 1.5rem;
}

.property-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.property-status {
    color: var(--teal-dark);
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.property-status-badge {
    display: inline-block;
    background: var(--green-success);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 2px solid var(--white);
    margin-top: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.property-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: #FFF8DC;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 240, 243, 0.9) 0%, rgba(245, 248, 250, 0.95) 100%);
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.services-left {
    position: relative;
    display: flex;
    flex-direction: column;
}

.services-left h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    letter-spacing: -1px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out both;
}

.services-left > p {
    color: #5a6c7d;
    margin-bottom: 3rem;
    line-height: 1.9;
    font-size: 1.15rem;
    max-width: 95%;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.services-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.services-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.services-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.services-image-wrapper:hover .services-image {
    transform: scale(1.05);
}

.services-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.services-image-wrapper:hover::after {
    opacity: 1;
}

.services-right {
    position: sticky;
    top: 120px;
    padding-left: 2rem;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--teal-light) transparent;
}

.services-right::-webkit-scrollbar {
    width: 6px;
}

.services-right::-webkit-scrollbar-track {
    background: transparent;
}

.services-right::-webkit-scrollbar-thumb {
    background: var(--teal-light);
    border-radius: 3px;
}

.services-right::-webkit-scrollbar-thumb:hover {
    background: var(--teal-dark);
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border-left: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.8s ease-out both;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), transparent);
    transition: width 0.4s ease;
    z-index: 0;
}

.service-detail-item:hover::before {
    width: 100%;
}

.service-detail-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-left-color: var(--teal-dark);
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-item:nth-child(1) {
    animation-delay: 0.1s;
}

.service-detail-item:nth-child(2) {
    animation-delay: 0.2s;
}

.service-detail-item:nth-child(3) {
    animation-delay: 0.3s;
}

.service-detail-item:nth-child(4) {
    animation-delay: 0.4s;
}

.service-detail-item:nth-child(5) {
    animation-delay: 0.5s;
}

.service-detail-item:nth-child(6) {
    animation-delay: 0.6s;
}

.service-detail-item:nth-child(7) {
    animation-delay: 0.7s;
}

.service-detail-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--teal-dark);
    min-width: 70px;
    line-height: 1;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: -2px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-detail-item:hover .service-detail-number {
    transform: scale(1.1);
    color: var(--teal-medium);
}

.service-detail-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.6rem;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.service-detail-item:hover .service-detail-content h3 {
    color: var(--teal-dark);
}

.service-detail-content p {
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.service-detail-item:hover .service-detail-content p {
    color: #4a5a6a;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out both;
    position: relative;
    display: inline-block;
}

.why-choose-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--teal-dark), transparent);
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out 0.3s both;
}

.why-choose-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 4rem;
    font-weight: 400;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-choose-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-dark), var(--teal-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-dark);
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-choose-card:hover .why-choose-icon {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal-medium));
    color: var(--white);
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.why-choose-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.why-choose-card:hover h3 {
    color: var(--teal-dark);
}

.why-choose-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

.why-choose-card:hover p {
    color: #4a5a6a;
}

.why-choose-card:nth-child(1) { animation-delay: 0.1s; }
.why-choose-card:nth-child(2) { animation-delay: 0.2s; }
.why-choose-card:nth-child(3) { animation-delay: 0.3s; }
.why-choose-card:nth-child(4) { animation-delay: 0.4s; }
.why-choose-card:nth-child(5) { animation-delay: 0.5s; }
.why-choose-card:nth-child(6) { animation-delay: 0.6s; }

/* Network Section */
.network-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.network-content-wrapper {
    position: relative;
    z-index: 1;
}

.network-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 4rem;
    letter-spacing: -1px;
    line-height: 1.2;
    position: relative;
    animation: fadeInUp 0.8s ease-out both;
}

.network-main-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--teal-dark), transparent);
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out 0.3s both;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.city-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.15rem;
    color: #2c3e50;
    font-weight: 500;
    padding: 1rem 1.5rem;
    background: rgba(248, 250, 252, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.6s ease-out both;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.city-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--teal-dark), var(--teal-light));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.city-item:hover::before {
    transform: scaleY(1);
}

.city-item:hover {
    color: var(--teal-dark);
    transform: translateX(8px);
    font-weight: 600;
    background: rgba(248, 250, 252, 1);
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.city-pin-icon {
    color: #e74c3c;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 2px 4px rgba(231, 76, 60, 0.2));
}

.city-item:hover .city-pin-icon {
    color: var(--teal-dark);
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.city-item span:last-child {
    flex: 1;
    transition: color 0.3s ease;
}

.city-item:nth-child(1) { animation-delay: 0.1s; }
.city-item:nth-child(2) { animation-delay: 0.2s; }
.city-item:nth-child(3) { animation-delay: 0.3s; }
.city-item:nth-child(4) { animation-delay: 0.4s; }
.city-item:nth-child(5) { animation-delay: 0.5s; }

/* Rating Section */
.rating-section {
    padding: 5rem 0;
    background: var(--white);
}

.rating-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    text-align: center;
}

.rating-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.rating-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.view-more-link {
    color: var(--teal-dark);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.view-more-link:hover {
    color: var(--teal-medium);
}

.rating-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.rating-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.society-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.society-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--grey-light);
}

.society-rank {
    font-weight: 700;
    color: var(--text-dark);
    min-width: 30px;
}

.society-name {
    flex: 1;
    color: var(--text-dark);
    font-weight: 500;
}

.society-rating {
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 55px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.society-item:hover .society-rating {
    transform: scale(1.1);
}

.rating-high {
    background: var(--green-success);
    color: var(--white);
}

.rating-medium {
    background: var(--orange-warning);
    color: var(--white);
}

.rating-low {
    background: var(--red-danger);
    color: var(--white);
}

/* Rating badge color logic */
.society-rating.rating-high {
    background: var(--green-success);
}

.society-rating.rating-medium {
    background: var(--orange-warning);
}

.society-rating.rating-low {
    background: var(--red-danger);
}

/* Why Buy Through Dehleez Marketing Section */
.why-buy-section {
    padding: 8rem 0;
    background: #0f1419;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-buy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, rgba(15, 20, 25, 0.95) 0%, rgba(15, 20, 25, 1) 100%);
    pointer-events: none;
}

.why-buy-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.why-buy-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

.why-buy-title {
    font-size: 3.25rem;
    font-weight: 300;
    text-align: left;
    margin-bottom: 3rem;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.15;
    position: relative;
    font-family: 'Josefin Sans', sans-serif;
}

.why-buy-title strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
}

.why-buy-description {
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    max-width: 850px;
    font-family: 'Josefin Sans', sans-serif;
}

.why-buy-points {
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-buy-point {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.why-buy-point:last-child {
    border-bottom: none;
}

.why-buy-point::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--teal-dark), var(--teal-medium));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-buy-point:hover::before {
    width: 300px;
}

.point-left {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.point-bullet {
    width: 6px;
    height: 6px;
    background: var(--teal-dark);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.point-bullet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.why-buy-point:hover .point-bullet {
    transform: scale(1.2);
}

.why-buy-point:hover .point-bullet::before {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translate(-50%, -50%) scale(1.5);
}

.point-text {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    letter-spacing: 0.2px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.point-description {
    padding-top: 0.25rem;
}

.point-description p {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 0.2px;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.how-it-works {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-dark), transparent);
}

.how-it-works-title {
    font-size: 2.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--white);
    letter-spacing: -0.5px;
    position: relative;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
}

.how-it-works-title strong {
    font-weight: 600;
}

.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.how-it-works-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.75rem;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: transparent;
    border: 1px solid transparent;
}

.how-it-works-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.how-it-works-step:hover::before {
    opacity: 1;
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.02);
}

.how-it-works-step:hover {
    transform: translateY(-8px);
}

.step-number-box {
    width: 72px;
    height: 72px;
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Josefin Sans', sans-serif;
}

.step-number-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.how-it-works-step:hover .step-number-box {
    border-color: var(--teal-dark);
    background: rgba(212, 175, 55, 0.05);
    transform: scale(1.05);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.how-it-works-step:hover .step-number-box::before {
    opacity: 1;
}

.step-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 0.2px;
    max-width: 200px;
    font-family: 'Josefin Sans', sans-serif;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .why-buy-section {
        padding: 6rem 0;
    }

    .why-buy-content {
        padding: 0 2.5rem;
    }

    .why-buy-title {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .why-buy-description {
        font-size: 1.1rem;
        margin-bottom: 3.5rem;
    }

    .why-buy-points {
        margin-bottom: 4rem;
        gap: 1.75rem;
    }

    .why-buy-point {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
        padding: 1.25rem 0;
        font-size: 1.05rem;
    }

    .point-description p {
        font-size: 0.95rem;
    }

    .how-it-works {
        margin-top: 5rem;
        padding-top: 3.5rem;
    }

    .how-it-works-title {
        font-size: 2rem;
        margin-bottom: 3.5rem;
    }

    .how-it-works-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .step-number-box {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
    }

    .step-text {
        max-width: 100%;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .why-buy-section {
        padding: 5rem 0;
    }

    .why-buy-content {
        padding: 0 1.5rem;
    }

    .why-buy-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        letter-spacing: -0.5px;
    }

    .why-buy-description {
        font-size: 1rem;
        margin-bottom: 3rem;
        line-height: 1.85;
    }

    .why-buy-points {
        margin-bottom: 3.5rem;
        gap: 1.5rem;
    }

    .why-buy-point {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem 0;
        font-size: 1rem;
    }

    .why-buy-point::before {
        width: 0;
    }

    .why-buy-point:hover::before {
        width: 100%;
    }

    .point-left {
        gap: 1rem;
    }

    .point-bullet {
        width: 5px;
        height: 5px;
        margin-top: 0.4rem;
    }

    .point-text {
        font-size: 1rem;
    }

    .point-description {
        padding-top: 0;
        padding-left: 1.75rem;
    }

    .point-description p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .how-it-works {
        margin-top: 4rem;
        padding-top: 3rem;
    }

    .how-it-works-title {
        font-size: 1.75rem;
        margin-bottom: 3rem;
    }

    .how-it-works-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .how-it-works-step {
        padding: 1.5rem 1rem;
    }

    .step-number-box {
        width: 60px;
        height: 60px;
        font-size: 1.625rem;
        margin-bottom: 1.5rem;
    }

    .step-text {
        font-size: 0.9rem;
        max-width: 100%;
    }
}

/* Network Access Section */
.network-access {
    padding: 6rem 0;
    background: #FFF8DC;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.network-map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
    opacity: 0.6;
    filter: grayscale(50%) brightness(0.7);
    animation: fadeIn 1.5s ease-out;
}

.network-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    backdrop-filter: blur(2px);
}

.network-access-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.network-left {
    text-align: center;
    animation: fadeInUp 1s ease-out both;
}

.network-left h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

.network-left h2 .heading-line-1 {
    white-space: nowrap;
    display: inline-block;
}

.network-left p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    overflow: visible;
}

.network-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.network-stat {
    text-align: center;
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 1;
    max-width: 200px;
}

.network-stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.25);
}

.network-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -1px;
    transition: transform 0.3s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.network-stat:hover .network-stat-number {
    transform: scale(1.1);
}

.network-stat-label {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.network-cta {
    display: inline-block;
    background: var(--teal-dark);
    color: var(--white);
    padding: 1.25rem 3rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.network-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.network-cta:hover::before {
    left: 100%;
}

.network-cta:hover {
    background: var(--teal-medium);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #ffffff;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-left {
    text-align: left;
    animation: fadeInLeft 0.8s ease-out both;
}

.contact-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.contact-tagline {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.phone-number-large {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    color: var(--text-dark);
    line-height: 1.2;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.phone-number-large::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-medium), var(--gold-light));
    transition: width 0.3s ease;
}

.phone-number-large:hover {
    transform: scale(1.05);
}

.phone-number-large:hover::after {
    width: 100%;
}

.contact-options {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    font-weight: 500;
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--text-dark);
    border-radius: 25px;
    display: inline-block;
}

.contact-separator {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
    position: relative;
    padding: 0 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.contact-separator::before,
.contact-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateY(-50%);
}

.contact-separator::before {
    left: 0;
}

.contact-separator::after {
    right: 0;
}

.contact-right {
    animation: fadeInRight 0.8s ease-out both;
}

.contact-right .callback-form {
    background: rgba(212, 175, 55, 0.95);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
    color: var(--text-dark);
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: none;
}

.contact-right .callback-form:hover {
    transform: none;
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(212, 175, 55, 0.95);
}

.contact-right .callback-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    text-align: center;
}

/* Footer */
.footer {
    background: #ffffff;
    padding: 1rem 0 0.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
    padding-left: 0;
    padding-right: 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 3rem;
    margin-bottom: 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    align-items: flex-start;
}

.footer-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    font-weight: 800;
    font-size: 1.4rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.footer-logo .logo-icon {
    height: 14rem;
    width: auto;
    object-fit: contain;
    display: block;
    max-width: 100%;
    margin: 0;
    background: transparent;
}

.footer-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.4rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-medium), transparent);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-contact p {
    color: var(--text-dark);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.8;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 0.4rem 0;
    white-space: nowrap;
}

.footer-contact p a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact p a:hover {
    color: var(--gold-medium);
}

.footer-contact p:hover {
    color: var(--text-dark);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}


.footer .social-icons {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-left: 0;
}

.footer .social-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer .social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer .social-icon:hover {
    background: var(--gold-medium);
    border-color: var(--gold-medium);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0.75rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.footer-section .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-section .footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 0.4rem 0;
    line-height: 1.8;
    display: flex;
    align-items: center;
}

.footer-section .footer-links a:hover {
    color: var(--text-dark);
    transform: translateX(5px);
}

/* Footer Animations */
@keyframes footerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-main > * {
    animation: footerFadeIn 0.8s ease-out both;
}

.footer-main > *:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-main > *:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-bottom {
    animation: footerFadeIn 0.8s ease-out 0.3s both;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
        align-items: flex-start;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
        align-items: flex-start;
    }
    
    .hero-left {
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .hero-features {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .hero-features li {
        font-size: 0.95rem;
    }
    
    .hero-right {
        justify-content: center;
        width: 100%;
        display: flex;
        align-items: flex-start;
    }
    
    .callback-form {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        min-height: auto;
    }

    .two-panel {
        grid-template-columns: 1fr;
    }

    .about-dehleez-section {
        padding: 4rem 0;
    }
    
    .about-dehleez-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-dehleez-left {
        text-align: center;
    }
    
    .about-dehleez-title {
        font-size: 2.5rem;
    }
    
    .about-dehleez-intro {
        font-size: 1.3rem;
    }
    
    .about-dehleez-description {
        font-size: 1.1rem;
    }
    
    .about-dehleez-mission {
        margin-top: 3rem;
        padding: 2.5rem 2rem;
    }
    
    .mission-text {
        font-size: 1.2rem;
    }
    
    .property-categories-section {
        padding: 4rem 0;
    }
    
    .categories-section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .category-card {
        padding: 2.5rem 2rem;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-section {
        padding: 4rem 0;
    }
    
    .why-choose-title {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .why-choose-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .why-choose-card {
        padding: 2rem 1.5rem;
    }
    
    .why-choose-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .why-choose-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .why-choose-card p {
        font-size: 0.95rem;
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-right {
        position: static;
        padding-left: 0;
        max-height: none;
        overflow-y: visible;
    }

    .services-left h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .services-left > p {
        text-align: center;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .services-image-wrapper {
        margin-bottom: 2rem;
    }

    .service-detail-number {
        font-size: 2.5rem;
        min-width: 60px;
    }

    .service-detail-item {
        padding: 1.5rem;
        gap: 1rem;
    }

    .service-detail-content h3 {
        font-size: 1.25rem;
    }

    .service-detail-content p {
        font-size: 0.95rem;
    }

    .rating-columns {
        grid-template-columns: 1fr;
    }

    .network-access {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .network-access-content {
        padding: 0 1.5rem;
    }
    
    .network-left {
        text-align: center;
        padding: 0;
        width: 100%;
    }
    
    .network-left h2 {
        font-size: 2rem;
        margin-bottom: 1.75rem;
        line-height: 1.3;
        padding: 0;
    }
    
    .network-left h2 .heading-line-1 {
        white-space: normal;
        display: block;
    }
    
    .network-left h2 .heading-line-2 {
        display: block;
        margin-top: 0.5rem;
    }
    
    .network-left p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 2.5rem;
        padding: 0;
        text-align: center;
        max-width: 100%;
    }
    
    .network-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        margin-bottom: 2.5rem;
        width: 100%;
    }
    
    .network-stat {
        min-width: 200px;
        max-width: 280px;
        width: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-separator {
        display: none;
    }

    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer .container {
        padding: 0 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 1.5rem;
        margin-bottom: 0;
        align-items: center;
    }
    
    .footer-left {
        justify-content: center;
        text-align: center;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    
    .footer-logo {
        width: 100%;
        justify-content: center;
        margin: 0 auto;
    }
    
    .footer-logo .logo-icon {
        height: 5rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-right {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-section {
        text-align: center;
        width: 100%;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        text-align: center;
        padding-bottom: 0.4rem;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
    }
    
    .footer-contact {
        align-items: center;
        gap: 0.4rem;
    }
    
    .footer-contact p {
        font-size: 0.85rem;
        justify-content: center;
        white-space: normal;
        text-align: center;
        padding: 0.25rem 0;
        line-height: 1.6;
        margin: 0;
    }
    
    .footer-contact p span.contact-icon {
        margin-right: 0.5rem;
        flex-shrink: 0;
    }
    
    .footer .social-icons {
        justify-content: center;
        gap: 0.5rem;
        flex-direction: row;
        align-items: center;
    }
    
    .footer .social-icon {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
    
    .footer-section .footer-links {
        align-items: center;
        flex-direction: column;
        gap: 0.35rem;
        justify-content: center;
    }
    
    .footer-section .footer-links a {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding-top: 1.25rem;
        margin-top: 0.75rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
        margin: 0;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        padding: 1.5rem 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 999;
        gap: 0;
        display: none;
    }

    .nav-menu.active {
        left: 0;
        display: flex !important;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        width: 100%;
        color: var(--text-dark);
        font-size: 0.95rem;
    }

    .hamburger {
        display: flex !important;
        z-index: 1001;
        cursor: pointer;
        padding: 0.5rem;
        margin-left: 0.5rem;
        position: relative;
        pointer-events: auto;
    }

    .hamburger span {
        background: var(--text-dark);
        width: 22px;
        height: 2.5px;
        pointer-events: none;
    }

    .navbar {
        padding: 0.75rem 0;
        overflow-x: hidden;
    }

    .navbar .container {
        padding: 0 15px;
        max-width: 100%;
    }

    .nav-wrapper {
        position: relative;
        gap: 0.5rem;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .logo {
        flex-shrink: 1;
        min-width: 0;
    }

    .logo-icon {
        height: 2.5rem;
        max-width: 100%;
    }


    .nav-right {
        display: flex;
        flex-direction: row;
        gap: 0.4rem;
        align-items: center;
        justify-content: flex-end;
        flex-shrink: 0;
        min-width: 0;
    }
    
    .nav-right .phone-number {
        font-size: 0.65rem;
        gap: 0.25rem;
        flex-shrink: 1;
        min-width: 0;
    }

    .nav-right .phone-number span:last-child {
        font-size: 0.6rem;
    }
    
    .nav-right .phone-icon {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }
    
    .nav-right .contact-btn {
        font-size: 0.6rem;
        padding: 0.35rem 0.6rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        flex-shrink: 0;
        margin-left: 0.3rem;
    }

    .hamburger span {
        background: var(--text-dark);
        width: 22px;
        height: 2.5px;
    }

    .network-section {
        padding: 4rem 0;
    }
    
    .network-main-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .city-item {
        padding: 0.875rem 1.25rem;
        font-size: 1.05rem;
    }

    .network-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Additional Professional Effects */
.help-card {
    position: relative;
    overflow: hidden;
}

.help-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.help-card:hover::after {
    left: 100%;
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.section-title {
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--teal-dark), transparent);
    animation: fadeIn 1s ease-out 0.5s both;
}

/* Loading animation for images */
.property-image img,
.hero-background img {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.property-image img {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s both;
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 0 10px;
    }

    .nav-wrapper {
        gap: 0.3rem;
    }

    .logo-icon {
        height: 2rem;
    }

    .nav-right {
        gap: 0.3rem;
    }

    .nav-right .phone-number {
        font-size: 0.6rem;
    }

    .nav-right .phone-number span:last-child {
        display: none;
    }

    .nav-right .contact-btn {
        font-size: 0.55rem;
        padding: 0.3rem 0.5rem;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
    }

    .footer {
        padding: 1.5rem 0 0.75rem;
    }
    
    .footer .container {
        padding: 0 15px;
    }
    
    .footer-main {
        gap: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .footer-logo .logo-icon {
        height: 4rem;
    }
    
    .footer-right {
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-contact p {
        font-size: 0.8rem;
        padding: 0.2rem 0;
        text-align: center;
        justify-content: center;
    }
    
    .footer .social-icons {
        justify-content: center;
    }
    
    .footer .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .footer-section .footer-links {
        align-items: center;
        justify-content: center;
    }
    
    .footer-section .footer-links a {
        font-size: 0.8rem;
        padding: 0.2rem 0;
    }
    
    .footer-bottom {
        padding-top: 1rem;
        margin-top: 0.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
    }

    .section-divider {
        padding: 2rem 0;
    }
    
    .divider-icon {
        width: 50px;
        height: 50px;
        margin: 0 1rem;
    }
    
    .divider-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .divider-line {
        max-width: 100px;
    }
    
    .hero {
        padding: 1.5rem 0;
    }
    
    .hero-content {
        padding: 1.5rem 0;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .hero-features {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }

    .hero-features li {
        font-size: 0.85rem;
        padding-left: 1.25rem;
    }
    
    .callback-form {
        padding: 1rem;
    }
    
    .callback-form h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .progress-bar {
        margin-bottom: 0.875rem;
    }
    
    .form-step {
        display: none !important;
    }
    
    .form-step.active {
        display: block !important;
    }
    
    .form-question {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .radio-group {
        gap: 0.4rem;
        margin-bottom: 0.75rem;
    }
    
    .radio-label {
        padding: 0.4rem;
        font-size: 0.8rem;
    }
    
    .form-buttons {
        margin-top: 0.75rem;
        gap: 0.5rem;
    }
    
    .form-next-btn,
    .form-back-btn,
    .form-submit-btn {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
    
    .input-group {
        margin-bottom: 0.5rem;
    }
    
    .input-group input {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    .about-dehleez-section {
        padding: 3rem 0;
    }
    
    .about-dehleez-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-dehleez-left {
        text-align: center;
    }
    
    .about-dehleez-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .about-dehleez-intro {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-dehleez-description {
        font-size: 0.95rem;
    }
    
    .about-dehleez-mission {
        padding: 2rem 1.5rem;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
    
    .about-dehleez-image {
        border-radius: 10px;
    }
    
    .property-categories-section {
        padding: 3rem 0;
    }
    
    .categories-section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .category-card {
        padding: 2rem 1.5rem;
    }
    
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .why-choose-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .why-choose-title::after {
        width: 80px;
        bottom: -12px;
    }
    
    .why-choose-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .why-choose-card {
        padding: 1.75rem 1.5rem;
    }
    
    .why-choose-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .why-choose-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .why-choose-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.625rem;
    }
    
    .why-choose-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
    
    .category-list li {
        font-size: 0.95rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .category-contact-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .phone-number-large {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .contact-left {
        text-align: center;
    }
    
    .contact-left h2 {
        font-size: 2rem;
    }
    
    .phone-number-large {
        font-size: 1.75rem;
        display: block;
        visibility: visible;
    }
    
    .contact-options {
        display: inline-block;
        visibility: visible;
        font-size: 0.9rem;
        padding: 0.6rem 1.25rem;
    }
    
    .contact-separator {
        font-size: 1.5rem;
        padding: 1rem 0;
    }
    
    .contact-separator::before,
    .contact-separator::after {
        width: 40px;
    }
    
    .contact-right .callback-form {
        max-width: 100%;
        padding: 1.25rem;
    }
    
    .contact-right .callback-form h3 {
        font-size: 1.1rem;
        margin-bottom: 0.875rem;
    }
    
    .contact-right .form-buttons {
        margin-top: 0.875rem;
    }
    
    /* Fix form mobile view */
    .callback-form {
        padding: 1.25rem;
        margin: 0 auto;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .callback-form h3 {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 0.875rem;
    }
    
    .progress-bar {
        margin-bottom: 1rem;
    }
    
    .form-step {
        display: none !important;
    }
    
    .form-step.active {
        display: block !important;
    }
    
    .form-question {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }
    
    .radio-group {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .radio-label {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .form-buttons {
        gap: 0.75rem;
        margin-top: 1rem;
        display: flex;
        width: 100%;
    }
    
    .form-next-btn,
    .form-back-btn,
    .form-submit-btn {
        padding: 0.75rem;
        font-size: 0.85rem;
        flex: 1;
    }
    
    .input-group {
        margin-bottom: 0.75rem;
    }
    
    .input-group input {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .hero-right {
        justify-content: center;
        width: 100%;
    }
    
    .hero-right .callback-form {
        width: 100%;
        max-width: 100%;
    }

    .properties-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }
    
    .properties-title-section {
        text-align: center;
    }
    
    .properties-title-section h2 {
        text-align: center;
    }
    
    .properties-title-section p {
        text-align: center;
    }
    
    .properties-actions {
        justify-content: center;
    }

    .services-left h2 {
        font-size: 1.8rem;
    }

    .services-left > p {
        font-size: 1rem;
    }

    .service-detail-item {
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .service-detail-number {
        font-size: 2rem;
        min-width: 50px;
    }

    .service-detail-content h3 {
        font-size: 1.1rem;
    }

    .service-detail-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .service-details {
        gap: 1rem;
    }
    
    .network-section {
        padding: 3rem 0;
    }
    
    .network-main-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .city-item {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .city-pin-icon {
        width: 18px;
        height: 18px;
    }
    
    .network-access {
        padding: 3rem 0;
    }
    
    .network-access-content {
        padding: 0 1rem;
    }
    
    .network-left {
        text-align: center;
        padding: 0;
        width: 100%;
    }
    
    .network-left h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }
    
    .network-left h2 .heading-line-1 {
        white-space: normal;
        display: block;
    }
    
    .network-left h2 .heading-line-2 {
        display: block;
        margin-top: 0.5rem;
    }
    
    .network-left p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        text-align: center;
        max-width: 100%;
    }
    
    .network-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .network-stat {
        min-width: 200px;
        max-width: 250px;
        width: 100%;
        padding: 1.25rem;
    }
    
    .network-stat-number {
        font-size: 2.5rem;
    }
    
    .network-stat-label {
        font-size: 0.95rem;
    }
    
    .network-cta {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        display: inline-block;
        width: auto;
    }
}

/* Success Popup Styles */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.success-popup.active {
    opacity: 1;
    visibility: visible;
}

.success-popup-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7) translateY(-50px);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.success-popup.active .success-popup-content {
    transform: scale(1) translateY(0);
}

.success-popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-medium), var(--gold-dark));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.success-icon-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    color: var(--gold-medium);
    animation: successBounce 0.6s ease-out;
    transform-origin: center;
}

@keyframes successBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon circle {
    stroke-dasharray: 62.83;
    stroke-dashoffset: 62.83;
    animation: drawCircle 0.6s ease-out 0.3s forwards;
}

.success-icon path {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    animation: drawCheck 0.4s ease-out 0.9s forwards;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    animation: fadeInUp 0.5s ease-out 0.4s both;
}

.success-message {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-close-btn {
    background: linear-gradient(135deg, var(--gold-medium), var(--gold-dark));
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: fadeInUp 0.5s ease-out 0.8s both;
    position: relative;
    overflow: hidden;
}

.success-close-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.success-close-btn:hover::before {
    width: 300px;
    height: 300px;
}

.success-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.success-close-btn:active {
    transform: translateY(0);
}

/* Responsive Success Popup */
@media (max-width: 768px) {
    .success-popup-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
    }
    
    .success-title {
        font-size: 1.5rem;
    }
    
    .success-message {
        font-size: 1rem;
    }
    
    .success-close-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}
