/* ==========================================================================
   Page Title Area (Consistent)
   ========================================================================== */
.page-title-area {
    background-color: var(--deep-blue); /* Or your desired background */
    padding: 2rem 0;
    text-align: center;
}

.page-title-content h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.breadcrumb {
    justify-content: center;
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--white);
    font-weight: 600;
}
 .breadcrumb-item a:hover,
.breadcrumb-item a:focus {
    text-decoration: underline;
}
/* ==========================================================================
  Gas Order Section
   ========================================================================== */
.gas-order-section {
  padding: 7.1875rem 0 4.375rem;
  background-color: var(--white);
}
 .gas-order-section h2 {
    color: var(--deep-blue);
}
.gas-order-section h6 {
    color: var(--accent-blue);
}
.gas-order-grid {
  display: grid;
  grid-template-columns: 4fr 8fr; /*  4/12 for image, 8/12 for form */
  gap: 2rem;
  align-items: start; /* Align items to the top */
}

/* Gas Info Card */
.gas-info-card {
    margin-bottom: 2rem; /* Spacing below card */
    box-shadow: var(--box-shadow-sm);
    border: none;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;         /* Use flexbox for layout */
    flex-direction: column; /* Stack image and content vertically */
    height: 100%;
}
.gas-info-image {
    position: relative; /* Needed for aspect ratio handling */
    width: 100%;
    padding-top: 100%; /* 1:1 aspect ratio (adjust as needed) */
    overflow: hidden;  /* Hide any overflowing image */
}

.gas-info-image img {
    position: absolute; /* Take image out of the flow */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio and cover the area */
    object-position: center; /* Center the image */
}
 .gas-info-content {
    padding: 1.5rem;  /* Add padding inside the content area */
    display: flex;         /* Use flexbox */
    flex-direction: column; /* Stack content vertically */
    flex-grow: 1;          /* Allow content to fill remaining space */
}

.gas-info-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
}

.gas-info-subtitle {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--accent-blue); /* Use an accent color, if desired */
}

.gas-info-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0; /* Remove default bottom margin */
    flex-grow: 1;      /* Allow description to fill remaining space */
}
/* Gas Order Form */
.gas-order-form {
    /*  No specific styles, let form elements handle layout */
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    color: var(--text-gray);
    transition: var(--transition-base);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 5px rgba(var(--accent-blue), 0.5);
}

textarea.form-control {
    height: 120px; /* Adjust height as needed */
    resize: vertical; /* Allow vertical resizing */
}

/* Required Field Indicator */
.required {
    color: var(--danger-red);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .gas-order-grid {
        grid-template-columns: 1fr; /* Single column on smaller screens */
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
}