 /* Manor Lakes Section Styles - Dark Theme */
        .manorlakes-section {
            background: #3c3e45;
            color: #ffffff;
            font-family: 'DM Sans', sans-serif;
            line-height: 1.6;
        }

        .manorlakes-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .manorlakes-hero {
            padding: 80px 0;
            text-align: center;
            background: #32343b;
        }

        .manorlakes-hero h1 {
            font-size: 3.2rem;
           
            
            margin-bottom: 30px;
            
            letter-spacing: 2px;
            font-family: 'Lora', serif;
            
        }

        .manorlakes-hero-text {
            font-size: 1.1rem;
            color: #cccccc;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.8;
            font-family: 'DM Sans', sans-serif;
        }

        .manorlakes-timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 50px 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .manorlakes-timeline-item {
            background: #2a2a2a;
            padding: 30px;
            border-radius: 10px;
            border: 2px solid #d4a574;
            text-align: center;
        }

        .manorlakes-timeline-item h3 {
            color: #d4a574;
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .manorlakes-timeline-item p {
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .manorlakes-cta-btn {
            background: linear-gradient(135deg, #d4a574 0%, #c19653 100%);
            color: #000000;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
        }

        .manorlakes-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
            background: linear-gradient(135deg, #c19653 0%, #d4a574 100%);
        }

        /* Features Grid Section */
        .manorlakes-features {
            padding: 80px 0;
            background: #32343b;
        }


        
         .manorlakes-features h2 {
           font-size: 2.8rem;
          
            text-align: center;
            margin-bottom: 60px;
           
           
            letter-spacing: 1px;
             font-family: var(--tj-ff-heading);
  color: var(--tj-color-heading-primary);
  margin-top: 0px;
  font-weight: var(--tj-fw-medium);
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
        }

        .manorlakes-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .manorlakes-feature-card {
            background: #1a1a1a;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid #333333;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .manorlakes-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #b99a80;
        }

        .manorlakes-feature-card:hover {
            transform: translateY(-5px);
            border-color: #b99a80;
            box-shadow: 0 10px 30px rgba(212, 165, 116, 0.15);
        }

        .manorlakes-feature-card h3 {
            color: #d4a574;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .manorlakes-feature-card p {
            color: #cccccc;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Properties Section */
        .manorlakes-properties {
            padding: 80px 0;
            background: #32343b;
        }

        .manorlakes-properties h2 {
            font-size: 2.8rem;
            
            text-align: center;
            margin-bottom: 60px;
           
            
            letter-spacing: 1px;
             font-family: var(--tj-ff-heading);
  color: var(--tj-color-heading-primary);
  margin-top: 0px;
  font-weight: var(--tj-fw-medium);
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
        }

        .manorlakes-properties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
        }

        .manorlakes-property-card {
            background: #2a2a2a;
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid #333333;
            transition: all 0.3s ease;
        }

        .manorlakes-property-card:hover {
            border-color: #b99a80;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
        }

        .manorlakes-property-content {
            padding: 40px;
        }

        .manorlakes-property-card h3 {
            color: #ffffff;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .manorlakes-property-price {
            color: #d4a574;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .manorlakes-property-details {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }

        .manorlakes-property-detail {
            background: #1a1a1a;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
        }

        .manorlakes-property-detail-label {
            color: #999999;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .manorlakes-property-detail-value {
            color: #ffffff;
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* Contact Section */
        .manorlakes-contact {
            padding: 80px 0;
            background: #32343b;
        }

        .manorlakes-contact h2 {
             font-size: 2.8rem;
           
            text-align: center;
            margin-bottom: 60px;
           
           
            letter-spacing: 1px;
             font-family: var(--tj-ff-heading);
            color: var(--tj-color-heading-primary);
             margin-top: 0px;
           font-weight: var(--tj-fw-medium);
           line-height: 1.2;
           -webkit-transition: all 0.3s ease-in-out 0s;
           transition: all 0.3s ease-in-out 0s;
        }

        .manorlakes-contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 800px;
            margin: 0 auto;
        }

        .manorlakes-contact-card {
            background: #1a1a1a;
            padding: 50px 40px;
            border-radius: 20px;
            text-align: center;
            border: 2px solid #333333;
            transition: all 0.3s ease;
        }

        .manorlakes-contact-card:hover {
            border-color: #b99a80;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
        }

        .manorlakes-contact-card h3 {
            color: #d4a574;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .manorlakes-contact-phone {
            color: #ffffff;
            font-size: 1.4rem;
            font-weight: 500;
            margin-bottom: 30px;
            letter-spacing: 1px;
        }

        .manorlakes-email-btn {
            background: linear-gradient(135deg, #d4a574 0%, #c19653 100%);
            color: #000000;
            padding: 15px 35px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .manorlakes-email-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
            background: #b99a80;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .manorlakes-hero h1 {
                font-size: 2.2rem;
            }

            .manorlakes-hero-text {
                font-size: 1rem;
            }

            .manorlakes-timeline {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .manorlakes-features h2,
            .manorlakes-properties h2,
            .manorlakes-contact h2 {
                font-size: 2.2rem;
            }

            .manorlakes-features-grid {
                grid-template-columns: 1fr;
            }

            .manorlakes-properties-grid {
                grid-template-columns: 1fr;
            }

            .manorlakes-property-details {
                grid-template-columns: 1fr;
            }

            .manorlakes-contact-grid {
                grid-template-columns: 1fr;
            }

            .manorlakes-hero,
            .manorlakes-features,
            .manorlakes-properties,
            .manorlakes-contact {
                padding: 60px 0;
            }
        }

        @media (max-width: 480px) {
            .manorlakes-container {
                padding: 0 15px;
            }

            .manorlakes-hero h1 {
                font-size: 1.8rem;
            }

            .manorlakes-property-content {
                padding: 30px;
            }

            .manorlakes-contact-card {
                padding: 40px 30px;
            }
        }