/* ========================================
   تنظیمات کلی فاصله بین بخش‌ها
======================================== */
.section-spacing {
    padding: 75px 0;
}
html,
body {
    overflow-x: hidden;
}
header {
    position: relative;
    z-index: 100;
}
/* ========================================
   بنر اصلی
======================================== */
.oilgas-hero {
    position: relative;
    width: 100vw;

    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    

    height: 100vh;
    min-height: 100vh;

    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 130px 20px 80px;
    overflow: hidden;

    color: #fff;
    text-align: center;
}

.oilgas-hero > img {
   position: absolute;
    inset: 0;
    z-index: 0;

    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.oilgas-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    
    z-index: 1;
}

.oilgas-hero .container {
    position: relative;
    z-index: 2;
}

/* محتوای روی تصویر */
.oilgas-hero .container,
.oilgas-hero-content {
    position: relative;
    z-index: 2;
}

.oilgas-hero-content p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    line-height: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

/* ========================================
   تیتر بخش‌ها
======================================== */
.section-header {
    margin-bottom: 28px;
}

.section-subtitle {
    display: inline-block;
    margin-bottom: 10px;
    color: #1686c6;
    font-size: 0.9rem;
    font-weight: 700;
}

.section-title {
    margin: 0;
    color: #17334a;
    font-size: clamp(1.55rem, 2.6vw, 2.25rem);
    font-weight: 800;
    line-height: 1.5;
}

/* ========================================
   بخش نظر ما
======================================== */
.oilgas-viewpoint-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
    gap: 42px;
    align-items: center;
}

.oilgas-side-content {
    min-width: 0;
}

.oilgas-opinion-container,
.oilgas-opinion-row { /* نام کلاسی که دو ستون در آن قرار دارند */
    display: flex;
    align-items: stretch; /* مهم: باعث می‌شود هر دو ستون هم‌ارتفاع شوند */
    gap: 24px;
}

/* ۲. ستون نگهدارنده عکس */
.oilgas-side-image {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ۳. کادر عکس */
.oilgas-side-image .image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 100%; /* اجبار به پر کردن کل ارتفاع ستون */
    max-height: none; /* برداشتن محدودیت ارتفاع */
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
    background-color: #f1f5f9;
}

/* ۴. خود تصویر */
.oilgas-side-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* پر کردن کامل بدون تغییر نسبت تصویر */
    object-position: center; /* قرارگیری در مرکز کادر */
    transition: transform 0.45s ease;
}

/* ========================================
   باکس متن
======================================== */
.text-box {
    padding: 28px;
    border: 1px solid #e6edf3;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
}

.text-box p {
    margin: 0 0 15px;
    color: #52616f;
    font-size: 0.98rem;
    line-height: 2.05;
}

.text-box p:last-child {
    margin-bottom: 0;
}

/* ========================================
   کارت‌های محتوایی
======================================== */
.oilgas-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.oilgas-card {
    padding: 20px 18px;
    border: 1px solid #e5edf4;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.055);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.oilgas-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.card-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 13px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #eaf5fc;
    color: #1973a7;
    font-size: 0.76rem;
    font-weight: 700;
}

.oilgas-card h3 {
    margin: 0 0 10px;
    color: #24384a;
    font-size: 1.05rem;
    font-weight: 800;
}

.oilgas-card p {
    margin: 0;
    color: #5d6c79;
    font-size: 0.9rem;
    line-height: 1.9;
}

/* ========================================
   کارت‌های پروژه
======================================== */
.oilgas-projects {
    background: #f7fafc;
}

.oilgas-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

/* کارت اصلی پروژه */
.project-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid #e3ebf1;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.075);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.13);
}

/* عکس ابتدا قرار دارد */
.project-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #e8eef2;
}

.project-image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.project-card:hover .project-image-wrapper img {
    transform: scale(1.07);
}

/* محتوای زیر تصویر */
.project-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
}

/* نام پروژه */
.project-title {
    margin: 0 0 12px;
    color: #1d3447;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.65;
}

/* دسته‌بندی پروژه */
.project-category {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #edf6fb;
    color: #227aab;
    font-size: 0.8rem;
    font-weight: 700;
}

/* دکمه اطلاعات بیشتر */
.project-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: auto;
    padding: 11px 16px;
    border: 1px solid #1778ae;
    border-radius: 10px;
    background: #f7f7f7;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.project-btn:hover {
    border-color: #105f8d;
    background: #105f8d;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ========================================
   ریسپانسیو تبلت
======================================== */
@media (max-width: 1100px) {
    .oilgas-viewpoint-layout {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .oilgas-side-content .oilgas-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .section-spacing {
        padding: 60px 0;
    }

    .oilgas-viewpoint-layout {
        grid-template-columns: 1fr;
    }

    .oilgas-side-image {
        order: 2;
    }

    .oilgas-side-image .image-wrapper {
        min-height: 360px;
        max-height: 430px;
    }

    .oilgas-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* در تبلت: 2 کارت پروژه در هر ردیف */
    .oilgas-projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ========================================
   ریسپانسیو موبایل
======================================== */
@media (max-width: 768px) {
    .section-spacing {
        padding: 45px 0;
    }

    .oilgas-hero {
       height: 100vh;
    min-height: 100vh;
    margin-top: -70px;
    padding: 115px 20px 60px;
    }

    .oilgas-hero-content p {
        font-size: 0.95rem;
    }

    .text-box {
        padding: 21px 18px;
    }

    .oilgas-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .oilgas-projects-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .project-image-wrapper {
        height: 215px;
    }

    .project-content {
        padding: 19px;
    }

    .oilgas-side-image .image-wrapper {
        min-height: 290px;
    }
}

@media (max-width: 480px) {
    .oilgas-hero {
        min-height: 330px;
    }

    .hero-badge {
        padding: 7px 13px;
        font-size: 0.78rem;
    }

    .project-image-wrapper {
        height: 195px;
    }
}
