/* Installation Page Styles */

.installation-page {
    font-family: 'Inter', sans-serif;
    color: #333;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

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

.mt-4 {
    margin-top: 2rem;
}

/* Hero Section */
.installation-hero {
    height: 60vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.installation-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.installation-hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: #76b900;
    /* Bright Green */
    color: white;
    border: 2px solid #76b900;
}

.btn-primary:hover {
    background-color: #5a9000;
    border-color: #5a9000;
}

.btn-secondary {
    background-color: #76b900;
    color: white;
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.trust-content p {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #555;
}

.trust-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 400px;
}

.trust-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.img-grid-1 {
    grid-row: 1 / span 2;
}

/* Difference Section */
.difference-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #666;
    margin-bottom: 3rem;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.diff-card {
    background: #333;
    color: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 2rem;
}

.diff-img {
    height: 200px;
    overflow: hidden;
}

.diff-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.diff-content {
    padding: 1.5rem;
}

.diff-content h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.diff-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.btn-text {
    color: white;
    border: 1px solid white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn-text:hover {
    background: white;
    color: #333;
}

/* Process Section */
.process-section {
    background-color: #f4f4f4;
    /* Light gray background */
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.process-card {
    background-color: #2c3e50;
    /* Dark Blue/Slate */
    color: white;
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s;
}

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

.process-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.process-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.benefits-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-item {
    margin-bottom: 2rem;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {

    .trust-grid,
    .difference-grid,
    .process-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .installation-hero h1,
    .cta-section h2 {
        font-size: 2.5rem;
    }
}