/* source: city_template_1/us-city.php */
:root {
        /* Midnight Violet - Primary Dark */
        --primary: #1f0322;
        --primary-light: #3d0b42;

        /* Blue Green - Accent/CTA */
        --accent: #2f97c1;
        --accent-hover: #237a9a;
        --accent-light: #4db5d8;

        /* Blue Slate - Secondary */
        --secondary: #587291;
        --secondary-light: #6e8aab;

        /* Alabaster Grey - Neutral */
        --alabaster: #dfdfdf;

        /* Text Colors */
        --text-dark: #1f0322;
        --text-gray: #587291;
        --text-light: #ffffff;

        /* Backgrounds */
        --bg-light: #f5f6f8;
        --bg-white: #ffffff;
        --border: #dfdfdf;

        /* Gradients */
        --gradient-primary: linear-gradient(135deg, #1f0322 0%, #3d0b42 100%);
        --gradient-accent: linear-gradient(135deg, #2f97c1 0%, #237a9a 100%);
        --gradient-hero: linear-gradient(135deg, rgba(31, 3, 34, 0.95) 0%, rgba(88, 114, 145, 0.85) 50%, rgba(47, 151, 193, 0.90) 100%);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
        color: var(--text-dark);
        line-height: 1.65;
        background: var(--bg-white);
        position: relative;
      }

      /* Grain texture removed for cleaner sections */

      h1, h2, h3, h4 {
        font-family: "Crimson Pro", Georgia, serif;
        font-weight: 700;
        color: var(--text-dark);
        line-height: 1.15;
        letter-spacing: -0.02em;
      }

      /* MCATEE Hero Section - Technical Luxe Design */
      .mcatee-hero {
        position: relative;
        min-height: 85vh;
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        padding: 100px 0 60px;
        isolation: isolate;
      }

      .mcatee-hero .hero-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
      }

      .mcatee-hero .hero-bg-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 0.4;
      }

      .mcatee-hero .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(52, 73, 94, 0.90));
        z-index: 1;
      }

      @keyframes gridShift {
        0% {
          background-position: 0 0, 0 0;
        }
        100% {
          background-position: 0 0, 60px 60px;
        }
      }

      .hero-content {
        position: relative;
        z-index: 3;
        color: white;
        padding: 80px 0;
        width: 100%;
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, rgba(47, 151, 193, 0.25) 0%, rgba(47, 151, 193, 0.18) 100%);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(47, 151, 193, 0.4);
        padding: 12px 28px;
        border-radius: 100px;
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 28px;
        color: #4db5d8;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 8px 32px rgba(47, 151, 193, 0.25);
        animation: fadeInDown 0.6s ease-out;
      }

      @keyframes fadeInDown {
        from {
          opacity: 0;
          transform: translateY(-20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .hero-badge svg {
        filter: drop-shadow(0 0 8px rgba(47, 151, 193, 0.7));
      }

      .hero-title {
        font-size: clamp(42px, 6.5vw, 72px);
        margin: 28px 0;
        font-weight: 900;
        line-height: 1.08;
        color: white;
        text-shadow: 0 4px 30px rgba(0,0,0,0.4);
        animation: fadeInUp 0.8s ease-out 0.2s both;
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .hero-subtitle {
        font-size: clamp(17px, 2.2vw, 21px);
        margin-bottom: 40px;
        line-height: 1.75;
        max-width: 620px;
        color: rgba(223, 223, 223, 0.95);
        animation: fadeInUp 0.8s ease-out 0.4s both;
      }

      .hero-buttons {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-bottom: 56px;
        animation: fadeInUp 0.8s ease-out 0.6s both;
      }

      .btn-primary {
        background: var(--gradient-accent);
        color: white;
        padding: 18px 42px;
        border-radius: 14px;
        font-weight: 700;
        font-size: 16px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 12px 35px rgba(47, 151, 193, 0.4), 0 0 0 0 rgba(47, 151, 193, 0.5);
        border: none;
        position: relative;
        overflow: hidden;
      }

      .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
        transition: left 0.5s;
      }

      .btn-primary:hover::before {
        left: 100%;
      }

      .btn-primary:hover {
        background: linear-gradient(135deg, var(--accent-hover) 0%, #1a5f7a 100%);
        transform: translateY(-3px);
        box-shadow: 0 16px 45px rgba(47, 151, 193, 0.5), 0 0 0 4px rgba(47, 151, 193, 0.15);
        color: white;
      }

      .btn-outline {
        background: rgba(255,255,255,0.08);
        backdrop-filter: blur(20px);
        color: white;
        padding: 18px 42px;
        border-radius: 14px;
        font-weight: 700;
        font-size: 16px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        border: 2px solid rgba(255,255,255,0.25);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .btn-outline:hover {
        background: rgba(255,255,255,0.15);
        border-color: rgba(255,255,255,0.5);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(255, 255, 255, 0.1);
      }

      .hero-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 16px;
        animation: fadeInUp 0.8s ease-out 0.8s both;
      }

      .hero-feature {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 18px 24px;
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
        backdrop-filter: blur(20px);
        border-radius: 14px;
        border: 1px solid rgba(255,255,255,0.15);
        font-size: 15px;
        font-weight: 600;
        transition: all 0.3s ease;
      }

      .hero-feature:hover {
        background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
        border-color: rgba(255,255,255,0.25);
        transform: translateX(4px);
      }

      .hero-feature i {
        color: var(--accent);
        font-size: 22px;
        filter: drop-shadow(0 2px 8px rgba(47, 151, 193, 0.5));
      }

      .hero-image-col {
        position: relative;
        z-index: 3;
        animation: fadeInRight 0.8s ease-out 0.4s both;
      }

      @keyframes fadeInRight {
        from {
          opacity: 0;
          transform: translateX(40px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .hero-stats-card {
        background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
        backdrop-filter: blur(30px);
        border-radius: 28px;
        padding: 42px 36px;
        box-shadow:
          0 30px 80px rgba(0,0,0,0.3),
          0 0 0 1px rgba(255,255,255,0.6) inset,
          0 0 60px rgba(47, 151, 193, 0.15);
        border: 2px solid rgba(255,255,255,0.7);
        position: relative;
        overflow: hidden;
        animation: float 6s ease-in-out infinite;
      }

      @keyframes float {
        0%, 100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-10px);
        }
      }

      .hero-stats-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
        background-size: 200% 100%;
        animation: shimmer 3s linear infinite;
      }

      @keyframes shimmer {
        0% {
          background-position: -200% 0;
        }
        100% {
          background-position: 200% 0;
        }
      }

      .hero-stat-item {
        text-align: center;
        padding: 28px 0;
        position: relative;
        transition: all 0.3s ease;
      }

      .hero-stat-item:hover {
        transform: scale(1.05);
      }

      .hero-stat-item:not(:last-child) {
        border-bottom: 2px solid rgba(223, 223, 223, 0.4);
      }

      .hero-stat-number {
        font-size: 44px;
        font-weight: 900;
        background: var(--gradient-accent);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 10px;
        letter-spacing: -1px;
      }

      .hero-stat-label {
        color: var(--text-gray);
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.3px;
      }

      /* Stats Section - Hidden, integrated into hero */
      .stats-section {
        display: none;
      }

      /* ==========================================
         MCATEE HERO DESIGN - Technical Luxe
         ========================================== */

      .mcatee-hero .hero-main-col {
        padding-right: 40px;
      }

      .mcatee-hero .hero-title {
        font-family: "Crimson Pro", Georgia, serif;
        font-size: clamp(44px, 5.5vw, 68px);
        font-weight: 900;
        color: white;
        line-height: 1.08;
        margin-bottom: 24px;
        text-shadow: 0 4px 24px rgba(0,0,0,0.3);
        letter-spacing: -0.03em;
        animation: fadeInUp 0.7s ease-out 0.2s both;
      }

      .mcatee-hero .hero-subtitle {
        font-size: 18px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.92);
        margin-bottom: 38px;
        max-width: 640px;
        font-weight: 400;
        animation: fadeInUp 0.7s ease-out 0.4s both;
      }

      .mcatee-hero .hero-buttons {
        display: flex;
        gap: 16px;
        margin-bottom: 48px;
        flex-wrap: wrap;
        animation: fadeInUp 0.7s ease-out 0.6s both;
      }

      .mcatee-hero .hero-btn {
        background: #00d665;
        color: white;
        padding: 16px 36px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 15px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 16px rgba(0, 214, 101, 0.35);
        position: relative;
        overflow: hidden;
      }

      .mcatee-hero .hero-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;
      }

      .mcatee-hero .hero-btn:hover::before {
        left: 100%;
      }

      .mcatee-hero .hero-btn:hover {
        background: #00bf5a;
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(0, 214, 101, 0.45);
        color: white;
      }

      .mcatee-hero .hero-btn-secondary {
        background: #00d665;
      }

      .mcatee-hero .hero-btn-primary {
        background: #00d665;
      }

      /* Hero Badges Row */
      .hero-badges-row {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 24px;
        animation: fadeInUp 0.7s ease-out 0.8s both;
      }

      .review-badge {
        background: #2e5c8f;
        border-radius: 12px;
        padding: 20px;
        display: flex;
        gap: 16px;
        align-items: flex-start;
        box-shadow: 0 8px 32px rgba(0,0,0,0.2);
      }

      .review-icon {
        width: 52px;
        height: 52px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        font-weight: 700;
        color: #4285f4;
        flex-shrink: 0;
        font-family: "Arial", sans-serif;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      }

      .review-content {
        flex: 1;
      }

      .review-label {
        font-size: 13px;
        color: rgba(255,255,255,0.8);
        margin-bottom: 4px;
        font-weight: 500;
      }

      .review-stars {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 6px;
      }

      .star-rating {
        font-size: 24px;
        font-weight: 700;
        color: white;
        font-family: "Crimson Pro", Georgia, serif;
      }

      .stars {
        color: #fbbf24;
        font-size: 16px;
        letter-spacing: 1px;
      }

      .review-link {
        font-size: 12px;
        color: rgba(255,255,255,0.9);
        text-decoration: underline;
        transition: color 0.3s ease;
      }

      .review-link:hover {
        color: white;
      }

      .guarantee-badge {
        background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
        border-radius: 12px;
        padding: 24px;
        display: flex;
        gap: 18px;
        align-items: flex-start;
        border: 2px solid #c8e6c9;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
      }

      .guarantee-check {
        flex-shrink: 0;
      }

      .guarantee-check svg {
        display: block;
      }

      .guarantee-title {
        font-size: 14px;
        font-weight: 800;
        color: #2e7d32;
        margin-bottom: 6px;
        letter-spacing: 0.5px;
      }

      .guarantee-text {
        font-size: 13px;
        line-height: 1.5;
        color: #1b5e20;
      }

      /* Request Service Form */
      .hero-form-col {
        position: relative;
        z-index: 3;
        animation: fadeInRight 0.8s ease-out 0.4s both;
      }

      .request-service-form {
        background: white;
        border-radius: 16px;
        padding: 40px 36px;
        box-shadow: 0 24px 72px rgba(0,0,0,0.3);
        border: 1px solid rgba(255,255,255,0.2);
        position: relative;
        overflow: hidden;
      }

      .request-service-form::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #00d665, #00bf5a);
      }

      .form-icon {
        width: 64px;
        height: 64px;
        background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: #00d665;
      }

      .form-title {
        font-size: 28px;
        font-weight: 800;
        color: #1a2332;
        margin-bottom: 28px;
        font-family: "Crimson Pro", Georgia, serif;
      }

      .request-service-form .form-group {
        margin-bottom: 16px;
      }

      .request-service-form input,
      .request-service-form textarea {
        width: 100%;
        padding: 14px 18px;
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        font-size: 15px;
        font-family: "DM Sans", sans-serif;
        transition: all 0.3s ease;
        background: white;
        color: #1f2937;
      }

      .request-service-form input:focus,
      .request-service-form textarea:focus {
        outline: none;
        border-color: #00d665;
        box-shadow: 0 0 0 3px rgba(0, 214, 101, 0.1);
      }

      .request-service-form input::placeholder,
      .request-service-form textarea::placeholder {
        color: #9ca3af;
      }

      .request-service-form textarea {
        resize: vertical;
        min-height: 80px;
      }

      .form-trust {
        margin: 12px 0 0;
        font-size: 12px;
        color: #6b7280;
        text-align: center;
        letter-spacing: 0.02em;
      }

      .form-submit {
        width: 100%;
        background: #00d665;
        color: white;
        padding: 16px 28px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 16px;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 16px rgba(0, 214, 101, 0.3);
        position: relative;
        overflow: hidden;
      }

      .form-submit::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
        transition: left 0.5s;
      }

      .form-submit:hover::before {
        left: 100%;
      }

      .form-submit:hover {
        background: #00bf5a;
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(0, 214, 101, 0.45);
      }

      .form-submit svg {
        transition: transform 0.3s ease;
      }

      .form-submit:hover svg {
        transform: translateX(4px);
      }

      /* Expert Services Accordion Section */
      .expert-services-section {
        padding: 84px 0;
        background: #f9fafb;
        position: relative;
      }

      .expert-services-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
      }

      .section-heading {
        font-size: clamp(32px, 4vw, 42px);
        font-weight: 800;
        color: #1a2332;
        text-align: center;
        margin-bottom: 48px;
        font-family: "Crimson Pro", Georgia, serif;
        letter-spacing: -0.02em;
      }

      .services-accordion {
        max-width: 900px;
        margin: 0 auto;
      }

      .accordion-item {
        background: white;
        border-radius: 12px;
        margin-bottom: 14px;
        border: 2px solid #e5e7eb;
        transition: all 0.3s ease;
        overflow: hidden;
      }

      .accordion-item:hover {
        border-color: #00d665;
        box-shadow: 0 4px 20px rgba(0, 214, 101, 0.12);
      }

      .accordion-header {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 20px 24px;
        cursor: pointer;
        user-select: none;
      }

      .accordion-icon {
        width: 36px;
        height: 36px;
        background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #00d665;
        flex-shrink: 0;
      }

      .accordion-header h3 {
        flex: 1;
        font-size: 19px;
        font-weight: 700;
        color: #1a2332;
        margin: 0;
        font-family: "Crimson Pro", Georgia, serif;
      }

      .accordion-toggle {
        width: 32px;
        height: 32px;
        background: #f3f4f6;
        border-radius: 8px;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #6b7280;
      }

      .accordion-toggle:hover {
        background: #e5e7eb;
        color: #374151;
      }

      .accordion-toggle svg {
        transition: transform 0.3s ease;
      }

      .accordion-item.active .accordion-toggle svg {
        transform: rotate(180deg);
      }

      .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .accordion-item.active .accordion-content {
        max-height: 300px;
      }

      .accordion-content p {
        padding: 0 28px 28px 84px;
        margin: 0;
        color: #4b5563;
        font-size: 16px;
        line-height: 1.7;
      }

      /* Custom Cursor - Premium feel */
      @media (pointer: fine) {
        body {
          cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="6" fill="%232f97c1" opacity="0.3"/><circle cx="12" cy="12" r="2" fill="%232f97c1"/></svg>') 12 12, auto;
        }

        a, button, .btn-primary, .btn-outline {
          cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8" fill="%232f97c1" opacity="0.5"/><circle cx="12" cy="12" r="3" fill="%231f0322"/></svg>') 12 12, pointer;
        }
      }

      /* About Section */
      .about-section {
        padding: 88px 0;
        background: var(--bg-white);
        position: relative;
        overflow: hidden;
      }

      /* Decorative geometric element */
      .about-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: linear-gradient(135deg, rgba(47, 151, 193, 0.05) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
      }

      .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, rgba(47, 151, 193, 0.15) 0%, rgba(47, 151, 193, 0.08) 100%);
        color: var(--accent);
        padding: 10px 22px;
        border-radius: 100px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.8px;
        margin-bottom: 18px;
        border: 2px solid rgba(47, 151, 193, 0.25);
        box-shadow: 0 4px 12px rgba(47, 151, 193, 0.12);
        transition: all 0.3s ease;
      }

      .section-badge:hover {
        background: linear-gradient(135deg, rgba(47, 151, 193, 0.2) 0%, rgba(47, 151, 193, 0.12) 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(47, 151, 193, 0.18);
      }

      .section-title {
        font-size: clamp(36px, 5vw, 56px);
        margin-bottom: 24px;
        font-weight: 900;
        line-height: 1.08;
        position: relative;
        display: block;
        width: fit-content;
      }

      .text-center .section-title {
        margin-left: auto;
        margin-right: auto;
      }

      .text-center .section-title::after {
        left: 50%;
        transform: translateX(-50%);
      }

      /* Distinctive underline accent */
      .section-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 80px;
        height: 4px;
        background: var(--gradient-accent);
        border-radius: 2px;
      }

      .section-subtitle {
        font-size: 17px;
        color: var(--text-gray);
        line-height: 1.65;
        margin-bottom: 24px;
      }

      /* Hide headings and lists inside about content */
      .section-subtitle h2,
      .section-subtitle h3,
      .section-subtitle h4,
      .section-subtitle h5,
      .section-subtitle ul {
        display: none;
      }

      .about-image {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(0,0,0,0.12);
        margin-bottom: 0;
      }

      .about-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(47, 151, 193, 0.12) 0%, transparent 100%);
        z-index: 1;
      }

      .about-image img {
        width: 100%;
        height: auto;
        max-height: 480px;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
      }

      .about-image:hover img {
        transform: scale(1.05);
      }

      .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 16px;
        margin-top: 24px;
      }

      .feature-box {
        background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
        padding: 20px;
        border-radius: 14px;
        border: 2px solid var(--border);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;
      }

      .feature-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: var(--gradient-accent);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      }

      /* Decorative circle accent */
      .feature-box::after {
        content: '';
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: radial-gradient(circle, rgba(47, 151, 193, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        opacity: 0;
        transform: scale(0);
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      }

      .feature-box:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow:
          0 16px 45px rgba(47, 151, 193, 0.15),
          0 0 0 1px rgba(47, 151, 193, 0.1) inset;
        background: white;
        border-color: rgba(47, 151, 193, 0.3);
      }

      .feature-box:hover::before {
        transform: scaleY(1);
      }

      .feature-box:hover::after {
        opacity: 1;
        transform: scale(3);
      }

      .feature-box h3 {
        font-size: 18px;
        margin-bottom: 8px;
        font-weight: 700;
      }

      .feature-box p {
        color: var(--text-gray);
        margin: 0;
        line-height: 1.5;
        font-size: 14px;
      }

      /* Services Section */
      .services-section {
        padding: 88px 0;
        background:
          linear-gradient(135deg, transparent 0%, rgba(223, 223, 223, 0.3) 100%),
          repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(88, 114, 145, 0.03) 35px,
            rgba(88, 114, 145, 0.03) 70px
          ),
          var(--bg-light);
        position: relative;
      }

      .text-center {
        text-align: center;
      }

      .service-card {
        background: white;
        border-radius: 20px;
        padding: 40px;
        height: 100%;
        border: 2px solid var(--border);
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;
      }

      .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: var(--gradient-accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      }

      /* Decorative corner accent */
      .service-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, transparent 50%, rgba(47, 151, 193, 0.08) 50%);
        opacity: 0;
        transition: opacity 0.5s ease;
      }

      .service-card:hover::before {
        transform: scaleX(1);
      }

      .service-card:hover::after {
        opacity: 1;
      }

      .service-card:hover {
        border-color: var(--accent);
        box-shadow:
          0 24px 60px rgba(47, 151, 193, 0.2),
          0 0 0 1px rgba(47, 151, 193, 0.1) inset;
        transform: translateY(-12px) scale(1.02);
      }

      .service-meta {
        color: var(--accent);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
        display: inline-block;
        background: rgba(47, 151, 193, 0.1);
        padding: 6px 14px 6px 34px;
        border-radius: 100px;
        border: 1px solid rgba(47, 151, 193, 0.2);
        position: relative;
      }

      .service-meta::before {
        content: '';
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: radial-gradient(circle at 30% 30%, #ffffff 0%, #bfe9f7 35%, var(--accent) 100%);
        box-shadow: 0 4px 10px rgba(47, 151, 193, 0.3);
      }

      .service-card h3 {
        font-size: 26px;
        margin-bottom: 16px;
        font-weight: 700;
      }

      .service-card h3 a {
        color: var(--text-dark);
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .service-card h3 a:hover {
        color: var(--accent);
      }

      .service-card p {
        line-height: 1.7;
        margin-bottom: 24px;
        color: #374151;
        max-height: 80px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
      }

      .service-link {
        color: var(--accent);
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 15px;
        transition: all 0.3s ease;
      }

      .service-link:hover {
        gap: 12px;
        color: var(--accent-hover);
      }

      /* Why Section */
      .why-section {
        padding: 88px 0;
        background: var(--primary);
        color: white;
        position: relative;
        overflow: hidden;
      }

      .why-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(47, 151, 193, 0.18) 0%, transparent 70%);
        border-radius: 50%;
      }

      .why-section::after {
        content: '';
        position: absolute;
        bottom: -50%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(88, 114, 145, 0.15) 0%, transparent 70%);
        border-radius: 50%;
      }

      .why-section .container {
        position: relative;
        z-index: 1;
      }

      .why-section h2,
      .why-section .section-title,
      .why-section .section-badge {
        color: white !important;
      }

      .why-section .section-badge {
        background: rgba(255,255,255,0.15);
        color: white;
        border: 1px solid rgba(255,255,255,0.2);
      }

      .why-section .section-subtitle {
        color: rgba(255,255,255,0.9);
      }

      .check-list {
        list-style: none;
        padding: 0;
        margin-top: 32px;
      }

      .check-list li {
        padding: 18px 0 18px 50px;
        position: relative;
        font-size: 18px;
        line-height: 1.6;
        color: rgba(255,255,255,0.95);
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }

      .check-list li:last-child {
        border-bottom: none;
      }

      .check-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        background: var(--accent);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 16px;
      }

      /* Areas Section */
      .areas-section {
        padding: 88px 0;
        background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
        border-top: 1px solid rgba(223, 223, 223, 0.5);
      }

      .areas-section::before {
        content: '';
        position: absolute;
        top: -20%;
        right: -10%;
        width: 520px;
        height: 520px;
        background: radial-gradient(circle, rgba(47, 151, 193, 0.10) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
      }

      .areas-section::after {
        content: '';
        position: absolute;
        bottom: -25%;
        left: -8%;
        width: 480px;
        height: 480px;
        background: radial-gradient(circle, rgba(31, 3, 34, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
      }

      .areas-section .container {
        position: relative;
        z-index: 1;
      }

      .areas-section .section-title {
        margin-bottom: 10px;
      }

      .areas-section p {
        max-width: 620px;
        color: var(--secondary);
        font-size: 17px;
        line-height: 1.7;
      }

      .areas-section h3 {
        font-size: 18px;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--primary);
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
      }

      .areas-section h3::after {
        content: '';
        height: 3px;
        flex: 1;
        background: linear-gradient(90deg, var(--accent) 0%, rgba(47, 151, 193, 0.3) 50%, transparent 100%);
        border-radius: 2px;
      }

      .map-container {
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(0,0,0,0.12);
        margin-top: 24px;
        border: 1px solid var(--border);
        background: linear-gradient(145deg, rgba(47, 151, 193, 0.10), rgba(255, 255, 255, 0.8));
        padding: 8px;
      }

      .map-container iframe {
        width: 100%;
        height: 400px;
        border: 0;
        border-radius: 18px;
        display: block;
      }

      .location-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 16px;
        margin: 32px 0;
      }

      .location-item {
        background: linear-gradient(135deg, #ffffff 0%, #f5f8fc 100%);
        padding: 18px 24px;
        border-radius: 12px;
        text-align: center;
        font-weight: 600;
        font-size: 15px;
        color: var(--primary);
        border: 2px solid #e1e8f0;
        box-shadow: 0 4px 12px rgba(31, 3, 34, 0.08);
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
      }

      .location-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(47, 151, 193, 0.1), transparent);
        transition: left 0.5s ease;
      }

      .location-item:hover::before {
        left: 100%;
      }

      .location-item:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: linear-gradient(135deg, #ffffff 0%, #e8f4f8 100%);
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 12px 28px rgba(47, 151, 193, 0.22);
      }

      a.location-item {
        text-decoration: none;
        display: block;
      }

      a.location-item:active {
        transform: translateY(-2px) scale(0.98);
      }

      /* CTA Section */
      .cta-section {
        padding: 84px 0;
        background: var(--gradient-accent);
        color: white;
        position: relative;
        overflow: hidden;
      }

      .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
          url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1.5" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>'),
          repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(255,255,255,0.03) 100px,
            rgba(255,255,255,0.03) 200px
          );
        opacity: 0.6;
        animation: patternSlide 20s linear infinite;
      }

      @keyframes patternSlide {
        0% {
          background-position: 0 0, 0 0;
        }
        100% {
          background-position: 0 0, 200px 0;
        }
      }

      .cta-section .container {
        position: relative;
        z-index: 1;
      }

      .cta-section h2 {
        color: white;
        margin-bottom: 16px;
        font-size: clamp(32px, 5vw, 48px);
      }

      .cta-section .btn-primary {
        background: white;
        color: var(--primary);
        border: 2px solid rgba(255,255,255,0.7);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
      }

      .cta-section .btn-primary:hover {
        background: var(--bg-light);
        color: var(--primary);
        transform: translateY(-3px);
      }

      /* FAQ Section */
      .faq-section {
        padding: 88px 0;
        background: var(--bg-light);
      }

      .faq-image {
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(0,0,0,0.12);
        margin-top: 24px;
      }

      .faq-image img {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
      }

      .faq-image:hover img {
        transform: scale(1.05);
      }

      .faq-item {
        background: white;
        border-radius: 18px;
        padding: 36px;
        margin-bottom: 20px;
        border: 2px solid var(--border);
        border-left: 5px solid transparent;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
      }

      .faq-item::before {
        content: 'Q';
        position: absolute;
        top: 32px;
        left: -28px;
        width: 48px;
        height: 48px;
        background: var(--gradient-accent);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 20px;
        font-family: "Crimson Pro", serif;
        opacity: 0;
        transform: scale(0.5);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      }

      .faq-item:hover {
        border-color: rgba(47, 151, 193, 0.3);
        border-left-color: var(--accent);
        box-shadow:
          0 24px 60px rgba(47, 151, 193, 0.18),
          0 0 0 1px rgba(47, 151, 193, 0.06) inset;
        transform: translateX(20px);
        padding-left: 44px;
      }

      .faq-item:hover::before {
        opacity: 1;
        transform: scale(1);
      }

      .faq-item h3 {
        font-size: 22px;
        margin-bottom: 14px;
        color: var(--text-dark);
        font-weight: 700;
      }

      .faq-item p {
        color: #374151;
        margin: 0;
        line-height: 1.8;
        font-size: 16px;
      }

      /* Testimonials */
      .testimonials-section {
        padding: 88px 0;
        background: var(--bg-white);
      }

      .testimonial-card {
        background: linear-gradient(135deg, white 0%, rgba(247, 250, 252, 1) 100%);
        border-radius: 24px;
        padding: 48px 40px;
        height: 100%;
        border: 2px solid var(--border);
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
      }

      .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 20px;
        left: 28px;
        font-size: 100px;
        font-family: "Crimson Pro", Georgia, serif;
        font-weight: 900;
        color: rgba(47, 151, 193, 0.08);
        line-height: 0.8;
        transition: all 0.5s ease;
      }

      /* Decorative corner element */
      .testimonial-card::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--accent) 0%, transparent 100%);
        opacity: 0;
        border-radius: 0 24px 0 50%;
        transition: opacity 0.5s ease;
      }

      .testimonial-card:hover {
        transform: translateY(-12px) rotate(-1deg);
        box-shadow:
          0 24px 60px rgba(47, 151, 193, 0.2),
          0 0 0 1px rgba(47, 151, 193, 0.1) inset;
        border-color: rgba(47, 151, 193, 0.4);
      }

      .testimonial-card:hover::before {
        color: rgba(47, 151, 193, 0.15);
        transform: scale(1.1) rotate(-5deg);
      }

      .testimonial-card:hover::after {
        opacity: 0.12;
      }

      .testimonial-text {
        font-style: italic;
        color: #374151;
        margin-bottom: 24px;
        line-height: 1.8;
        font-size: 16px;
        position: relative;
        z-index: 1;
      }

      .testimonial-author {
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 6px;
        font-size: 16px;
      }

      .testimonial-rating {
        color: var(--accent);
        font-size: 18px;
      }

      @media (max-width: 991px) {
        .modern-hero {
          min-height: auto;
          padding: 80px 0 60px;
        }
        .hero-content {
          padding: 60px 0;
        }
        .hero-title {
          font-size: 42px;
          margin: 20px 0;
        }
        .hero-subtitle {
          font-size: 18px;
          margin-bottom: 32px;
        }
        .hero-buttons {
          margin-bottom: 40px;
        }
        .hero-stats-card {
          margin-top: 50px;
          padding: 36px 28px;
        }
        .hero-stat-number {
          font-size: 38px;
        }
        .hero-features {
          gap: 14px;
          margin-top: 40px;
        }

        /* MCATEE Responsive */
        .mcatee-hero {
          padding: 100px 0 60px;
        }
        .mcatee-hero .hero-main-col {
          padding-right: 15px;
          margin-bottom: 40px;
        }
        .mcatee-hero .hero-title {
          font-size: 44px;
        }
        .hero-badges-row {
          grid-template-columns: 1fr;
        }
        .request-service-form {
          padding: 32px 28px;
        }
        .expert-services-section {
          padding: 50px 0;
        }
        .section-heading {
          font-size: 36px;
          margin-bottom: 36px;
        }
        .accordion-content p {
          padding: 0 24px 24px 76px;
        }
        .about-section,
        .services-section,
        .why-section,
        .areas-section,
        .faq-section,
        .testimonials-section {
          padding: 60px 0;
        }
        .cta-section {
          padding: 50px 0;
        }
        .about-image img,
        .faq-image img {
          max-height: 350px;
        }
        .map-container iframe {
          height: 350px;
        }
      }

      @media (max-width: 767px) {
        .hero-title {
          font-size: 36px;
        }
        .hero-features {
          grid-template-columns: 1fr;
        }
        .hero-feature {
          padding: 16px 20px;
        }
        .btn-primary,
        .btn-outline {
          padding: 16px 32px;
          font-size: 15px;
          width: 100%;
          justify-content: center;
        }
        .hero-stat-number {
          font-size: 34px;
        }
        .hero-stat-item {
          padding: 22px 0;
        }

        /* MCATEE Mobile */
        .mcatee-hero {
          padding: 80px 0 50px;
        }
        .mcatee-hero .hero-title {
          font-size: 36px;
        }
        .mcatee-hero .hero-subtitle {
          font-size: 16px;
        }
        .mcatee-hero .hero-btn {
          width: 100%;
          justify-content: center;
        }
        .review-badge {
          padding: 18px;
        }
        .guarantee-badge {
          padding: 20px;
        }
        .guarantee-text {
          font-size: 12px;
        }
        .form-title {
          font-size: 24px;
        }
        .request-service-form {
          padding: 28px 24px;
        }
        .section-heading {
          font-size: 28px;
          margin-bottom: 28px;
        }
        .accordion-header {
          padding: 18px 18px;
        }
        .accordion-header h3 {
          font-size: 18px;
        }
        .accordion-content p {
          padding: 0 20px 20px 20px;
          font-size: 15px;
        }
        .accordion-icon {
          width: 36px;
          height: 36px;
        }
        .about-section,
        .services-section,
        .why-section,
        .areas-section,
        .faq-section,
        .testimonials-section {
          padding: 50px 0;
        }
        .cta-section {
          padding: 40px 0;
        }
        .about-image img,
        .faq-image img {
          max-height: 300px;
        }
        .map-container iframe {
          height: 300px;
        }
        .location-grid {
          grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
          gap: 10px;
          margin: 20px 0;
        }
        .location-item {
          font-size: 14px;
          padding: 12px 14px;
        }
      }

      /* Override Global Theme Colors - Replace Green/Orange with Blue */
      /* Footer Styles */
      .rs-footer {
        background: var(--primary) !important;
        color: rgba(255, 255, 255, 0.9);
      }

      .rs-footer .footer-title {
        color: var(--bg-white) !important;
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 25px;
      }

      .rs-footer .textwidget,
      .rs-footer .widget-desc {
        color: rgba(255, 255, 255, 0.8) !important;
      }

      .rs-footer .address-widget li {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 15px;
      }

      .rs-footer .address-widget li i {
        color: var(--accent) !important;
        background: rgba(47, 151, 193, 0.15) !important;
        border-color: rgba(47, 151, 193, 0.3) !important;
      }

      .rs-footer .address-widget li a {
        color: rgba(255, 255, 255, 0.9) !important;
        transition: color 0.3s ease;
      }

      .rs-footer .address-widget li a:hover {
        color: var(--accent) !important;
      }

      .rs-footer input[type="email"] {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 2px solid rgba(255, 255, 255, 0.2) !important;
        color: var(--bg-white) !important;
        padding: 14px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
      }

      .rs-footer input[type="email"]:focus {
        background: rgba(255, 255, 255, 0.15) !important;
        border-color: var(--accent) !important;
        outline: none;
      }

      .rs-footer input[type="submit"] {
        background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%) !important;
        border: none !important;
        color: var(--bg-white) !important;
        padding: 14px 30px;
        border-radius: 8px;
        font-weight: 700;
        transition: all 0.3s ease;
        cursor: pointer;
      }

      .rs-footer input[type="submit"]:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(47, 151, 193, 0.5);
      }

      .rs-footer .footer-social li a {
        background: rgba(255, 255, 255, 0.1) !important;
        color: var(--bg-white) !important;
        border-color: rgba(255, 255, 255, 0.2) !important;
        transition: all 0.3s ease;
      }

      .rs-footer .footer-social li a:hover {
        background: var(--accent) !important;
        border-color: var(--accent) !important;
        transform: translateY(-3px);
      }

      .rs-footer .footer-bottom {
        background: rgba(0, 0, 0, 0.2) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .rs-footer .copyright,
      .rs-footer .copyright p {
        color: rgba(255, 255, 255, 0.7) !important;
      }

      .rs-footer .copyright a {
        color: var(--accent) !important;
        transition: color 0.3s ease;
      }

      .rs-footer .copyright a:hover {
        color: var(--accent-light) !important;
      }

      /* Scroll to Top Button */
      #scrollUp {
        background: var(--gradient-accent) !important;
        border: none !important;
        box-shadow: 0 8px 25px rgba(47, 151, 193, 0.45);
        transition: all 0.3s ease;
      }

      #scrollUp:hover {
        background: linear-gradient(135deg, var(--accent-hover) 0%, #1a5f7a 100%) !important;
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(47, 151, 193, 0.6);
      }

      #scrollUp a {
        color: var(--bg-white) !important;
      }

      /* Header/Menu Styles */
      .rs-header.header-transparent {
        background: transparent;
      }

      .menu-sticky.sticky {
        background: var(--bg-white) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      }

      .rs-menu ul.nav-menu > li > a {
        color: var(--bg-white);
        font-weight: 600;
        transition: color 0.3s ease;
      }

      .menu-sticky.sticky .rs-menu ul.nav-menu > li > a {
        color: var(--text-dark) !important;
      }

      .rs-menu ul.nav-menu > li > a:hover,
      .rs-menu ul.nav-menu > li.current-menu-item > a {
        color: var(--accent) !important;
      }

      .expand-btn-inner .btn-quote a {
        background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%) !important;
        color: var(--bg-white) !important;
        border: none !important;
        padding: 14px 28px;
        border-radius: 8px;
        font-weight: 700;
        transition: all 0.3s ease;
      }

      .expand-btn-inner .btn-quote a:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(47, 151, 193, 0.45);
        background: linear-gradient(135deg, var(--accent-hover) 0%, #1a5f7a 100%) !important;
      }

      .nav-expander .dot-hum {
        background: var(--bg-white);
      }

      .menu-sticky.sticky .nav-expander .dot-hum {
        background: var(--accent) !important;
      }

      /* Mobile Menu */
      .mobile-navbar-menu {
        background: var(--primary) !important;
      }

      .mobile-navbar-menu .nav-menu li a {
        color: rgba(255, 255, 255, 0.9) !important;
        border-bottom-color: rgba(255, 255, 255, 0.1) !important;
      }

      .mobile-navbar-menu .nav-menu li a:hover {
        color: var(--accent) !important;
      }

      /* Override any orange/green classes globally */
      .orange-color,
      .green-color {
        background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%) !important;
      }

      .home-coral-color .readon.view.orange {
        background: var(--gradient-accent) !important;
        border-color: var(--accent) !important;
      }

      .home-coral-color .readon.view.orange:hover {
        background: linear-gradient(135deg, var(--accent-hover) 0%, #1a5f7a 100%) !important;
        border-color: var(--accent-hover) !important;
      }

/* source: city_template_1/about-us.php */
/* Modern About Us Page - Distinctive Design */
:root {
  /* Midnight Violet - Primary Dark */
  --primary: #1f0322;
  --primary-light: #3d0b42;

  /* Blue Green - Accent/CTA */
  --accent: #2f97c1;
  --accent-hover: #237a9a;
  --accent-light: #4db5d8;

  /* Blue Slate - Secondary */
  --secondary: #587291;
  --secondary-light: #6e8aab;

  /* Alabaster Grey - Neutral */
  --alabaster: #dfdfdf;

  /* Text Colors */
  --text-dark: #1f0322;
  --text-gray: #587291;
  --text-light: #ffffff;

  /* Backgrounds */
  --bg-light: #f5f6f8;
  --bg-white: #ffffff;
  --border: #dfdfdf;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1f0322 0%, #3d0b42 100%);
  --gradient-accent: linear-gradient(135deg, #2f97c1 0%, #237a9a 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
}

h1, h2, h3, h4, h5 {
  font-family: "Crimson Pro", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-title, .sec-title4 .title {
  font-family: "Crimson Pro", Georgia, serif;
  font-weight: 900;
}

/* Modern Breadcrumbs */
.rs-breadcrumbs {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  overflow: hidden;
}

.rs-breadcrumbs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(47, 151, 193, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(88, 114, 145, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.breadcrumbs-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--bg-white);
  margin-bottom: 15px;
  line-height: 1.2;
}

.breadcrumbs-inner .description p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin: 0;
}

/* About Section */
.rs-about {
  padding: 50px 0;
  background: var(--bg-white);
}

.about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(31, 3, 34, 0.15);
}

.about-img img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.sec-title4 {
  margin-bottom: 30px;
}

.title-img {
  margin-bottom: 15px;
}

.title-img img {
  height: 3px;
  width: 60px;
}

.sub-text {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.sec-title4 .title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 15px;
}

.description {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.65;
}

.description p {
  margin-bottom: 8px;
}

/* Compact about description - limit height and hide headings */
.sec-title4 .description {
  max-height: 120px;
  overflow: hidden;
  position: relative;
}

.sec-title4 .description h2,
.sec-title4 .description h3,
.sec-title4 .description h4,
.sec-title4 .description h5 {
  display: none;
}

.sec-title4 .description ul {
  display: none;
}

.sec-title4 .description::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(transparent, var(--bg-white));
  pointer-events: none;
}

/* Services Cards */
.rs-services.services-style8 .services-item {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  height: 100%;
}

.rs-services.services-style8 .services-item:hover,
.rs-services.services-style8 .services-item.active {
  background: var(--bg-white);
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(47, 151, 193, 0.18);
  transform: translateY(-5px);
}

.services-title h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.services-txt {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Counter Section */
.rs-counter {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.rs-counter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(47, 151, 193, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(88, 114, 145, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.rs-counter-list {
  position: relative;
  z-index: 2;
}

.counter-text {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.counter-text:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.counter-icon {
  margin-bottom: 20px;
}

.counter-icon img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
}

.counter-number {
  color: var(--bg-white);
}

.counter-number .rs-count {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter-number .prefix {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bg-white);
  margin-left: 5px;
}

.counter-number h5 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 10px;
}

/* Why Choose Section */
.rs-choose {
  padding: 80px 0;
  background: var(--bg-light);
}

.choose-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(31, 3, 34, 0.15);
}

.choose-img img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.choose-img:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
  .rs-breadcrumbs {
    padding: 80px 0;
  }

  .rs-about,
  .rs-counter,
  .rs-choose {
    padding: 60px 0;
  }

  .about-img img,
  .choose-img img {
    max-height: 400px;
  }

  .col-lg-6.pr-71,
  .col-lg-6.pr-65 {
    padding-right: 15px !important;
  }
}

@media (max-width: 767px) {
  .page-title {
    font-size: 2rem;
  }

  .counter-number .rs-count {
    font-size: 2.5rem;
  }

  .counter-number .prefix {
    font-size: 2rem;
  }
}

/* Override Global Theme Colors */
.rs-footer {
  background: var(--primary) !important;
}

.rs-footer .address-widget li i,
.rs-footer .footer-social li a:hover {
  background: var(--accent) !important;
  color: var(--bg-white) !important;
}

.rs-footer input[type="submit"],
.expand-btn-inner .btn-quote a,
#scrollUp {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%) !important;
}

.rs-menu ul.nav-menu > li > a:hover,
.rs-menu ul.nav-menu > li.current-menu-item > a {
  color: var(--accent) !important;
}

.orange-color,
.green-color {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%) !important;
}

/* source: city_template_1/contact-us.php */
/* Modern Contact Page - Distinctive Design */
:root {
  /* Midnight Violet - Primary Dark */
  --primary: #1f0322;
  --primary-light: #3d0b42;

  /* Blue Green - Accent/CTA */
  --accent: #2f97c1;
  --accent-hover: #237a9a;
  --accent-light: #4db5d8;

  /* Blue Slate - Secondary */
  --secondary: #587291;
  --secondary-light: #6e8aab;

  /* Alabaster Grey - Neutral */
  --alabaster: #dfdfdf;

  /* Text Colors */
  --text-dark: #1f0322;
  --text-gray: #587291;
  --text-light: #ffffff;

  /* Backgrounds */
  --bg-light: #f5f6f8;
  --bg-white: #ffffff;
  --border: #dfdfdf;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1f0322 0%, #3d0b42 100%);
  --gradient-accent: linear-gradient(135deg, #2f97c1 0%, #237a9a 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
}

h1, h2, h3, h4, h5 {
  font-family: "Crimson Pro", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-title, .sec-title2 .title {
  font-family: "Crimson Pro", Georgia, serif;
  font-weight: 900;
}

/* Modern Breadcrumbs */
.rs-breadcrumbs {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  overflow: hidden;
}

.rs-breadcrumbs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(47, 151, 193, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(88, 114, 145, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.breadcrumbs-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--bg-white);
  margin-bottom: 15px;
  line-height: 1.2;
}

.breadcrumbs-inner .description p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin: 0;
}

/* Contact Section */
.rs-contact {
  padding: 80px 0;
  background: var(--bg-light);
}

.rs-contact-box {
  background: var(--bg-white);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(31, 3, 34, 0.1);
  border: 2px solid var(--border);
  height: 100%;
}

.sec-title2 {
  margin-bottom: 40px;
}

.brush-content .sub-text {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.sec-title2 .title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--bg-light);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.address-item:hover {
  background: var(--bg-white);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
  transform: translateX(5px);
}

.address-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.address-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.address-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.address-content .label {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.125rem;
}

.address-content .des {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
}

/* Map Container */
.col-lg-7 iframe {
  width: 100%;
  height: 600px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(31, 3, 34, 0.1);
  border: 2px solid var(--border);
}

/* Responsive */
@media (max-width: 991px) {
  .rs-breadcrumbs {
    padding: 80px 0;
  }

  .rs-contact {
    padding: 60px 0;
  }

  .rs-contact-box {
    padding: 40px 30px;
    margin-bottom: 40px;
  }

  .col-lg-7.pl-50 {
    padding-left: 15px !important;
  }

  .col-lg-7 iframe {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .page-title {
    font-size: 2rem;
  }

  .rs-contact-box {
    padding: 30px 20px;
  }

  .address-item {
    padding: 20px;
  }

  .address-icon {
    width: 50px;
    height: 50px;
  }

  .address-icon img {
    width: 24px;
    height: 24px;
  }

  .col-lg-7 iframe {
    height: 350px;
  }
}

/* Override Global Theme Colors */
.rs-footer {
  background: var(--primary) !important;
}

.rs-footer .address-widget li i,
.rs-footer .footer-social li a:hover {
  background: var(--accent) !important;
  color: var(--bg-white) !important;
}

.rs-footer input[type="submit"],
.expand-btn-inner .btn-quote a,
#scrollUp {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%) !important;
}

.rs-menu ul.nav-menu > li > a:hover,
.rs-menu ul.nav-menu > li.current-menu-item > a {
  color: var(--accent) !important;
}

.orange-color,
.green-color {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%) !important;
}

/* source: city_template_1/services/services.php */
/* Modern Services Page - Distinctive Design */
:root {
  --primary: #1f0322;
  --primary-light: #3d0b42;
  --accent: #2f97c1;
  --accent-hover: #237a9a;
  --accent-light: #4db5d8;
  --secondary: #587291;
  --secondary-light: #6e8aab;
  --alabaster: #dfdfdf;
  --text-dark: #1f0322;
  --text-gray: #587291;
  --text-light: #ffffff;
  --bg-light: #f5f6f8;
  --bg-white: #ffffff;
  --border: #dfdfdf;
  --gradient-primary: linear-gradient(135deg, #1f0322 0%, #3d0b42 100%);
  --gradient-accent: linear-gradient(135deg, #2f97c1 0%, #237a9a 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
}

h1, h2, h3, h4, h5 {
  font-family: "Crimson Pro", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-title {
  font-family: "Crimson Pro", Georgia, serif;
  font-weight: 900;
}

/* Modern Breadcrumbs */
.rs-breadcrumbs {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  overflow: hidden;
}

.rs-breadcrumbs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(47, 151, 193, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(47, 151, 193, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.breadcrumbs-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--bg-white);
  margin-bottom: 15px;
  line-height: 1.2;
}

.breadcrumbs-inner .description p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin: 0;
}

/* Services Section */
.rs-services {
  padding: 80px 0;
  background: var(--bg-light);
}

.rs-services h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 50px;
}

.services-item {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.services-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #60a5fa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.services-item:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(47, 151, 193, 0.2);
  transform: translateY(-8px);
}

.services-item:hover::before {
  transform: scaleX(1);
}

.services-content {
  position: relative;
  z-index: 2;
}

.services-content .title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.services-content .title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.services-content .title a:hover {
  color: var(--accent);
}

.services-content .description {
  color: var(--text-gray);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.services-btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-btn a:hover {
  color: var(--accent-hover);
  gap: 12px;
}

.services-btn i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.services-btn a:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
  .rs-breadcrumbs {
    padding: 80px 0;
  }

  .rs-services {
    padding: 60px 0;
  }

  .services-item {
    padding: 35px 25px;
  }
}

@media (max-width: 767px) {
  .page-title {
    font-size: 2rem;
  }

  .rs-services h2 {
    font-size: 1.75rem;
    margin-bottom: 35px;
  }

  .services-content .title {
    font-size: 1.25rem;
  }
}

/* Override Global Theme Colors */
.rs-footer {
  background: var(--primary) !important;
}

.rs-footer .address-widget li i,
.rs-footer .footer-social li a:hover {
  background: var(--accent) !important;
  color: var(--bg-white) !important;
}

.rs-footer input[type="submit"],
.expand-btn-inner .btn-quote a,
#scrollUp {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%) !important;
}

.rs-menu ul.nav-menu > li > a:hover,
.rs-menu ul.nav-menu > li.current-menu-item > a {
  color: var(--accent) !important;
}

.orange-color,
.green-color {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%) !important;
}

/* source: city_template_1/services/single-service.php */
/* Modern Single Service Page - Distinctive Design */
:root {
  --primary: #1f0322;
  --primary-light: #3d0b42;
  --accent: #2f97c1;
  --accent-hover: #237a9a;
  --accent-light: #4db5d8;
  --secondary: #587291;
  --secondary-light: #6e8aab;
  --alabaster: #dfdfdf;
  --text-dark: #1f0322;
  --text-gray: #587291;
  --text-light: #ffffff;
  --bg-light: #f5f6f8;
  --bg-white: #ffffff;
  --border: #dfdfdf;
  --gradient-primary: linear-gradient(135deg, #1f0322 0%, #3d0b42 100%);
  --gradient-accent: linear-gradient(135deg, #2f97c1 0%, #237a9a 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
}

h1, h2, h3, h4, h5 {
  font-family: "Crimson Pro", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.title {
  font-family: "Crimson Pro", Georgia, serif;
  font-weight: 900;
}

/* Modern Banner */
.rs-banner {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.rs-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(47, 151, 193, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(47, 151, 193, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-content .sub-title {
  display: inline-block;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
}

.shape-img {
  display: inline-block;
  margin-left: 10px;
}

.shape-img img {
  height: 3px;
  width: 50px;
}

.banner-content .title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--bg-white);
  line-height: 1.2;
  margin-bottom: 25px;
}

.banner-content .title span {
  background: linear-gradient(135deg, #60a5fa 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner-content .description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 600px;
}

.btn-part {
  margin-top: 35px;
}

.readon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--bg-white);
  padding: 18px 40px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(47, 151, 193, 0.4);
  position: relative;
  overflow: hidden;
}

.readon::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;
}

.readon:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(47, 151, 193, 0.5);
  color: var(--bg-white);
}

.readon:hover::before {
  left: 100%;
}

.readon i {
  font-size: 1.25rem;
}

/* About Section */
.rs-about {
  padding: 50px 0;
  background: var(--bg-white);
}

.about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
}

.about-img img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.sec-title4 {
  margin-bottom: 30px;
}

.title-img {
  margin-bottom: 15px;
}

.title-img img {
  height: 3px;
  width: 60px;
}

.sec-title4 .title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

.description {
  color: var(--text-gray);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.description p {
  margin-bottom: 15px;
}

/* Services Section */
.rs-services {
  padding: 80px 0;
  background: var(--bg-light);
}

.rs-services h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 50px;
}

.services-item {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.services-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #60a5fa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.services-item:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(47, 151, 193, 0.2);
  transform: translateY(-8px);
}

.services-item:hover::before {
  transform: scaleX(1);
}

.services-content {
  position: relative;
  z-index: 2;
}

.services-content .title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.services-content .title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.services-content .title a:hover {
  color: var(--accent);
}

.services-content .description {
  color: var(--text-gray);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.services-btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-btn a:hover {
  color: var(--accent-hover);
  gap: 12px;
}

.services-btn i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.services-btn a:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
  .rs-banner {
    padding: 80px 0 60px;
  }

  .rs-about,
  .rs-services {
    padding: 60px 0;
  }

  .about-img img {
    max-height: 400px;
  }

  .services-item {
    padding: 35px 25px;
  }

  .col-lg-6.pr-71 {
    padding-right: 15px !important;
  }
}

@media (max-width: 767px) {
  .banner-content .title {
    font-size: 2rem;
  }

  .readon {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .rs-services h2 {
    font-size: 1.75rem;
    margin-bottom: 35px;
  }

  .services-content .title {
    font-size: 1.25rem;
  }
}

/* Override Global Theme Colors */
.rs-footer {
  background: var(--primary) !important;
}

.rs-footer .address-widget li i,
.rs-footer .footer-social li a:hover {
  background: var(--accent) !important;
  color: var(--bg-white) !important;
}

.rs-footer input[type="submit"],
.expand-btn-inner .btn-quote a,
#scrollUp {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%) !important;
}

.rs-menu ul.nav-menu > li > a:hover,
.rs-menu ul.nav-menu > li.current-menu-item > a {
  color: var(--accent) !important;
}

.orange-color,
.green-color {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%) !important;
}


/* About page hero tweaks */
.page-hero {
  min-height: 70vh;
}

.page-hero .hero-title {
  font-size: clamp(40px, 5.5vw, 64px);
}

.page-hero .hero-subtitle {
  max-width: 560px;
}

.page-hero .hero-stats-card {
  margin-top: 20px;
}

/* ============================================
   MCATEE HERO REDESIGN - Technical Luxe Design
   ============================================ */

/* Override existing hero styles for MCATEE design */
.mcatee-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 0;
}

.hero-main-col {
  padding-right: 40px;
}

.mcatee-hero .hero-title {
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.mcatee-hero .hero-subtitle {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 36px;
  max-width: 620px;
  font-weight: 400;
}

.mcatee-hero .hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-btn-primary, .hero-btn-secondary {
  background: #10b981;
  color: white;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.hero-btn-primary:hover, .hero-btn-secondary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
  color: white;
}

/* Reviews & Guarantee Badges */
.hero-badges-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.review-badge {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  max-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.review-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #4285f4 0%, #34a853 25%, #fbbc05 50%, #ea4335 75%, #4285f4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Product Sans", Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.review-content {
  flex: 1;
}

.review-label {
  font-size: 13px;
  color: #5f6368;
  font-weight: 600;
  margin-bottom: 4px;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.star-rating {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

.stars {
  color: #fbbc05;
  font-size: 16px;
  letter-spacing: 2px;
}

.review-link {
  font-size: 12px;
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.review-link:hover {
  color: #1557b0;
  text-decoration: underline;
}

.guarantee-badge {
  display: flex;
  gap: 16px;
  background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%);
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(66, 133, 244, 0.4);
  flex: 1;
  min-width: 320px;
  max-width: 480px;
  position: relative;
  overflow: hidden;
}

.guarantee-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: guaranteePulse 4s ease-in-out infinite;
}

@keyframes guaranteePulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.guarantee-check {
  flex-shrink: 0;
}

.guarantee-check svg {
  filter: drop-shadow(0 2px 8px rgba(52, 168, 83, 0.3));
}

.guarantee-content {
  position: relative;
  z-index: 1;
}

.guarantee-title {
  font-size: 15px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.guarantee-text {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

/* Request Service Form */
.hero-form-col {
  position: relative;
}

.request-service-form {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid #e5e7eb;
  position: sticky;
  top: 120px;
}

.form-icon {
  width: 48px;
  height: 48px;
  background: #10b981;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 16px;
}

.form-title {
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 24px 0;
  border-bottom: 3px solid #10b981;
  padding-bottom: 12px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  color: #1f2937;
  background: #f9fafb;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #10b981;
  background: white;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
  font-size: 14px;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
  font-family: "DM Sans", sans-serif;
}

.form-submit {
  width: 100%;
  padding: 14px 24px;
  background: #10b981;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 4px;
}

.form-submit:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.form-submit svg {
  transition: transform 0.2s ease;
}

.form-submit:hover svg {
  transform: translateX(3px);
}

/* Expert Services Accordion Section */
.expert-services-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  z-index: auto;
  margin-top: 0;
}

.expert-services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb 50%, transparent);
}

.section-heading {
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #34d399);
  border-radius: 2px;
}

.services-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 20px;
  border: 2px solid #e5e7eb;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.accordion-item:hover {
  border-color: #10b981;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.accordion-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.accordion-icon svg {
  color: #10b981;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.accordion-item.active .accordion-icon svg {
  color: white;
  transform: scale(1.1);
}

.accordion-header h3 {
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  flex: 1;
}

.accordion-toggle {
  width: 36px;
  height: 36px;
  background: #f3f4f6;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.accordion-toggle svg {
  color: #6b7280;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle {
  background: #10b981;
}

.accordion-item.active .accordion-toggle svg {
  color: white;
  transform: rotate(180deg);
}

.accordion-toggle:hover {
  background: #e5e7eb;
}

.accordion-item.active .accordion-toggle:hover {
  background: #059669;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
  max-height: 300px;
}

.accordion-content p {
  padding: 0 28px 28px 94px;
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-main-col {
    padding-right: 20px;
  }

  .request-service-form {
    top: 100px;
  }
}

@media (max-width: 991px) {
  .mcatee-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-main-col {
    padding-right: 15px;
    margin-bottom: 40px;
  }

  .mcatee-hero .hero-title {
    font-size: 42px;
  }

  .mcatee-hero .hero-subtitle {
    font-size: 17px;
  }

  .hero-badges-row {
    flex-direction: column;
  }

  .guarantee-badge {
    max-width: 100%;
  }

  .request-service-form {
    position: static;
    margin-top: 0;
  }

  .expert-services-section {
    padding: 60px 0;
  }

  .section-heading {
    font-size: 36px;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .mcatee-hero {
    padding: 80px 0 50px;
  }

  .mcatee-hero .hero-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .mcatee-hero .hero-subtitle {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    margin-bottom: 36px;
  }

  .hero-btn {
    width: 100%;
  }

  .review-badge {
    max-width: 100%;
  }

  .guarantee-badge {
    min-width: 100%;
  }

  .request-service-form {
    padding: 28px 24px;
  }

  .form-title {
    font-size: 22px;
  }

  .accordion-header {
    padding: 20px;
    gap: 14px;
  }

  .accordion-icon {
    width: 42px;
    height: 42px;
  }

  .accordion-header h3 {
    font-size: 18px;
  }

  .accordion-content p {
    padding: 0 20px 20px 76px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .mcatee-hero .hero-title {
    font-size: 32px;
  }

  .section-heading {
    font-size: 28px;
  }

  .accordion-content p {
    padding: 0 20px 20px 20px;
  }
}

/* Force clean backgrounds on all sections */
.expert-services-section,
.about-section,
.services-section,
.areas-section,
.cta-section,
.faq-section,
.testimonials-section {
  position: relative;
  z-index: auto !important;
  background-color: #ffffff !important;
  isolation: isolate;
}

.expert-services-section {
  background-color: #f9fafb !important;
}

.services-section {
  background-color: #f5f6f8 !important;
}

.faq-section {
  background-color: #f5f6f8 !important;
}

.about-section,
.areas-section,
.testimonials-section {
  background-image:
    radial-gradient(rgba(47, 151, 193, 0.06) 1px, transparent 1px),
    radial-gradient(rgba(31, 3, 34, 0.04) 1px, transparent 1px);
  background-size: 28px 28px, 46px 46px;
  background-position: 0 0, 12px 12px;
}
