        :root {
            --primary-color: #4169E1;
            --secondary-color: #FF6B35;
            --dark-color: #2C3E50;
            --light-color: #ECF0F1;
            --accent-color: #485960;
            --text-dark:#2C3E50 ;
            --text-muted: #8c8e90;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            color: #333;
            line-height: 1.6;
        }
        a {
            text-decoration: none;
            color: var(--dark-color);
        }
        /* Header Styles */
        .top-header {
            background-color: var(--light-color);
            color: var(--dark-color);
            padding: 5px 0;
            font-size: 14px;
            margin: auto;
        }

        .top-header a {
            color: white;
            text-decoration: none;
        }

        .navbar {
            background-color: white !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-weight: bold;
            font-size: 1.2rem;
            color: var(--primary-color) !important;
        }

        .navbar-nav .nav-link {
            color: var(--dark-color) !important;
            font-weight: 500;
            font-size: 0.9rem;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

         .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
            margin-top: 0;
            transition: all 0.3s ease;
        }

        .dropdown-item {
            padding: 10px 20px;
            transition: background-color 0.3s ease;
        }

        .dropdown-item:hover {
            background-color: var(--primary-color);
            color: white;
        }


        .btn-primary-custom {
            background-color: var(--primary-color);
            border: none;
            padding: 10px;
            font-size: 0.9rem;
            font-weight: 400;
            text-transform: uppercase;
            /* letter-spacing: 1px; */
            transition: all 0.3s ease;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(to right,rgba(241, 237, 237, 1), rgba(0, 0, 0, 0.5)) , url('../images/home2.jpg');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        .hero-content{
            /* background: linear-gradient(rgba(0,0,0,0.5)); */
            padding-left: 50px;

        }
        .hero-content h1 {
            font-size: 4rem;
            font-weight: 100;
            color: var(--dark-color);
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: var(--dark-color);
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .plans-container2 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            width: 100%;
         }
    .plan-card3 {
      position: relative;
      height: 400px;
      background-size: cover;
      background-position: center;
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.3s ease;
      text-decoration: none; /* remove link underline */
      display: block;
    }

    .plan-card3:hover {
      transform: scale(1.03);
    }


          .plans-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            width: 100%;
            }

    .plan-card {
      position: relative;
      height: 400px;
      background-size: cover;
      background-position: center;
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.3s ease;
      text-decoration: none; /* remove link underline */
      display: block;
    }

    .plan-card:hover {
      transform: scale(1.03);
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .overlay h2 {
      color: orange;
      font-size: 2rem;
      background: rgba(0, 0, 0, 0.3);
      padding: 16px;
      font-weight: bold;
      text-align: center;
    }

        .unlock-text {
            color: var(--primary-color);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .btn-secondary-custom {
            background-color: var(--secondary-color);
            border: none;
            padding: 15px 40px;
            font-weight: 600;
            color: white;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

         .btn-secondary-custom2 {
            border: none;
            padding: 10px 35px;
            font-weight: 600;
            color: white;
            font-size: 1.1rem;
            background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
            transition: all 0.3s ease;
        }

        .btn-secondary-custom:hover {
            background-color: #E55A2E;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }

          /* Who We Are Section */
        .who-we-are-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .who-we-are-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
            border-radius: 50%;
            opacity: 0.1;
            z-index: 1;
        }

        .who-we-are-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
            border-radius: 50%;
            opacity: 0.1;
            z-index: 1;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .section-badge i {
            margin-right: 8px;
        }

        .main-heading {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        
        }

        .main-description {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 2;
        }

        .cta-button {
            background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
            border: none;
            padding: 15px 35px;
            color: white;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
            box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);

        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
            color: white;
            text-decoration: none;
        }

        .cta-button i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover i {
            transform: translateX(5px);
        }

        /* Profile Card */
        .profile-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            text-align: center;
            position: relative;
            z-index: 2;
            transition: transform 0.3s ease;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .profile-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .profile-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .profile-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
            background-size: 50%;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.8;
        }

        .profile-title {
            color: var(--success-color);
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .profile-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }

        .profile-link {
            color: var(--success-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .profile-link:hover {
            color: #2ECC71;
            text-decoration: none;
        }

        .profile-link i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .profile-link:hover i {
            transform: translateX(3px);
        }
 /* House Plans Section */
        .house-plans-section {
            padding: 100px 0;
            background: #f8f9fa;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--gray-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Plan Cards */
        .plan-card2 {
            background: white;
            border-radius: 20px;
            padding: 0;
            height: 100%;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: none;
            overflow: hidden;
            position: relative;
        }

        .plan-card2:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        /* Plan Background with Blueprint */
        .plan-background {
            background: linear-gradient(135deg, var(--gray-dark), #34495e);
            padding: 2.5rem 2rem;
            position: relative;
            overflow: hidden;
            min-height: 450px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }


        .plan-content {
            position: relative;
            z-index: 2;
        }

        .plan-title {

            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .plan-description {
            font-size: 1rem;
            margin-bottom: 2rem;
            font-style: italic;
            line-height: 1.5;
        }

        .plan-features {
            margin-bottom: 2rem;
        }

        .plan-features h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-decoration: underline;
            text-underline-offset: 5px;
        }

        .plan-features ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .plan-features li {
            padding: 0.3rem 0;
            font-size: 0.95rem;
            position: relative;
            padding-left: 20px;
        }

        .plan-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--warning-color);
            font-weight: bold;
        }

        .plan-guarantee {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
        }

        .plan-guarantee h5 {
            color: var(--warning-color);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .plan-guarantee p {
            font-size: 0.9rem;
            margin: 0;
            font-style: italic;
        }

        .plan-cta {
            background: linear-gradient(135deg, var(--primary-color), #4dd2d0);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            text-align: center;
            box-shadow: 0 4px 15px rgba(30, 223, 223, 0.4);
        }

        .plan-cta:hover {    
            color: white;
            text-decoration: none;
        }

        .plan-cta i {
            margin-left: 8px;
            font-size: 0.9rem;
        }

        /* Special Styling for Different Plans */
        .plan-card2.featured {
            transform: scale(1.05);
        }



        /* Animation Classes */
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(50px);
        }
        /* Building Icons Background */
        .building-icons {
            position: absolute;
            top: 20%;
            right: 10%;
            opacity: 0.05;
            font-size: 8rem;
            color: var(--primary-color);
            z-index: 1;
            animation: float 6s ease-in-out infinite;
        }
        
        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="20" r="1.5" fill="white" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="80" r="2.5" fill="white" opacity="0.1"/><circle cx="10" cy="90" r="1.5" fill="white" opacity="0.1"/></svg>');
            background-size: 200px 200px;
            animation: float 20s linear infinite;
        }

        @keyframes float {
            0% { background-position: 0% 0%; }
            100% { background-position: 100% 100%; }
        }
          @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-30px);
      }
      60% {
        transform: translateY(-15px);
      }
    }
        .section-title {
            text-align: center;
            color: var(--dark-color);
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
        }

        .section-title h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Feature Cards */
        .feature-card {
            background: rgb(219, 225, 230);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            height: 100%;
            position: relative;
            transition: all 0.4s ease;
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }


        .feature-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .feature-description {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .feature-highlight {
            font-weight: 700;
            color: var(--dark-color);
        }

        /* Card Specific Styling */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        /* Animation Classes */
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .fade-in-up:nth-child(1) { animation-delay: 0.1s; }
        .fade-in-up:nth-child(2) { animation-delay: 0.2s; }
        .fade-in-up:nth-child(3) { animation-delay: 0.3s; }
        .fade-in-up:nth-child(4) { animation-delay: 0.4s; }
        .fade-in-up:nth-child(5) { animation-delay: 0.5s; }
        .fade-in-up:nth-child(6) { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .features-section {
                padding: 70px 0;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .card-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .feature-card {
                padding: 2rem 1.5rem;
            }
            
            .section-title {
                margin-bottom: 3rem;
            }
        }

        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
            
            .feature-card {
                padding: 1.5rem;
            }
            
            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        /* Hover Effects for Mobile */
        @media (hover: none) {
            .feature-card:hover {
                transform: none;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }
            
            .feature-card:hover .feature-icon {
                transform: none;
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Responsive Design */
        @media (max-width: 991.98px) {
            .main-heading {
                font-size: 2rem;
            }
              .main-description {
            font-size: 1rem;
              }
            .who-we-are-section {
                padding: 60px 0;
            }
            
            .profile-card {
                margin-top: 3rem;
            }
            
            .building-icons {
                display: none;
            }
        }


        /* Side Navigation */
          .side-nav {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            transition: transform 0.3s ease;
        }

        .side-nav.collapsed {
            transform: translateY(-50%) translateX(calc(100% - 50px));
        }

        .side-nav-item {
            display: block;
            width: 50px;
            height: 50px;
            margin-bottom: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .side-nav-item:hover {
            width: 60px;
            color: white;
            text-decoration: none;
        }

        .side-nav-whatsapp { background-color: #25D366; }
        .side-nav-call { background-color: #FF6B35; }
        .side-nav-facebook { background-color: #4267B2; }
        .side-nav-twitter { background-color: #1DA1F2; }
        .side-nav-instagram { background-color: #E4405F; }
        .side-nav-linkedin { background-color: #0077B5; }
        .side-nav-dark { background-color: #2C3E50; }

        /* Toggle button specific styles */
        .side-nav-toggle {
            cursor: pointer;
            position: relative;
        }

        .side-nav-toggle:hover {
            background-color: #34495e !important;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .side-nav {
                display: none;
            }
            
            .hero-section {
                padding-top: 100px;
            }

             .plans-container {
                    grid-template-columns: repeat(1, 1fr);
                }

                .plan-card {
                    height: 300px;
                }
        }

        /* Animation */
        .fade-in {
            animation: fadeIn 1s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Search Box */
        .search-container {
            position: relative;
        }

        .search-input {
            border: 2px solid #e9ecef;
            border-radius: 25px;
            padding: 10px 20px;
            width: 250px;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(65, 105, 225, 0.25);
        }

        /* Building Image Placeholder */
        .building-image {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            overflow: hidden;
            position: relative;
        }

        .building-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%234A5568" x="50" y="100" width="300" height="200"/><rect fill="%23718096" x="70" y="120" width="30" height="40"/><rect fill="%23718096" x="120" y="120" width="30" height="40"/><rect fill="%23718096" x="170" y="120" width="30" height="40"/><rect fill="%23718096" x="220" y="120" width="30" height="40"/><rect fill="%23718096" x="270" y="120" width="30" height="40"/><rect fill="%23A0AEC0" x="150" y="200" width="40" height="80"/><path fill="%232D3748" d="M200 100 L350 50 L350 250 L200 300 Z"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.7;
        }




          /* Contact Hero Section */
        .contact-hero {
            background: url('../images/home2.jpg');
            padding: 80px 0;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="30" r="1.5" fill="white" opacity="0.1"/><circle cx="40" cy="70" r="1" fill="white" opacity="0.1"/></svg>');
            background-size: 100px 100px;
            animation: float 20s linear infinite;
        }

        .contact-hero h1 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .contact-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        /* Contact Form Section */
        .contact-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }

        .form-control {
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
            margin-bottom: 1rem;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(65, 105, 225, 0.25);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--secondary-color);
            border: none;
            padding: 12px 30px;
            color: white;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            background: #e55a2e;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }

        /* Contact Info Card */
        .contact-info {
            background: var(--primary-color);
            color: white;
            padding: 3rem;
            border-radius: 15px;
            height: 100%;
        }

        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }

        .contact-item i {
            font-size: 1.2rem;
            margin-right: 15px;
            margin-top: 5px;
            color: var(--secondary-color);
        }

        .contact-item-content h5 {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .contact-item-content p {
            margin: 0;
            opacity: 0.9;
            line-height: 1.5;
        }

        .about-hero {
            background: #f3f3f3;
            padding: 80px 0;
        }

        .service-card, .why-card {
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            text-align: center;
        }

        .service-card i, .why-card i {
            font-size: 2rem;
            color: #28a745;
            margin-bottom: 10px;
        }

        /* Social Media Section */
        .social-section {
            padding: 80px 0;
            background: white;
            text-align: center;
        }

        .social-section h2 {
            font-size: 2rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .social-section p {
            font-size: 1.1rem;
            color: #6c757d;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .social-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .social-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 2px solid transparent;
        }

        .social-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .social-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin: 0 auto 1rem;
            position: relative;
            overflow: hidden;
        }

        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 50%;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .social-card:hover .social-icon::before {
            transform: translateX(100%);
        }

        .social-youtube { background: linear-gradient(135deg, #FF0000, #cc0000); }
        .social-pinterest { background: linear-gradient(135deg, #BD081C, #a00719); }
        .social-linkedin { background: linear-gradient(135deg, #0077B5, #005582); }
        .social-tiktok { background: linear-gradient(135deg, #000000, #333333); }
        .social-facebook { background: linear-gradient(135deg, #1877F2, #0d47a1); }

        .social-card h4 {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }

        .follow-btn {
            background: var(--secondary-color);
            border: none;
            padding: 8px 20px;
            color: white;
            font-weight: 600;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .follow-btn:hover {
            background: #e55a2e;
            transform: scale(1.05);
        }

        /* Newsletter Section */
        .newsletter-section {
            background: var(--primary-color);
            padding: 60px 0;
            color: white;
        }

        .newsletter-content {
            text-align: center;
            margin-bottom: 2rem;
        }

        .newsletter-content h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            gap: 1rem;
        }

        .newsletter-input {
            flex: 1;
            border: none;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 1rem;
        }

        .newsletter-btn {
            background: var(--secondary-color);
            border: none;
            padding: 12px 25px;
            color: white;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: #e55a2e;
        }

        /* Footer */
        .footer {
            background: var(--dark-color);
            padding: 60px 0 30px;
            color: white;
        }

        .footer-content {
            margin-bottom: 3rem;
        }

        .footer-logo {
            margin-bottom: 2rem;
        }

        .footer-logo h3 {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.5rem;
        }

        .footer-description {
            color: #bdc3c7;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .footer-section h5 {
            color: white;
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .footer-contact p {
            color: #bdc3c7;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
        }

        .footer-contact i {
            color: var(--secondary-color);
            margin-right: 10px;
            width: 20px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 2rem;
            text-align: center;
            color: #bdc3c7;
        }

        /* Customize Section */
        .customize-plan {
        padding-bottom: 80px;
        background: #f9f9f9;
        }

        .customize-plan .plan-title3 {
        font-size: 2rem;
        font-weight: 700;
        color: #222;
        margin-bottom: 20px;
        }

        .customize-plan .feature-description3 {
        font-size: 1rem;
        color: #555;
        margin-bottom: 25px;
        line-height: 1.6;
        }

        /* Video Styling */
        .video-wrapper {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0px 6px 18px rgba(0,0,0,0.15);
        }

        .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        }

        /* Animations (optional)
        .fade-in-up {
        animation: fadeInUp 1s ease-in-out;
        }

        @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
        } */


        /* House Plans Category Page Styles */

/* Category Hero Section */
.category-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 0 60px;
    position: relative;
    overflow: hidden;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: var(--dark-color);
}

.category-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.category-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.category-description {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}



/* Filter Section */
.filter-section {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0;
    white-space: nowrap;
}

.filter-select {
    border: 2px solid #e9ecef;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.9rem;
    min-width: 120px;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(65, 105, 225, 0.25);
}

.filter-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sort-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-select {
    border: 2px solid #e9ecef;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.9rem;
    min-width: 150px;
}

.view-toggle {
    display: flex;
    gap: 5px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.view-btn {
    background: white;
    border: none;
    padding: 8px 12px;
    color: var(--dark-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary-color);
    color: white;
}

.results-summary {
    color: #6c757d;
    font-size: 1rem;
}

.results-summary strong {
    color: var(--dark-color);
}

/* Plans Grid Section */
.plans-grid-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    transition: all 0.3s ease;
}

.plans-grid.list-view {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.plans-grid.list-view .plan-card-new {
    display: flex;
    flex-direction: row;
    max-width: none;
}

.plans-grid.list-view .plan-image-container {
    width: 300px;
    flex-shrink: 0;
}

.plans-grid.list-view .plan-content {
    flex: 1;
    padding: 1.5rem;
}

/* Plan Cards */
.plan-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.plan-item:nth-child(1) { animation-delay: 0.1s; }
.plan-item:nth-child(2) { animation-delay: 0.2s; }
.plan-item:nth-child(3) { animation-delay: 0.3s; }
.plan-item:nth-child(4) { animation-delay: 0.4s; }
.plan-item:nth-child(5) { animation-delay: 0.5s; }
.plan-item:nth-child(6) { animation-delay: 0.6s; }
.plan-item:nth-child(7) { animation-delay: 0.7s; }
.plan-item:nth-child(8) { animation-delay: 0.8s; }

.plan-card-new {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.plan-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.plan-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.plan-card-new:hover .plan-image {
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 0.5px;
}

.plan-badge.popular {
    background: var(--secondary-color);
    color: white;
}

.plan-badge.new {
    background: var(--primary-color);
    color: white;
}

.plan-badge.featured {
    background: #28a745;
    color: white;
}

.plan-badge.luxury {
    background: #6f42c1;
    color: white;
}

.plan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-card-new:hover .plan-overlay {
    opacity: 1;
}

.overlay-buttons {
    display: flex;
    gap: 10px;
}

.overlay-buttons .btn {
    border-radius: 25px;
    padding: 8px 15px;
    font-size: 0.9rem;
}

.plan-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.plan-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.plan-specs-row {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.spec {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.spec i {
    color: var(--secondary-color);
    margin-right: 5px;
    font-size: 0.8rem;
}

.plan-excerpt {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.plan-actions {
    margin-top: auto;
}

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Load More Button */
.load-more-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(65, 105, 225, 0.3);
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: white;
}

.why-choose-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.why-choose-content p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.advantage-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.advantage-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.advantage-item h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.advantage-item p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.why-choose-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.why-choose-image img {
    transition: transform 0.3s ease;
}

.why-choose-image:hover img {
    transform: scale(1.05);
}

/* Quick View Modal */
.quick-specs-modal {
    margin: 1.5rem 0;
}

.quick-specs-modal .spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.quick-specs-modal .spec-row:last-child {
    border-bottom: none;
}

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 2rem;
}

.modal-actions .btn {
    flex: 1;
}

    .plan-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
        }

        .plan-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
        }

        /* Main content area */
        .main-content {
            padding: 3rem 0;
        }

        /* Image gallery */
        .image-gallery {
            position: relative;
            margin-bottom: 2rem;
        }

        .main-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .thumbnail-gallery {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            overflow-x: auto;
            padding: 5px 0;
        }

        .thumbnail {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .thumbnail:hover,
        .thumbnail.active {
            opacity: 1;
            border: 2px solid var(--primary-color);
        }

        /* Plan specifications */
        .plan-specs {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .spec-item {
            text-align: center;
            padding: 1rem;
            background: var(--light-gray);
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .spec-item:hover {
            transform: translateY(-2px);
        }

        .spec-item i {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }

        .spec-value {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark-color);
            display: block;
        }

        .spec-label {
            font-size: 0.9rem;
            color: #6c757d;
        }

        /* Plan details */
        .plan-details {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }

        .detail-section {
            margin-bottom: 2rem;
        }

        .detail-section:last-child {
            margin-bottom: 0;
        }

        .detail-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .detail-title i {
            color: var(--primary-color);
        }

        .room-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .room-item {
            background: var(--light-gray);
            padding: 1rem;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .room-name {
            font-weight: 500;
            color: var(--dark-color);
        }

        .room-dimension {
            color: var(--primary-color);
            font-weight: 600;
        }

        /* Package selection */
.package-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Package card style */
.package-option {
    position: relative;
    display: block;
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

/* Hover effect */
.package-option:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(65, 105, 225, 0.1);
}

/* Add a visible custom circle checkbox */
.package-option::before {
    content: '';
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: #fff;
    transition: all 0.3s ease;
}

/* Add checkmark when selected */
.package-radio:checked + .package-option::before {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(65, 105, 225, 0.1);
}

/* Add check icon when selected */
.package-radio:checked + .package-option::after {
    content: '✔';
    position: absolute;
    top: 1.1rem;
    right: 1.4rem;
    font-size: 14px;
    color: white;
    transition: all 0.3s ease;
}

/* Highlight selected card */
.package-radio:checked + .package-option {
    border-color: var(--primary-color);
    background: rgba(65, 105, 225, 0.08);
    transform: translateY(-2px);
}



        .package-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .package-name {
            font-weight: 600;
            color: var(--dark-color);
            font-size: 1.1rem;
        }

        .package-price {
            font-weight: 700;
            color: linear-gradient(135deg, var(--primary-color), #4dd2d0);
            font-size: 1.2rem;
        }

        .package-description {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .package-features {
            list-style: none;
            padding: 0;
        }

        .package-features li {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .package-features li i {
            color: var(--secondary-color);
            font-size: 0.8rem;
        }

        .checkout-section {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
        }

        .total-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-color);
            text-align: center;
            margin-bottom: 1rem;
        }

        .btn-checkout {
            width: 100%;
            padding: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            background: linear-gradient(135deg, var(--primary-color), #4dd2d0);
            color: white;
            border: none;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .btn-checkout:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(65, 105, 225, 0.3);
        }

        .btn-checkout:disabled {
            background: #6c757d;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* Video section */
        .video-section {
            margin-top: 2rem;
        }

        .video-container {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

                /* FAQ Section */
       .faq-section {
            color: var(--dark-color);
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
            padding: 60px 0;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

       .faq-intro{
            text-align: center;
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

       .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2z'/%3e%3c/svg%3e");
            transform: scale(.7);
        }
        
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
            transform: scale(.7);
        }
        .customization-form-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
            min-height: 100vh;
        }

        .form-header {
            max-width: 700px;
            margin: 0 auto;
        }

        .form-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .form-subtitle {
            font-size: 1.125rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .commitment-notice {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #fff3cd;
            color: #856404;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .commitment-notice svg {
            flex-shrink: 0;
        }

        .modern-form {
            max-width: 900px;
            margin: 0 auto;
        }

        /* Progress Indicator */
        .progress-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }

        .progress-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .step-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #e9ecef;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1.125rem;
            transition: all 0.3s ease;
        }

        .progress-step.active .step-circle {
            background: var(--accent-color);
            color: white;
            transform: scale(1.1);
        }

        .step-label {
            font-size: 0.875rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .progress-step.active .step-label {
            color: var(--accent-color);
            font-weight: 600;
        }

        .progress-line {
            width: 80px;
            height: 2px;
            background: #e9ecef;
            margin: 0 1rem;
        }

        /* Form Cards */
        .form-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
            overflow: hidden;
        }

        .card-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
            color: white;
            padding: 2rem;
        }

        .card-header h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .card-header p {
            margin: 0;
            opacity: 0.9;
            font-size: 0.95rem;
        }

        .card-body {
            padding: 2rem;
        }

        /* Form Elements */
        .form-label {
            display: block;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .required {
            color: #e74c3c;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 2px solid #c2c3c4;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
        }

        .form-textarea {
            resize: vertical;
            font-family: inherit;
        }

        /* Radio Options */
        .radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
            flex: 1;
            min-width: 200px;
        }

        .radio-option:hover {
            border-color: var(--accent-color);
            background: #f8f9fa;
        }

        .radio-option input[type="radio"] {
            display: none;
        }

        .radio-custom {
            width: 20px;
            height: 20px;
            border: 2px solid #537ba4;
            border-radius: 50%;
            position: relative;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .radio-option input[type="radio"]:checked + .radio-custom {
            border-color: var(--accent-color);
        }

        .radio-option input[type="radio"]:checked + .radio-custom::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 10px;
            height: 10px;
            background: var(--accent-color);
            border-radius: 50%;
        }

        .radio-option input[type="radio"]:checked ~ .radio-label {
            color: var(--accent-color);
            font-weight: 600;
        }

        .radio-label {
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        /* Checkbox Options */
        .checkbox-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }

        .checkbox-option {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
        }

        .checkbox-option:hover {
            border-color: var(--accent-color);
            background: #f8f9fa;
        }

        .checkbox-option input[type="checkbox"] {
            display: none;
        }

        .checkbox-custom {
            width: 20px;
            height: 20px;
            border: 2px solid #537ba4;
            border-radius: 4px;
            position: relative;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
            background: var(--accent-color);
            border-color: var(--accent-color);
        }

        .checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 6px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .checkbox-option input[type="checkbox"]:checked ~ .checkbox-label {
            color: var(--accent-color);
            font-weight: 600;
        }

        .checkbox-label {
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        /* Commitment Box */
        .commitment-box {
            display: flex;
            gap: 1.5rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
            color: white;
            margin-bottom: 2rem;
        }

        .commitment-icon {
            flex-shrink: 0;
        }

        .commitment-icon svg {
            width: 48px;
            height: 48px;
        }

        .commitment-details h4 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .commitment-details p {
            margin: 0;
            opacity: 0.95;
            font-size: 0.9rem;
        }

        /* Payment Instructions */
        .payment-instructions {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            background: #e7f3ff;
            border-left: 4px solid var(--accent-color);
            border-radius: 6px;
            margin: 1.5rem 0;
        }

        .payment-instructions svg {
            flex-shrink: 0;
            color: var(--accent-color);
            margin-top: 2px;
        }

        .payment-instructions p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* Agreement Box */
        .agreement-box {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
        }

        .agreement-box h4 {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

        .agreement-box p {
            color: var(--text-muted);
            margin-bottom: 0.5rem;
        }

        .agreement-box ul {
            margin: 0;
            padding-left: 1.5rem;
        }

        .agreement-box li {
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        /* Form Actions */
        .form-actions {
            text-align: center;
            margin-top: 2rem;
        }

        .btn-submit {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 3rem;
            background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
        }

        .btn-submit:active {
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .form-title {
                font-size: 1.75rem;
            }
            
            .progress-indicator {
                padding: 1rem;
            }
            
            .step-circle {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .progress-line {
                width: 40px;
                margin: 0 0.5rem;
            }
            
            .step-label {
                font-size: 0.75rem;
            }
            
            .card-header,
            .card-body {
                padding: 1.5rem;
            }
            
            .radio-group {
                flex-direction: column;
            }
            
            .radio-option {
                min-width: 100%;
            }
            
            .checkbox-grid {
                grid-template-columns: 1fr;
            }
            
            .commitment-box {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .plan-title {
                font-size: 1.3rem;
            }
            .faq-title{
                font-size: 1.8rem;
            }
            .section-header h2{
                font-size: 1.8rem;
            }
            .main-image {
                height: 250px;
            }

            .specs-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .room-list {
                grid-template-columns: 1fr;
            }

            .package-selection {
                position: static;
            }
        }

        /* Animation classes */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .fade-in-up:nth-child(1) { animation-delay: 0.1s; }
        .fade-in-up:nth-child(2) { animation-delay: 0.2s; }
        .fade-in-up:nth-child(3) { animation-delay: 0.3s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
/* Responsive Design */
@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .category-title {
        font-size: 2rem;
    }
    
    .category-stats {
        gap: 2rem;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-left,
    .filter-right {
        justify-content: center;
    }
    
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .why-choose-content {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .category-hero-section {
        padding: 100px 0 40px;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
    
    .category-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .filter-left {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-specs-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .plans-grid.list-view .plan-card-new {
        flex-direction: column;
    }
    
    .plans-grid.list-view .plan-image-container {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .filter-bar {
        padding: 15px;
    }
    
    .filter-right {
        flex-direction: column;
        gap: 15px;
    }
    
    .plan-content {
        padding: 1rem;
    }
    
    .plan-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        /* Animations */
        @keyframes float {
            0% { background-position: 0% 0%; }
            100% { background-position: 100% 100%; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 2rem;
            }

            .contact-form, .contact-info {
                padding: 2rem;
            }

            .social-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .social-card {
                padding: 1.5rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .footer-content .row > div {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 576px) {
            .social-cards {
                grid-template-columns: 1fr;
            }

            .contact-section {
                padding: 40px 0;
            }

            .social-section {
                padding: 40px 0;
            }
        }
