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

:root {
    --primary-color: #FFB300; /* Lighter amber shade */
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --success: #27ae60;
    --warning: #f39c12;
    --border-light: #e9ecef;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    padding: 0;
    margin: 0;
    background-color: white;
    position: static;
    box-shadow: none;
    flex-direction: row;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu li {
    padding: 0;
    border-bottom: none;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: 0.3s;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-header, .mobile-only-phone, .close-menu {
    display: none;
}

.phone {
    color: var(--text-dark);
    font-weight: 600;
}

.cta-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #FFA000; /* Darker amber for hover states */
}

/* Highlights Section */
.highlights {
    padding: 4rem 0;
    background-color: var(--white);
    position: relative;
    z-index: 1;
}

.highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background-color: var(--bg-light);
    z-index: -1;
    border-radius: 0 0 50% 50% / 0 0 20px 20px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 107, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1);
}

.highlight-card:hover .highlight-icon svg {
    fill: white;
}

.highlight-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.highlight-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .highlights {
        padding: 3rem 0;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .highlight-card {
        padding: 1.5rem;
    }
}

/* Hero Section */
.hero {
    padding: 120px 20px 80px;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80vh;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat p {
    color: var(--text-light);
}

.hero-cta {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-cta:hover {
    background: #FFA000; /* Darker amber for hover states */
}

.hero-form {
    flex: 1;
    max-width: 400px;
}

.legal-content {
    margin-top: 10vh;
    padding: 5%;
}

.legal-section {
    margin-bottom: 15px;
}

.legal-header {
    margin-bottom: 15px;
}

.contact-form-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-form-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-contact-form .form-group {
    margin-bottom: 1rem;
}

.hero-contact-form input,
.hero-contact-form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.hero-contact-form input:focus,
.hero-contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.hero-contact-form .submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-contact-form .submit-btn:hover {
    background: #FFA000; /* Darker amber for hover states */
}

/* Banking Partners Section */
.banking-partners {
    padding: 5rem 0;
    background-color: var(--white);
}

.banking-partners h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.banking-partners .section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.partner-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border: 1px solid var(--border-light);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.partner-card img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-card:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.partners-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partner-card {
        padding: 1rem;
        min-height: 100px;
    }
    
    .partner-card img {
        max-height: 50px;
    }
}

/* Packages Section */
.packages {
    padding: 80px 20px;
    background: var(--bg-light);
}

.packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

/* Supervision Package */
.supervision-package {
    margin: 4rem auto 0;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 2px solid var(--primary-color);
    max-width: 800px;
    padding: 2rem;
}

.supervision-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.supervision-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.supervision-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.feature-item i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
    font-size: 1rem;
}

.feature-item span {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .supervision-package {
        margin: 3rem 1rem 0;
        padding: 1.5rem;
    }
    
    .supervision-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .supervision-header {
        flex-direction: row;
        align-items: center;
    }
    
    .supervision-header .package-price {
        margin-left: 1rem;
    }
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.package-price span {
    font-size: 1rem;
    color: var(--text-light);
}

.price-note {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.package-features i {
    color: var(--success);
    margin-right: 0.5rem;
}

.package-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.package-btn:hover {
    background: #FFA000; /* Darker amber for hover states */
}

/* Cost Estimation Section */
.cost-estimation {
    padding: 80px 20px;
}

.cost-estimation h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.estimation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.estimation-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.estimation-form .form-group {
    margin-bottom: 1rem;
}

.estimation-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.estimation-form input,
.estimation-form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.estimation-form input:focus,
.estimation-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.calculate-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.calculate-btn:hover {
    background: #FFA000; /* Darker amber for hover states */
}

.estimation-result {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-light);
}

.estimation-result h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.cost-breakdown {
    margin-bottom: 2rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.cost-item.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    border-bottom: none;
    border-top: 2px solid var(--primary-color);
    margin-top: 1rem;
    padding-top: 1rem;
}

.cost-note {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
}

.contact-btn {
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #2980b9;
}

/* Comparison Section */
.comparison {
    padding: 80px 20px;
}

.comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.comparison-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-column {
    flex: 1;
    justify-content: center;
}

.comparison-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.comparison-column ul {
    list-style: none;
    padding: 0;
}

.comparison-column li {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.comparison-column .fa-check-circle {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.comparison-column .fa-times-circle {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.comparison-divider {
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        var(--border-light),
        var(--border-light) 5px,
        transparent 5px,
        transparent 10px
    );
}

.projects-hero {
    margin-top: 15vh;
}

.projects-hero-content {
    margin-bottom: 20px;
}

/* Quality Info Section */
.quality-info {
    padding: 80px 20px;
}

.quality-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quality-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.quality-card:hover {
    transform: translateY(-5px);
}

.quality-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quality-icon i {
    font-size: 2rem;
    color: var(--white);
}

.quality-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.quality-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.quality-card ul {
    list-style: none;
    text-align: left;
}

.quality-card li {
    padding: 0.25rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.quality-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.client-testimonials {
    margin-top: 10vh;
    margin-bottom: 10vh;
}

/* Projects Section */
.projects {
    padding: 80px 20px;
    background: var(--bg-light);
}

.projects h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.project-features {
    margin-top: 10px;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.project-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.project-details {
    display: flex;
    gap: 1rem;
}

.project-type,
.project-package {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-type {
    background: var(--accent-color);
    color: var(--white);
}

.project-package {
    background: var(--primary-color);
    color: var(--white);
}

.projects-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-content {
    padding: 20px;
    margin-bottom: 25vh;
    margin-top: 25vh;
}

.site-title {
    text-decoration: none;
    color: inherit;
}

.view-all-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.view-all-btn:hover {
    background: #FFA000; /* Darker amber for hover states */
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

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

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.service-card li:before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: var(--bg-light);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Floor Plans Section */
.floor-plans {
    padding: 80px 20px;
}

.floor-plans h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.floor-plans > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--border-light);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.plan-info {
    padding: 1.5rem;
}

.plan-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.plan-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.plan-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.contact-form {
    display: flex;
    flex: 1;
    justify-content: center;
    margin-top: 10vh;
    margin-bottom: 20vh;
}

.contact-form .container {
    width: 100%;
    max-width: 700px; /* Increase max width as needed */
}

/* App Features Section */
.app-features {
    padding: 80px 20px;
    background: var(--bg-light);
}

.app-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.app-info {
    flex: 1;
}

.app-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.app-features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.app-features-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
}

.app-features-list i {
    color: var(--success);
    margin-right: 0.75rem;
}

.app-download {
    display: flex;
    gap: 1rem;
}

.app-mockup {
    flex: 1;
    text-align: center;
}

.app-mockup img {
    max-width: 300px;
    border-radius: 25px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

.author {
    color: var(--text-dark);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 20px 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #FFA000; /* Darker amber for hover states */
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-light);
}

.close:hover {
    color: var(--text-dark);
}

.modal h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.request-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #FFA000; /* Darker amber for hover states */
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        transition: left 0.3s ease-in-out;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 0;
        gap: 0;
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
        background-color: white;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta .phone,
    .nav-cta .cta-button {
        display: none;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
    }

    .mobile-menu-header h2 {
        color: var(--primary-color);
        font-weight: 700;
        margin: 0;
    }

    .close-menu {
        display: block;
        font-size: 2rem;
        font-weight: bold;
        cursor: pointer;
        color: var(--text-dark);
    }

    .nav-menu li {
        margin-left: 5vw;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
        background-color: white;
    }

    .nav-menu li:last-child {
        border-bottom: none;
        background-color: white;
    }

    .mobile-only-phone {
        display: block;
        padding: 1rem 1.5rem;
        margin-top: auto;
        border-top: 1px solid var(--border-light);
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 60px;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-form {
        max-width: 500px;
        width: 100%;
    }

    .contact-form1 {
        max-width: 500px;
        width: 100%;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: none;
    }

    .estimation-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .comparison-container {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .comparison-divider {
        display: none;
    }

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

    .comparison-column ul {
        text-align: left;
        display: inline-block;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-cta .phone {
        display: none;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border-light);
    }

    .mobile-menu-header h2 {
        color: var(--primary-color);
        font-weight: 700;
        margin: 0;
    }

    .close-menu {
        font-size: 2rem;
        font-weight: bold;
        cursor: pointer;
        color: var(--text-dark);
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .mobile-only-phone {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .packages h2,
    .cost-estimation h2,
    .comparison h2,
    .quality-info h2,
    .projects h2,
    .faq h2 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .package-price {
        font-size: 2rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }
}

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

.service-card,
.step-card,
.feature,
.plan-card,
.testimonial {
    animation: fadeInUp 0.6s ease-out;
}
