/***********************************************
    ADA COMPOUND – HOME PAGE (SAFE CLASSES)
************************************************/

/* ========================================
   GENERAL RESET FOR THIS PAGE ONLY
======================================== */
.ada-home-about,
.ada-home-services,
.ada-home-products,
.ada-home-stats,
.ada-home-why {
    width: 100%;
    position: relative;
    z-index: 1;
    background: #fff;
}

/* SECTION TITLES */
.ada-home-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #1a1a1a;
}

/* ========================================
   ABOUT SECTION
======================================== */
.ada-home-about {
    padding: 90px 0;
}

.ada-home-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.ada-home-about-text h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.ada-home-about-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

.ada-home-about-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #f47537;
    font-weight: 700;
    color: #000;
    border-radius: 10px;
    text-decoration: none;
    transition: .25s;
}

.ada-home-about-btn:hover {
    background: #ffe600;
    transform: translateY(-3px);
}

.ada-home-about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

/* Responsive */
@media (max-width: 992px) {
    .ada-home-about-grid {
        grid-template-columns: 1fr;
    }
}



/* ========================================
   SERVICES
======================================== */
.ada-home-services {
    padding: 90px 0;
}

.ada-home-services-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.ada-home-service-item {
    padding: 40px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 7px 24px rgba(0,0,0,0.06);
    transition: .3s;
}

.ada-home-service-item:hover {
    transform: translateY(-6px);
}

.ada-home-service-item i {
    font-size: 58px;
    color: #f47537;
    margin-bottom: 18px;
}

.ada-home-service-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ada-home-service-item p {
    font-size: 15px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .ada-home-services-grid {
        grid-template-columns: 1fr;
    }
}



/* ========================================
   PRODUCTS
======================================== */
.ada-home-products {
    padding: 90px 0;
}

.ada-home-products-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.ada-home-product-card {
    padding: 26px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(244,117,55,0.35);
    transition: .3s;
}

.ada-home-product-card:hover {
    transform: translateY(-6px);
    border-color: #f47537;
}

.ada-home-product-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ada-home-product-card p {
    font-size: 15px;
    color: #666;
}

/* Responsive */
@media (max-width: 992px) {
    .ada-home-products-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 576px) {
    .ada-home-products-grid {
        grid-template-columns: 1fr;
    }
}



/* ========================================
   STATS
======================================== */
.ada-home-stats {
    padding: 90px 0;
}

.ada-home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.ada-home-stat-box {
    padding: 32px;
    background: #fff;
    border-radius: 14px;
    text-align: center;
    border: 2px solid rgba(244,117,55,0.35);
    transition: .3s;
}

.ada-home-stat-box:hover {
    transform: translateY(-6px);
}

.ada-home-stat-box h3 {
    font-size: 42px;
    color: #f47537;
    margin-bottom: 8px;
    font-weight: 800;
}

.ada-home-stat-box p {
    color: #555;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .ada-home-stats-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 576px) {
    .ada-home-stats-grid {
        grid-template-columns: 1fr;
    }
}



/* ========================================
   WHY ADA SECTION
======================================== */
.ada-home-why {
    padding: 90px 0;
}

.ada-home-why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.ada-home-why-card {
    padding: 32px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;
    text-align: center;
    transition: .3s;
}

.ada-home-why-card:hover {
    transform: translateY(-6px);
    border-color: #f47537;
}

.ada-home-why-card i {
    font-size: 48px;
    color: #f47537;
    margin-bottom: 18px;
}

.ada-home-why-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ada-home-why-card p {
    font-size: 15px;
    color: #666;
}

/* Responsive */
@media (max-width: 992px) {
    .ada-home-why-grid {
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width: 600px) {
    .ada-home-why-grid {
        grid-template-columns: 1fr;
    }
}
