 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1a1f3a;
            --secondary: #2d3561;
            --gold: #d4af37;
            --accent: #3d5a80;
            --light-bg: #f5f7fa;
            --white: #ffffff;
            --text: #1a1a1a;
            --text-light: #666666;
            --success: #27ae60;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header */
        header {
            background: rgba(26, 31, 58, 0.95);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 26px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: -0.5px;
        }

        .logo span {
            color: var(--gold);
        }

        nav {
            display: flex;
            gap: 40px;
        }

        nav a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s;
            position: relative;
        }

        nav a:hover {
            color: var(--gold);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 800px;
            background: linear-gradient(rgba(26, 31, 58, 0.4), rgba(26, 31, 58, 0.6)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1400 800"><defs><linearGradient id="g" x1="0%" y1="0%"><stop offset="0%" style="stop-color:%233d5a80"/><stop offset="100%" style="stop-color:%231a3a52"/></linearGradient></defs><rect fill="url(%23g)" width="1400" height="800"/><circle cx="200" cy="100" r="80" fill="rgba(212, 175, 55, 0.1)"/><polygon points="1200,700 1400,700 1300,600" fill="rgba(212, 175, 55, 0.08)"/></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) translateX(0px); }
            50% { transform: translateY(40px) translateX(-20px); }
        }

        .hero-content {
            text-align: center;
            color: var(--white);
            z-index: 1;
            max-width: 900px;
            animation: slideDown 0.9s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 64px;
            font-weight: 700;
            margin-bottom: 25px;
            letter-spacing: -1.5px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.95;
            font-weight: 300;
            line-height: 1.8;
        }

        .cta-button {
            display: inline-block;
            background: var(--gold);
            color: var(--primary);
            padding: 18px 50px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            border: 2px solid var(--gold);
            cursor: pointer;
            letter-spacing: 0.5px;
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
        }

        .cta-button:hover {
            background: transparent;
            color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
        }

        /* Search Bar */
        .search-section {
            background: var(--white);
            padding: 50px 30px;
            position: relative;
            margin-top: -80px;
            z-index: 10;
        }

        .search-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .search-form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .form-group input,
        .form-group select {
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            font-family: inherit;
            background: var(--white);
            color: var(--text);
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }

        .search-btn {
            align-self: flex-end;
            background: var(--primary);
            color: var(--white);
            padding: 14px 40px;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .search-btn:hover {
            background: var(--gold);
            color: var(--primary);
            transform: translateY(-2px);
        }

        .results-preview {
            margin-top: 20px;
            padding: 20px;
            background: var(--light-bg);
            border-radius: 4px;
            display: none;
            animation: slideUp 0.5s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .results-preview.show {
            display: block;
        }

        .results-preview p {
            color: var(--text-light);
            font-size: 14px;
        }

        /* Sections */
        section {
            padding: 100px 30px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 48px;
            margin-bottom: 15px;
            color: var(--primary);
            font-weight: 700;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 60px;
            max-width: 700px;
            font-weight: 300;
            line-height: 1.8;
             display: block;
  margin: 0 auto;
  text-align: center;
           
        }

        /* Featured Listings */
        .featured {
            background: var(--light-bg);
        }

        .listings-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 35px;
            margin-top: 60px;
        }

        .listing-card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
        }

        .listing-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .listing-image {
            position: relative;
            height: 280px;
            overflow: hidden;
            background: var(--secondary);
        }

        .listing-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(61, 90, 128, 0.8), rgba(26, 31, 58, 0.8));
            z-index: 1;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .listing-card:hover .listing-image::before {
            opacity: 1;
        }

        .listing-image svg {
            width: 100%;
            height: 100%;
        }

        .listing-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gold);
            color: var(--primary);
            padding: 10px 18px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
        }

        .listing-info {
            padding: 30px;
        }

        .listing-address {
            color: var(--text-light);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .listing-title {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .listing-details {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            font-size: 14px;
            color: var(--text-light);
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .listing-description {
            color: var(--text-light);
            font-size: 14px;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .listing-price {
            font-size: 28px;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .listing-cta {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 12px 24px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .listing-cta:hover {
            background: var(--gold);
            color: var(--primary);
        }

        /* About Section */
        .about {
            background: var(--white);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            height: 500px;
        }

        .about-image svg {
            width: 100%;
            height: 100%;
        }

        .about-text h3 {
            color: var(--gold);
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .about-text p {
            color: var(--text-light);
            margin-bottom: 25px;
            line-height: 1.8;
            font-size: 15px;
        }

        .about-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }

        .stat-box {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 8px;
            border-left: 4px solid var(--gold);
        }

        .stat-number {
            font-size: 40px;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .stat-label {
            color: var(--text-light);
            font-size: 14px;
            font-weight: 500;
        }

        /* Case Studies */
        .case-studies {
            background: var(--light-bg);
        }

        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .case-card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
        }

        .case-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
        }

        .case-image {
            height: 320px;
            background: var(--secondary);
            position: relative;
        }

        .case-image svg {
            width: 100%;
            height: 100%;
        }

        .sale-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--success);
            color: white;
            padding: 12px 20px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .case-info {
            padding: 35px;
        }

        .case-price {
            font-size: 32px;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .case-title {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .case-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 20px 0;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .case-detail {
            display: flex;
            flex-direction: column;
        }

        .case-detail-label {
            font-size: 12px;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .case-detail-value {
            font-size: 16px;
            color: var(--primary);
            font-weight: 700;
        }

        /* Testimonials */
        .testimonials {
            background: var(--white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: var(--light-bg);
            padding: 35px;
            border-radius: 8px;
            border-top: 3px solid var(--gold);
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .testimonial-avatar {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--gold), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 28px;
            margin-right: 20px;
            font-weight: 700;
        }

        .testimonial-info h4 {
            color: var(--primary);
            margin-bottom: 5px;
            font-size: 16px;
            font-weight: 600;
        }

        .testimonial-info p {
            color: var(--text-light);
            font-size: 13px;
            font-weight: 500;
        }

        .stars {
            color: var(--gold);
            font-size: 14px;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .testimonial-text {
            color: var(--text-light);
            font-style: italic;
            line-height: 1.8;
            font-size: 15px;
        }

        /* Contact Form */
        .contact {
            background: var(--primary);
            color: var(--white);
        }

        .contact-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact .section-title {
            color: var(--white);
            text-align: center;
        }

        .contact .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
            text-align: center;
        }

        .contact-form {
            margin-top: 50px;
        }

        .contact-form .form-group {
            margin-bottom: 30px;
        }

        .contact-form label {
            color: var(--gold);
        }

        .contact-form input,
        .contact-form select,
        .contact-form textarea {
            width: 100%;
            padding: 16px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 4px;
            font-size: 14px;
            font-family: inherit;
            background: rgba(255, 255, 255, 0.95);
            color: var(--text);
            transition: all 0.3s;
        }

        .contact-form input:focus,
        .contact-form select:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-form button {
            width: 100%;
            padding: 18px;
            background: var(--gold);
            color: var(--primary);
            border: none;
            border-radius: 4px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-form button:hover {
            background: #e5c158;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        /* Footer */
        footer {
            background: var(--secondary);
            color: var(--white);
            padding: 80px 30px 30px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-section h3 {
            color: var(--gold);
            margin-bottom: 25px;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .footer-section p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            margin-bottom: 12px;
            line-height: 1.7;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 14px;
            display: block;
            margin-bottom: 10px;
        }

        .footer-section a:hover {
            color: var(--gold);
            margin-left: 5px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 18px;
        }

        .social-icon:hover {
            background: var(--gold);
            color: var(--primary);
            transform: translateY(-3px);
        }

        .map-container {
            height: 300px;
            border-radius: 4px;
            overflow: hidden;
            margin-top: 20px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .footer-bottom {
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
        }

        /* Scroll Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                display: none;
            }

            .hero h1 {
                font-size: 40px;
            }

            .hero p {
                font-size: 16px;
            }

            .search-form {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 36px;
            }

            .listings-grid,
            .case-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-image {
                height: 350px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        /* OOP CSS CODE from Zaeni Ahmad */
.card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;            
  gap: 16px;                      
  background-color: rgba(26, 31, 58, 0.9); 
  border-radius: 25px;            
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.12); 
  margin-left: -5px;
                
  width: fit-content;
  height: fit-content;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-top: 20px;
}

.card:hover {
  transform: translateY(-5px);   
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.18); 
}

/* Social icons inside card */
.card a {
  width: 50px;                    
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-color: rgba(61, 90, 128, 0.3); 
  transition: all 0.3s ease;
}

.card a:hover {
  transform: scale(1.2);
  border-radius: 15px;
}

/* Social hover colors (original brand colors) */
.card a:nth-child(1):hover { background-color: #E1306C; } /* Instagram */
.card a:nth-child(2):hover { background-color: #1DA1F2; } /* Twitter */
.card a:nth-child(3):hover { background-color: #0077B5; } /* LinkedIn */
.card a:nth-child(4):hover { background-color: #25D366; } /* WhatsApp */

/* SVG icon animations */
.card a svg:first-child {
  display: flex;
  width: 18px;
  position: absolute;
  transition: all 0.3s ease;
  fill: #ffffff; 
}
.card a:hover svg:first-child {
  transform: translateY(-35px);
  opacity: 0;
}

.card a svg:last-child {
  display: flex;
  width: 18px;
  position: absolute;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.3s ease;
  fill: #ffffff;
}
.card a:hover svg:last-child {
  transform: translateY(0px);
  opacity: 1;
}



/* Reset & Root */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1f3a;
    --secondary: #2d3561;
    --gold: #d4af37;
    --accent: #3d5a80;
    --light-bg: #f5f7fa;
    --white: #ffffff;
    --text: #1a1a1a;
    --text-light: #666666;
    --success: #27ae60;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container & Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-light);
}

/* Grid Layouts */
.listings-grid,
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Cards */
.listing-card,
.case-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.listing-card:hover,
.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Images */
.listing-image,
.case-image,
.about-image {
    width: 100%;
    height: 0;
    padding-bottom: 65%; /* aspect ratio fix */
    overflow: hidden;
    position: relative;
}

.listing-image img,
.case-image img,
.about-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.listing-card:hover .listing-image img,
.case-card:hover .case-image img,
.about-image img:hover {
    transform: scale(1.05);
}

/* Badges */
.listing-badge,
.sale-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 12px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Card Content */
.listing-info,
.case-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.listing-address,
.case-title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.listing-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.listing-details,
.case-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.listing-details span,
.case-details div {
    background: var(--light-bg);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* CTA Buttons */
.listing-cta {
    display: inline-block;
    margin-top: auto; /* push to bottom */
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.listing-cta:hover {
    background: var(--accent);
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .listing-image,
    .case-image {
        padding-bottom: 60%;
    }

    .about-image {
        height: 300px;
    }

    .about-content {
        flex-direction: column;
    }
}
