/* Samgas Theme Custom Stylesheet - Expanded Homepage & Services Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,500;0,600;0,700;0,800;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --samgas-primary: #E05A00;
    --samgas-primary-hover: #c44d00;
    --samgas-dark-bg: #181A1D;
    --samgas-dark-panel: #212529;
    --samgas-topbar-bg: #403E33;
    --samgas-light-bg: #F8F9FA;
    --samgas-text-main: #2D3136;
    --samgas-text-muted: #6C757D;
    --samgas-font-heading: 'Barlow Condensed', sans-serif;
    --samgas-font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--samgas-font-body);
    color: var(--samgas-text-main);
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* Headings */
h1, h2, h3, h4, h5, h6, .samgas-heading {
    font-family: var(--samgas-font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Buttons */
.btn-samgas-primary {
    background-color: var(--samgas-primary);
    color: #FFFFFF;
    font-family: var(--samgas-font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    padding: 10px 24px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn-samgas-primary:hover {
    background-color: var(--samgas-primary-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 90, 0, 0.3);
}

.btn-samgas-outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.4);
    font-family: var(--samgas-font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    padding: 8px 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-samgas-outline:hover {
    border-color: var(--samgas-primary);
    background-color: var(--samgas-primary);
    color: #FFFFFF;
}

/* Top Bar */
.samgas-topbar {
    background-color: var(--samgas-topbar-bg);
    color: #E2E4E8;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.samgas-topbar a {
    color: #E2E4E8;
    text-decoration: none;
}
.samgas-topbar a:hover {
    color: var(--samgas-primary);
}

/* Main Navbar */
.samgas-header {
    background-color: var(--samgas-dark-bg);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.samgas-brand {
    font-family: var(--samgas-font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF !important;
    text-decoration: none;
    letter-spacing: 1px;
}
.samgas-brand span {
    color: var(--samgas-primary);
}
.samgas-nav .nav-link {
    color: #E2E4E8 !important;
    font-family: var(--samgas-font-body);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    transition: color 0.2s ease;
}
.samgas-nav .nav-link:hover,
.samgas-nav .nav-link.active {
    color: var(--samgas-primary) !important;
}
.samgas-social-icons a {
    color: #A0A5B1;
    margin-left: 12px;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.samgas-social-icons a:hover {
    color: #FFFFFF;
}
.samgas-cart-btn {
    color: #FFFFFF;
    position: relative;
    font-size: 1.1rem;
    text-decoration: none;
}
.samgas-cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--samgas-primary);
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Main Hero Section */
.samgas-hero-section {
    position: relative;
    background: linear-gradient(rgba(18, 20, 24, 0.75), rgba(18, 20, 24, 0.85)), 
                url('https://images.unsplash.com/photo-1541888946425-d0fbb186a5b3?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 120px 0 100px;
    color: #FFFFFF;
}
.samgas-breadcrumb {
    font-size: 0.85rem;
    color: #CBD5E1;
    margin-bottom: 16px;
}
.samgas-breadcrumb a {
    color: #CBD5E1;
    text-decoration: none;
}
.samgas-hero-title {
    font-size: 3.8rem;
    line-height: 1.05;
    font-weight: 800;
    max-width: 850px;
    margin-bottom: 20px;
}
.samgas-hero-text {
    font-size: 1.05rem;
    color: #E2E8F0;
    max-width: 620px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Homepage Hero Feature Cards (3 Row Cards) */
.samgas-hero-features-row {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}
.samgas-hero-feature-card {
    position: relative;
    height: 190px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    overflow: hidden;
    color: #FFFFFF;
}
.samgas-hero-feature-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(136, 54, 0, 0.95) 0%, rgba(33, 37, 41, 0.8) 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.samgas-hero-feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.samgas-hero-feature-link {
    color: #FFFFFF;
    font-family: var(--samgas-font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.samgas-hero-feature-link:hover {
    color: #FFD0B0;
}

/* About Us Section */
.samgas-about-section {
    padding: 90px 0;
    background-color: #FFFFFF;
}
.samgas-stacked-images {
    position: relative;
    padding-bottom: 50px;
    padding-right: 40px;
}
.samgas-img-main {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    height: 420px;
    object-fit: cover;
}
.samgas-img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    border: 6px solid #FFFFFF;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

/* What We Do Section */
.samgas-whatwedo-section {
    padding: 85px 0;
    background-color: #F8F9FA;
}
.samgas-wwd-card {
    padding: 36px 30px;
    border-radius: 4px;
    height: 100%;
    transition: transform 0.3s ease;
}
.samgas-wwd-card:hover {
    transform: translateY(-5px);
}
.samgas-wwd-card.active-orange {
    background-color: var(--samgas-primary);
    color: #FFFFFF;
}
.samgas-wwd-card.dark-panel {
    background-color: var(--samgas-dark-panel);
    color: #FFFFFF;
}
.samgas-wwd-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}
.samgas-wwd-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.samgas-wwd-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
}
.samgas-wwd-link {
    font-family: var(--samgas-font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
}

/* Our Benefits Section */
.samgas-benefits-section {
    padding: 90px 0;
    background-color: #FFFFFF;
}
.samgas-benefit-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background-color: #F8F9FA;
    border-radius: 4px;
    border: 1px solid #E9ECEF;
}
.samgas-benefit-icon {
    width: 48px;
    height: 48px;
    background-color: var(--samgas-primary);
    color: #FFFFFF;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.samgas-benefit-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0;
}

/* Counter Stats Banner */
.samgas-counter-banner {
    position: relative;
    background: linear-gradient(rgba(18, 20, 24, 0.88), rgba(18, 20, 24, 0.92)), 
                url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    padding: 70px 0;
    color: #FFFFFF;
}
.samgas-counter-item {
    text-align: center;
}
.samgas-counter-icon {
    font-size: 2.5rem;
    color: var(--samgas-primary);
    margin-bottom: 10px;
}
.samgas-counter-num {
    font-family: var(--samgas-font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.samgas-counter-lbl {
    font-size: 0.85rem;
    font-weight: 600;
    color: #A0AEC0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Grid Section */
.samgas-services-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}
.samgas-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.samgas-section-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 0;
}
.samgas-sublabel {
    font-size: 0.85rem;
    font-family: var(--samgas-font-body);
    font-weight: 600;
    color: var(--samgas-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

/* Service Card */
.samgas-service-card {
    position: relative;
    height: 280px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
}
.samgas-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.samgas-service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 14, 18, 0.92) 0%, rgba(12, 14, 18, 0.25) 60%, rgba(0,0,0,0) 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.samgas-card-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--samgas-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.samgas-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 0;
}

/* Stats Counter Bar */
.samgas-stats-bar {
    margin-top: 50px;
    padding: 30px 40px;
    background-color: var(--samgas-light-bg);
    border-radius: 4px;
    border: 1px solid #E9ECEF;
}
.samgas-google-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}
.samgas-rating-stars {
    color: #FFB800;
    font-size: 0.85rem;
}
.samgas-reviews-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--samgas-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.samgas-stat-item {
    border-left: 1px solid #DEE2E6;
    padding-left: 24px;
}
.samgas-stat-number {
    font-family: var(--samgas-font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #111418;
    line-height: 1;
    margin-bottom: 4px;
}
.samgas-stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--samgas-text-muted);
}

/* Certificates Section */
.samgas-certificates-section {
    padding: 85px 0;
    background-color: #F8F9FA;
}
.samgas-certificate-card {
    background-color: #FFFFFF;
    border-radius: 4px;
    padding: 20px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;

}
.samgas-certificate-card img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
}

/* Vibrant Orange Marquee Ticker Bar */
.samgas-marquee-bar {
    background-color: var(--samgas-primary);
    color: #FFFFFF;
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}
.samgas-marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    font-family: var(--samgas-font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    animation: marqueeScroll 25s linear infinite;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Achievements Feature List Section */
.samgas-achievements-section {
    padding: 90px 0;
    background-color: #FFFFFF;
}
.samgas-achievements-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.samgas-achievement-item {
    background-color: #F8F9FA;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: #2D3136;
    transition: all 0.2s ease;
}
.samgas-achievement-item.active {
    background-color: var(--samgas-primary);
    color: #FFFFFF;
    border-color: var(--samgas-primary);
}

/* Gallery Section */
.samgas-gallery-section {
    padding: 85px 0;
    background-color: #F8F9FA;
}
.samgas-gallery-card {
    height: 320px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Testimonials Section */
.samgas-testimonial-section {
    position: relative;
    padding: 90px 0;
    background-color: #F4F5F7;
}
.samgas-testimonial-wrapper {
    position: relative;
    background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    border-radius: 4px;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.samgas-testimonial-box {
    background-color: var(--samgas-dark-panel);
    color: #FFFFFF;
    padding: 48px;
    max-width: 540px;
    width: 100%;
    margin-right: 40px;
    border-radius: 4px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    position: relative;
}
.samgas-stars {
    color: #FFB800;
    font-size: 1rem;
    margin-bottom: 20px;
}
.samgas-quote-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #D1D5DB;
    margin-bottom: 28px;
}
.samgas-author-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.samgas-author-details {
    display: flex;
    align-items: center;
    gap: 14px;
}
.samgas-author-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}
.samgas-author-name {
    font-family: var(--samgas-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2px;
}
.samgas-author-role {
    font-size: 0.75rem;
    color: #9CA3AF;
}
.samgas-testimonial-nav button {
    background-color: var(--samgas-primary);
    color: #FFFFFF;
    border: none;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}
.samgas-testimonial-nav button:hover {
    background-color: var(--samgas-primary-hover);
}

/* Blog & News Cards */
.samgas-blog-section {
    padding: 90px 0;
    background-color: #FFFFFF;
}
.samgas-blog-card {
    border-radius: 4px;
    overflow: hidden;
    background-color: #F8F9FA;
    border: 1px solid #E9ECEF;
    height: 100%;
    transition: transform 0.3s ease;
}
.samgas-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.samgas-blog-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}
.samgas-blog-body {
    padding: 24px;
}
.samgas-blog-meta {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--samgas-text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.samgas-blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

/* Get In Touch Contact Section */
.samgas-getintouch-section {
    padding: 90px 0;
    background-color: #F8F9FA;
}
.samgas-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.samgas-contact-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--samgas-primary);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Newsletter Section */
.samgas-newsletter-section {
    background: linear-gradient(rgba(15, 17, 21, 0.85), rgba(15, 17, 21, 0.85)),
                url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 70px 0;
    color: #FFFFFF;
}
.samgas-newsletter-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0;
}
.samgas-newsletter-form label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #CBD5E1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
}
.samgas-newsletter-input {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #FFFFFF;
    padding: 12px 16px;
    border-radius: 2px;
    width: 100%;
}
.samgas-newsletter-input::placeholder {
    color: #A0AEC0;
}
.samgas-newsletter-input:focus {
    background: rgba(255,255,255,0.2);
    border-color: var(--samgas-primary);
    color: #FFFFFF;
    outline: none;
    box-shadow: none;
}

/* Footer Section */
.samgas-footer {
    background-color: #16181B;
    color: #A0AEC0;
    padding-top: 70px;
    padding-bottom: 30px;
    font-size: 0.9rem;
}
.samgas-footer h5 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.samgas-footer a {
    color: #A0AEC0;
    text-decoration: none;
    transition: color 0.2s;
}
.samgas-footer a:hover {
    color: var(--samgas-primary);
}
.samgas-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.samgas-footer-list li {
    margin-bottom: 10px;
}
.samgas-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 50px;
    padding-top: 25px;
    font-size: 0.8rem;
}

/* Floating Sticky Action Badge */
.samgas-sticky-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    color: #FFFFFF;
    padding: 10px 18px;
    border-radius: 30px;
    font-family: var(--samgas-font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.samgas-sticky-badge:hover {
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.6);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .samgas-hero-title {
        font-size: 2.4rem;
    }
    .samgas-section-title {
        font-size: 2rem;
    }
    .samgas-testimonial-wrapper {
        justify-content: center;
    }
    .samgas-testimonial-box {
        margin-right: 0;
        max-width: 90%;
        padding: 30px;
    }
    .samgas-stacked-images {
        padding-right: 0;
        padding-bottom: 0;
        margin-top: 30px;
    }
    .samgas-img-sub {
        position: static;
        width: 100%;
        margin-top: 15px;
    }
}
