/* services page */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: hsl(217, 89%, 61%);
            --primary-glow: hsl(217, 89%, 71%);
            --accent: hsl(43, 96%, 56%);
            --accent-glow: hsl(43, 96%, 66%);
            --background: hsl(0, 0%, 100%);
            --foreground: hsl(224, 20%, 15%);
            --muted: hsl(220, 14%, 96%);
            --muted-foreground: hsl(220, 9%, 46%);
            --border: hsl(220, 13%, 91%);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--foreground);
            background: var(--background);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/src/assets/hero-bg.jpg') center/cover;
            opacity: 0.3;
            z-index: 1;
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
            position: relative;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            font-weight: bold;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 0.5s forwards;
        }

        .hero p {
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 0.8s forwards;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 1.1s forwards;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 0.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--foreground);
        }

        .btn-primary:hover {
            background: var(--accent-glow);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background: white;
            color: var(--foreground);
            transform: translateY(-2px);
        }

        /* Floating elements */
        .floating-bg {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .float-1 {
            width: 200px;
            height: 200px;
            background: white;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .float-2 {
            width: 300px;
            height: 300px;
            background: var(--accent);
            bottom: 20%;
            right: 10%;
            animation-delay: 3s;
        }

        /* Services Section */
        .services {
            padding: 2rem 0;
            background: linear-gradient(to bottom right, var(--background), var(--muted));
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .section-title .highlight {
            color: var(--primary);
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--muted-foreground);
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .service-card {
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(50px);
        }

        .service-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .service-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .service-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
        }

        .service-icon {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 3rem;
            height: 3rem;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            z-index: 1;
        }

        .service-content {
            padding: 1.5rem;
        }

        .service-content h3 {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: var(--foreground);
        }

        .service-content p {
            color: var(--muted-foreground);
            margin-bottom: 1rem;
        }

        .service-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .service-features li {
            padding: 0.25rem 0;
            color: var(--muted-foreground);
            position: relative;
            padding-left: 1rem;
        }

        .service-features li::before {
            content: '•';
            color: var(--accent);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* Coverage Area */
        .coverage {
            padding: 1rem 0;
            background: var(--muted);
        }

        .route-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 3rem 0;
            gap: 2rem;
        }

        .route-point {
            text-align: center;
        }

        .route-icon {
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin: 0 auto 1rem;
            animation: pulse 2s infinite;
        }

        .route-start {
            background: var(--primary);
        }

        .route-end {
            background: var(--accent);
        }

        .route-line {
            flex: 1;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            border-radius: 2px;
            position: relative;
            overflow: hidden;
        }

        .route-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
            animation: shimmer 2s infinite;
        }

        .cities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .city-card {
            background: white;
            padding: 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: scale(0.9);
        }

        .city-card.animate {
            opacity: 1;
            transform: scale(1);
        }

        .city-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .city-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .city-name {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--foreground);
        }

        .city-stats {
            text-align: right;
        }

        .property-count {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--accent);
        }

        .growth-rate {
            font-size: 0.9rem;
            color: #22c55e;
            font-weight: 600;
        }

        /* Contact CTA */
.contact-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgb(231, 213, 165) 0%, #89f991 100%);
    color: white;
    text-align: center;
}


        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }

        .contact-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 2rem 1.5rem;
            border-radius: 1rem;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }

        .contact-icon {
            width: 3rem;
            height: 3rem;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.2rem;
            color: var(--foreground);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent);
        }

        .stat-label {
            color: rgba(255,255,255,0.8);
        }

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes pulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
            }
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .route-visual {
                flex-direction: column;
                gap: 1rem;
            }

            .route-line {
                width: 4px;
                height: 3rem;
                background: linear-gradient(to bottom, var(--primary), var(--accent));
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }



        /*  */
        .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  z-index: 10000; /* force it above everything */
}




  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  .service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  .service-card:hover { transform: translateY(-5px); }
  .service-image { height: 200px; background-size: cover; background-position: center; position: relative; }
  .service-icon { position: absolute; bottom: 10px; right: 10px; background: rgba(255,255,255,0.9); padding: 10px; border-radius: 50%; font-size: 1.5rem; }
  .service-content { padding: 20px; }
  .service-content h3 { margin: 0 0 10px; }
  .service-features { margin: 15px 0; padding-left: 20px; }
  .btn { display: block; padding: 10px; border-radius: 6px; text-decoration: none; background: #007bff; color: #fff; font-weight: bold; text-align: center; }
  .btn:hover { background: #0056b3; }

  /* Modal */
  .modal { display: none; position: fixed; z-index: 9999; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); justify-content: center; align-items: center; padding: 20px; }
  .modal-content { background: #fff; border-radius: 12px; max-width: 900px; width: 100%; position: relative; animation: zoomIn 0.3s ease-in-out; }
  .modal-body { display: flex; flex-wrap: wrap; gap: 20px; padding: 25px; }
  .modal-left { flex: 1 1 40%; }
  .modal-left img { width: 100%; border-radius: 10px; }
  .modal-right { flex: 1 1 55%; }
  .modal-right h2 { margin: 0 0 15px; }
  .modal-right ul { padding-left: 20px; margin: 10px 0; }
  .close { position: absolute; top: 15px; right: 20px; font-size: 2rem; color: #333; cursor: pointer; }
  @keyframes zoomIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }



  /*  */
  .hero-buttons .btn-primary,
.hero-buttons .btn-outline {
  background-color: #d8a613;
  color: #000; /* text black for visibility */
  border: 2px solid #d8a613;
  font-weight: bold;
  transition: all 0.3s ease;
}

/* Hover effect */
.hero-buttons .btn-primary:hover,
.hero-buttons .btn-outline:hover {
  background-color: #3cb043; /* parrot green */
  border-color: #3cb043;
  color: #fff;
}

