/* --- Variables & Reset --- */
:root {
    --primary: #c62828;      /* Dark Red */
    --primary-dark: #8e0000;
    --secondary: #fbc02d;    /* Yellow/Golden */
    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 15px 30px rgba(198, 40, 40, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Navigation --- */
header {
    background-color: var(--primary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Text-Only Bold Branding --- */
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.station-name {
    color: var(--white);
    font-family: var(--font-heading);
    /* Extra bold setting */
    font-weight: 900; 
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: -0.5px; /* Tighter spacing for a modern look */
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.brand-subtext {
    color: var(--secondary); /* Golden Yellow */
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 2px;
}

.logo:hover .station-name {
    color: var(--secondary);
}

/* Adjust header padding for the text-only layout */
header {
    padding: 18px 0;
}

/* Navigation Links */
.nav-list {
    display: flex;
    gap: 15px;
}

.nav-link {
    display: inline-block;
    padding: 8px 20px;
    color: var(--white);
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Hover Effects */
.nav-link:hover, .nav-link.active {
    background-color: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-weight: 600;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    height: 85vh;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.95), rgba(142, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1545657803-b0e6df27824b?q=80&w=2070&auto=format&fit=crop'); 
    /* Placeholder background image of generic petrol station texture */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
}

.hero-content {
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.brand-tag {
    background: var(--secondary);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background-color: var(--secondary);
    color: var(--text-dark);
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(251, 192, 45, 0.4);
}

/* --- General Sections --- */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--secondary);
    margin: 0 auto 15px;
}

/* --- Grids --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* --- Fuel Cards --- */
.card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border-top: 5px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.availability {
    display: inline-block;
    padding: 5px 15px;
    background: #e8f5e9;
    color: #2e7d32; /* Keeping this standard green for "Available" status only, distinct from branding */
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* --- Services --- */
.bg-light {
    background-color: var(--bg-light);
}

.service-box {
    background: var(--white);
    padding: 40px 25px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.service-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.service-box i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    background: var(--primary);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
}

/* --- Quality Section (Corporate) --- */
.quality-section {
    background: var(--white);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.quality-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.quality-text {
    flex: 2;
    min-width: 300px;
}

.quality-text h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.lead {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.quality-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.quality-list i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 3px;
}

.quality-badge {
    flex: 1;
    min-width: 250px;
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(198, 40, 40, 0.3);
    border: 5px solid var(--secondary);
}

.quality-badge i {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 15px;
    display: block;
}

.quality-badge span {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* --- Contact Section --- */
.contact-section {
    background-color: var(--primary);
    color: var(--white);
    padding-bottom: 40px;
}

.white-divider {
    background-color: var(--white);
}

.contact-section h2 {
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.owner {
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.8;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    width: 25px;
    color: var(--secondary);
    font-size: 1.2rem;
}

.info-item a {
    border-bottom: 1px dotted rgba(255,255,255,0.5);
}

.map-placeholder {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border: 2px dashed rgba(255,255,255,0.3);
}

.map-content {
    text-align: center;
}

.map-content i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.btn-outline {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* --- Footer --- */
footer {
    background: #111;
    color: #777;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Media Queries --- */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }

    .nav-list.active {
        transform: translateY(0);
    }

    .nav-link {
        display: block;
        text-align: center;
        background: rgba(0,0,0,0.1);
    }
    
    .quality-wrapper {
        flex-direction: column;
    }
    
    .quality-badge {
        width: 100%;
    }
}