/* css/terminals.css */
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    padding-top: 80px;
}

/* Scroll indicator inside hero */
.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
}

.scroll-indicator .scroll-line {
    width: 2px;
    height: 40px;
    background: var(--white);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/Concord-Mockups/imgg77-1.jpg') center/cover no-repeat;
    background-blend-mode: overlay;
    background-color: rgba(11,31,51,0.6);
    background-attachment: fixed;
    z-index: 1;
}

.page-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0 50 L100 50 M0 60 L100 60 M0 70 L100 70" stroke="%23F47B20" stroke-width="0.2" opacity="0.1"/></svg>');
    background-size: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 2rem 6rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    color: var(--light-gray);
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-orange);
}

.breadcrumb i {
    font-size: 0.7rem;
    color: var(--accent-orange);
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--light-gray);
    max-width: 600px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: baseline;
}

.stat-value .counter {
    display: inline-block;
}

.stat-plus {
    font-size: 1.25rem;
    margin-left: 0.2rem;
    line-height: 1;
    color: var(--accent-orange);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-gray);
    letter-spacing: 0.05em;
    line-height: 1.4;
}

/* Intro Section */
.intro-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: center;
}

.intro-content {
    padding-right: 2rem;
}

.intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin: 2rem 0;
}

.intro-highlight {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, transparent 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon i {
    font-size: 2rem;
    color: var(--white);
}

.highlight-content h4 {
    font-size: 1.1rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.highlight-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.highlight-content p {
    color: #666;
    font-size: 0.9rem;
}

.intro-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(11,31,51,0.9), transparent);
    color: var(--white);
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.intro-image:hover .image-caption {
    transform: translateY(0);
}

/* Capabilities Section */
.capabilities-section {
    padding: var(--spacing-2xl) 0;
    background: var(--light-gray);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
    margin-top: 3rem;
}

.capability-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-orange), var(--ocean-blue));
    transition: height 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.capability-card:hover::before {
    height: 100%;
}

.capability-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-navy), var(--ocean-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.capability-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.capability-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--deep-navy);
}

.capability-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.capability-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-badge {
    background: var(--light-gray);
    color: var(--deep-navy);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.capability-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Products Section */
.products-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: center;
}

.products-content {
    padding-right: 2rem;
}

.products-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin: 2rem 0;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.product-category {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.product-category:hover {
    background: var(--accent-orange);
    transform: translateY(-5px);
}

.product-category:hover i,
.product-category:hover span {
    color: var(--white);
}

.product-category i {
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.product-category span {
    font-size: 0.9rem;
    color: var(--deep-navy);
    font-weight: 600;
    transition: color 0.3s ease;
}

.products-visual {
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    background: linear-gradient(135deg, var(--deep-navy), var(--ocean-blue));
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--light-gray);
    letter-spacing: 0.05em;
}

.products-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.products-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.products-image:hover img {
    transform: scale(1.05);
}

/* Terminals Slider Section */
.terminals-slider-section {
    padding: var(--spacing-2xl) 0;
    background: var(--light-gray);
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.terminal-slider {
    position: relative;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-slide {
    flex: 0 0 100%;
    position: relative;
    height: 500px;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(11,31,51,0.95), transparent);
    color: var(--white);
    transform: translateY(100px);
    transition: transform 0.4s ease;
}

.slider-slide:hover .slide-info {
    transform: translateY(0);
}

.slide-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.slide-info .location {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.slide-info .location i {
    color: var(--accent-orange);
    margin-right: 0.5rem;
}

.slide-details {
    display: flex;
    gap: 2rem;
}

.slide-details span {
    font-size: 0.9rem;
    color: var(--light-gray);
}

.slide-details span i {
    color: var(--accent-orange);
    margin-right: 0.5rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 2;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-orange);
    transform: scale(1.3);
    box-shadow: 0 0 20px var(--accent-orange);
}

/* Locations Section */
.locations-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.regions-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.75rem 2rem;
    background: var(--light-gray);
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-navy);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--accent-orange);
    color: var(--white);
}

.tab-btn:hover {
    background: var(--accent-orange);
    color: var(--white);
}

.region-panel {
    display: none;
}

.region-panel.active {
    display: block;
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--grid-gap);
}

.location-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-orange), var(--ocean-blue));
    transition: height 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.location-card:hover::before {
    height: 100%;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-header h4 {
    font-size: 1.3rem;
    color: var(--deep-navy);
}

.country {
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.location-card address {
    color: #666;
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-features span {
    font-size: 0.85rem;
    color: #666;
}

.card-features span i {
    color: var(--accent-orange);
    margin-right: 0.5rem;
}

.location-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.location-link:hover {
    gap: 1rem;
}

/* Headquarters Section */
.headquarters-section {
    margin-top: 4rem;
}

.headquarters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

.headquarter-card {
    background: linear-gradient(135deg, var(--deep-navy), var(--ocean-blue));
    color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.headquarter-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.headquarter-card i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.headquarter-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.headquarter-card address {
    font-style: normal;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

.contact-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--white);
}

/* LNG Section */
.lng-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--deep-navy) 100%);
    color: var(--white);
}

.lng-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: start;
}

.lng-content p {
    font-size: 1.1rem;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.lng-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.lng-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-gray);
}

.lng-features .feature i {
    color: var(--accent-orange);
}

.lng-projects {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-card {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateX(10px);
    border-color: var(--accent-orange);
}

.project-image {
    width: 120px;
    flex-shrink: 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    padding: 1.5rem;
}

.project-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.project-info p {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.project-link:hover {
    gap: 1rem;
}

/* Customer Section */
.customer-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.customer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: center;
}

.customer-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.customer-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.customer-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.customer-card:hover {
    background: var(--accent-orange);
    transform: translateY(-5px);
}

.customer-card:hover i,
.customer-card:hover h4,
.customer-card:hover p {
    color: var(--white);
}

.customer-card i {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.customer-card h4 {
    font-size: 1.2rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.customer-card p {
    color: #666;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

/* Products Storage Section */
.products-storage-section {
    padding: var(--spacing-2xl) 0;
    background: var(--light-gray);
}

.storage-header {
    text-align: center;
    margin-bottom: 3rem;
}

.storage-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

.storage-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.storage-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--deep-navy), var(--ocean-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.category-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.storage-category h4 {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.storage-category ul {
    list-style: none;
}

.storage-category ul li {
    color: #666;
    padding: 0.25rem 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
}

.storage-category ul li::before {
    content: '•';
    color: var(--accent-orange);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Terminal News Section */
.terminal-news-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
    margin-top: 3rem;
}

.news-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-orange), var(--ocean-blue));
    transition: height 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.news-card:hover::before {
    height: 100%;
}

.news-date {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-card h3 {
    font-size: 1.2rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.news-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.news-link:hover {
    gap: 1rem;
}

.news-cta {
    text-align: center;
    margin-top: 3rem;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-2xl) 0;
     background: linear-gradient(135deg, rgba(11, 31, 51, 0.85)), url('../assets/Concord-Mockups/imgg77-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    position: relative;
}


.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    border: 2px solid var(--accent-orange);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-orange);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--deep-navy);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .page-hero {
        min-height: 450px;
        height: 55vh;
        padding-top: 100px;
    }
    
    .page-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .capabilities-grid,
    .storage-categories {
        gap: 1.5rem;
    }
}

@media (max-width: 968px) {
    .page-hero {
        min-height: 400px;
        height: auto;
        padding-top: 120px;
        padding-bottom: 2rem;
    }
    
    .intro-grid,
    .products-grid,
    .lng-grid,
    .customer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .capabilities-grid,
    .storage-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .headquarters-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .slider-slide {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 350px;
        padding-top: 130px;
        padding-bottom: 2rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .capabilities-grid,
    .storage-categories {
        grid-template-columns: 1fr;
    }
    
    .product-categories {
        grid-template-columns: 1fr;
    }
    
    .location-cards {
        grid-template-columns: 1fr;
    }
    
    .customer-cards {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .regions-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .slider-slide {
        height: 300px;
    }
    
    .slide-info {
        padding: 1.5rem;
    }
    
    .slide-info h3 {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 320px;
        padding-top: 80px;
    }
    
    .page-hero-bg {
        background-attachment: scroll;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .intro-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .capability-icon {
        width: 60px;
        height: 60px;
    }
    
    .capability-icon i {
        font-size: 2rem;
    }
    
    .capability-card h3 {
        font-size: 1.5rem;
    }
    
    .slider-nav {
        display: none;
    }
    
    .slider-slide {
        height: 250px;
    }
    
    .slide-info {
        transform: translateY(0);
    }
    
    .project-card {
        flex-direction: column;
    }
    
    .project-image {
        width: 100%;
        height: 150px;
    }
}