h2{
    color:#0E766B;
}

h3{
    color:#0E766B;
}
.footer-top {
    background: #f5f5f5;
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    color: #0E766B;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #0E766B;
    display: block;
    margin-top: 10px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list li a {
    text-decoration: none;
    color: #d40000;
    font-weight: bold;
    position: relative;
    padding-left: 15px;
    transition: 0.3s;
}


.footer-list li a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #d40000;
}

.footer-list li a:hover {
    color: #0E766B;
    padding-left: 20px;
}

/* CONTACT INFO */

.contact-info p {
    margin-bottom: 10px;
    color: #333;
}

.contact-info a {
    text-decoration: none;
    color: #0E766B;
    font-weight: bold;
}

/* TABLET */

@media (max-width:1024px){
.footer-grid{
    gap:40px;
}
}

/* MOBILE */

@media (max-width:768px){

.footer-top{
    padding:40px 0;
}

.footer-grid{
    grid-template-columns:1fr;
    gap:30px;
}

.footer-column{
    border-bottom:1px solid #ddd;
    padding-bottom:20px;
}

.footer-column:last-child{
    border-bottom:none;
}

.footer-title{
    font-size:18px;
}

.footer-list li{
    margin-bottom:10px;
}

.contact-info p{
    font-size:14px;
}

}

/* ===== AREA SERVICES ===== */

.area-services {
    padding: 80px 0;
    background: #f5f5f5;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.area-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* IMAGE */

.area-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */

.area-content {
    padding: 20px;
}

.area-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.area-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid #0E766B;
    color: #0E766B;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.read-more:hover {
    background: #0E766B;
    color: #fff;
}

/* TABLET */

@media (max-width:1024px){
.area-grid{
    grid-template-columns: repeat(2, 1fr);
}
}

/* MOBILE */

@media (max-width:768px){

.area-services{
    padding:40px 0;
}

.area-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.area-image{
    height:180px;
}

.area-content{
    padding:15px;
}

.area-content h3{
    font-size:16px;
}

.area-content p{
    font-size:13px;
}

.read-more{
    padding:6px 12px;
    font-size:13px;
}

}

/* ===== IMAGE POPUP ===== */

.image-modal{
    display:none;
    position:fixed;
    z-index:9999;
    padding-top:60px;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    text-align:center;
}

.modal-content{
    max-width:90%;
    max-height:80vh;
    border-radius:8px;
    animation: zoom 0.3s;
}

.close-btn{
    position:absolute;
    top:20px;
    right:40px;
    color:#fff;
    font-size:40px;
    font-weight:bold;
    cursor:pointer;
}

@keyframes zoom{
from{transform:scale(0.8);opacity:0;}
to{transform:scale(1);opacity:1;}
}