/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    --hero-bg-image: url('../images/home-bg-1.jpg');
    background-color: #1a1a2e;
    background-image: linear-gradient(180deg, rgba(23, 30, 48, 0.28) 0%, rgba(23, 34, 53, 0.38) 43%, rgba(21, 32, 50, 0.64) 100%), var(--hero-bg-image);
    min-height: 1126px;
    padding: 220px 20px 0;
    color: #fff;
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

.hero-bg {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
}

.intro-text {
    text-align: center;
    font-size: 22.5px;
    line-height: 36px;
    max-width: 720px;
    margin: 0 auto 56px;
    color: #fff;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 106px 0 0;
    padding: 74px 0 79px;
    border-top: 2px solid rgba(255, 255, 255, 0.92);
    border-bottom: 2px solid rgba(255, 255, 255, 0.92);
}

.service-card {
    text-align: center;
    padding: 0 10px;
    background: transparent;
    border-radius: 0;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    background: transparent;
}

.service-card a {
    color: #fff;
}

.service-icon {
    width: 126px;
    height: 126px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    border-radius: 50%;
    padding: 30px;
}

.service-icon svg {
    width: 60px;
    height: 60px;
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-icon i {
    color: #fff;
    font-size: 54px;
    line-height: 1;
}

.service-card h3 {
    font-size: 18px;
    line-height: 23.4px;
    font-weight: 600;
    margin: 0;
}

.weather-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 77px 0 50px;
}

.weather-card {
    background: transparent;
    border-radius: 0;
    padding: 0 20px;
    text-align: center;
}

.weather-card + .weather-card {
    border-left: 2px solid rgba(255, 255, 255, 0.78);
}

.weather-city {
    font-size: 32px;
    line-height: 41.6px;
    font-weight: 400;
    margin-bottom: 32px;
}

.weather-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 0;
}

.weather-icon {
    width: 66px;
    height: 66px;
    margin-right: 0;
}

.weather-temp {
    min-width: 152px;
    text-align: left;
    font-size: 30px;
    line-height: 24.75px;
    font-weight: 600;
}

.weather-temp sup {
    font-size: 30px;
    line-height: 0;
}

.weather-details {
    display: flex;
    justify-content: center;
    gap: 13px;
    margin-top: 0;
}

.weather-detail {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    line-height: 24.75px;
    color: #fff;
}

.weather-detail svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ===== HOME CONTENT ===== */
.home-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.news-column h1,
.actual-column h1,
.actual-column h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #f1592a;
}

.news-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.news-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.news-item h3 a {
    color: #1a1a2e;
}

.news-item h3 a:hover {
    color: #f1592a;
}

.news-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.news-excerpt {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
}

.read-more {
    font-size: 13px;
    font-weight: 600;
    color: #f1592a;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: #f1592a;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #d94a1a;
    color: #fff;
}

.actual-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.actual-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.actual-item h3 a {
    color: #1a1a2e;
}

.actual-item h3 a:hover {
    color: #f1592a;
}

.actual-date {
    font-size: 13px;
    color: #999;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.project-card {
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.project-thumb {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.project-info {
    padding: 15px;
}

.project-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.project-info h3 a {
    color: #333;
}

.project-info h3 a:hover {
    color: #f1592a;
}

.project-link {
    font-size: 13px;
    font-weight: 600;
    color: #f1592a;
}

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .weather-section { grid-template-columns: repeat(2, 1fr); }
    .home-content { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-section { padding: 100px 15px 40px; }
    .intro-text { font-size: 16px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .service-card { padding: 20px 10px; }
    .service-icon { width: 55px; height: 55px; }
    .weather-section { grid-template-columns: 1fr 1fr; gap: 12px; }
    .weather-card { padding: 15px; }
    .weather-temp { font-size: 28px; }
    .projects-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .weather-section { grid-template-columns: 1fr; }
}
