/* ========================================
   BRITON OIL UK - Main Stylesheet
   britonoil.co.uk
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #e8431a;
  --primary-dark: #c93510;
  --primary-light: #ff6b44;
  --secondary: #1a1a2e;
  --dark: #111111;
  --darker: #0a0a0a;
  --mid-dark: #1e1e1e;
  --gray: #2d2d2d;
  --light-gray: #f5f5f5;
  --text-light: #cccccc;
  --text-muted: #888888;
  --white: #ffffff;
  --gold: #f5a623;
  --uk-red: #cf142b;
  --uk-blue: #00247d;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.75;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* ======================================================
   TOP BAR
   ====================================================== */
.top-bar {
  background: var(--dark);
  padding: 9px 0;
  font-size: 14px;
  color: var(--text-light);
  border-bottom: 2px solid var(--primary);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-info a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 14px;
}

.top-bar-info a i {
  color: var(--primary);
  font-size: 13px;
}

.top-bar-info a:hover {
  color: var(--primary);
}

.top-bar-uk {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.uk-flag {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  overflow: hidden;
  display: inline-block;
  flex-shrink: 0;
  background: url('https://upload.wikimedia.org/wikipedia/commons/a/ae/Flag_of_the_United_Kingdom.svg') center/cover no-repeat;
}

/* ======================================================
   NAVBAR
   ====================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
}

.logo-icon {
  color: var(--primary);
  font-size: 20px;
}

.logo-dot {
  color: var(--primary);
}

.logo-uk {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.close-nav {
  display: none;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  color: var(--dark);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  left: 16px;
  right: 16px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.btn-quote {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
}

.btn-quote:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 67, 26, 0.4);
}

.btn-quote::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ======================================================
   CONTAINER
   ====================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 80px 0;
}

/* ======================================================
   SECTION TITLES
   ====================================================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 600px;
  line-height: 1.75;
}

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

.text-center .section-label {
  justify-content: center;
}

.text-center .section-label::before {
  display: none;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ======================================================
   BUTTONS
   ====================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 67, 26, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 67, 26, 0.45);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
}

/* ======================================================
   HERO SECTION
   ====================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--darker);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.85) 0%, rgba(26, 6, 6, 0.85) 50%, rgba(42, 11, 11, 0.9) 100%), url('https://britonoil.com/wp-content/uploads/2024/08/1-1.jpg') center/cover no-repeat;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(232, 67, 26, 0.2) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 100px 0;
}

.hero-text {
  animation: fadeUpIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeUpIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #ff6b44 0%, #e8431a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #e8431a, transparent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  animation: underlineIn 0.8s 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes underlineIn {
  to {
    transform: scaleX(1);
  }
}

.hero-desc {
  font-size: clamp(16px, 2.5vw, 22px);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 40px auto;
  max-width: 800px;
  line-height: 1.7;
  letter-spacing: 0.2px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  border-left: 2px solid var(--primary);
  padding-left: 14px;
}

.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-num span {
  color: var(--primary);
}

.hero-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
}

.hero-image-wrap img {
  max-width: 520px;
  width: 100%;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.6));
  animation: floatUp 4s ease-in-out infinite alternate;
}

@keyframes floatUp {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-20px) rotate(1deg);
  }
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(232, 67, 26, 0.35) 0%, rgba(201, 53, 16, 0.15) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

.hero-badge-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 14px 22px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-float.badge-left {
  bottom: 15%;
  left: -30px;
  animation: floatLeft 5s ease-in-out infinite alternate 1s;
}

.hero-badge-float.badge-right {
  top: 15%;
  right: -20px;
  animation: floatRight 6s ease-in-out infinite alternate;
}

@keyframes floatLeft {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-12px);
  }
}

@keyframes floatRight {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-15px);
  }
}

.badge-icon {
  font-size: 24px;
}

.hero-badge-float span {
  display: block;
  line-height: 1.3;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 60px;
}

/* ======================================================
   BRANDS / CERTIFICATIONS BAR
   ====================================================== */
.cert-bar {
  background: var(--light-gray);
  padding: 32px 0;
  border-bottom: 1px solid #e0e0e0;
}

.cert-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.cert-label {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.cert-items {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.cert-item .cert-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
}

/* ======================================================
   PRODUCT CATEGORIES
   ====================================================== */
.categories {
  background: var(--white);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition);
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-card:hover img {
  transform: scale(1.08);
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.cat-icon {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--white);
}

.cat-name {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.cat-count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.cat-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.cat-card:hover .cat-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================================
   ABOUT SECTION
   ====================================================== */
.about {
  background: var(--light-gray);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-main img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
}

.about-img-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
}

.about-img-float img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 24px;
  left: -24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-badge-num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.about-badge-text {
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}

.about-features {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(232, 67, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.about-feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-feature-text p {
  font-size: clamp(16px, 1.5vw, 17px);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ======================================================
   STATS SECTION
   ====================================================== */
.stats-section {
  background: var(--dark);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232, 67, 26, 0.1) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 24px;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  background: linear-gradient(135deg, var(--white), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-plus {
  color: var(--primary);
}

.stat-label {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
}

.stat-divider {
  width: 32px;
  height: 2px;
  background: var(--primary);
  margin: 8px auto;
  border-radius: 2px;
}

/* ======================================================
   PRODUCTS GRID
   ====================================================== */
.products-section {
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid #f0f0f0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.product-img {
  background: var(--light-gray);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-body {
  padding: 20px;
}

.product-specs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.spec-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(232, 67, 26, 0.08);
  padding: 3px 10px;
  border-radius: 50px;
}

.product-name {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-desc {
  font-size: clamp(16px, 1.5vw, 17px);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}

.product-certif {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-btn {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.product-btn:hover {
  gap: 8px;
}

/* ======================================================
   WHY CHOOSE US
   ====================================================== */
.why-us {
  background: var(--dark);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 0 auto;
}

.why-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
  display: block;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(232, 67, 26, 0.08);
  border-color: rgba(232, 67, 26, 0.25);
}

.feature-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: rgba(232, 67, 26, 0.2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}

.feature-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-content p {
  font-size: clamp(16px, 1.5vw, 17px);
  color: var(--text-muted);
  line-height: 1.75;
}

.why-us .section-title {
  color: var(--white);
}

/* ======================================================
   TESTIMONIALS
   ====================================================== */
.testimonials {
  background: var(--light-gray);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.testi-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 22px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
}

.testi-name {
  font-weight: 700;
  font-size: 15px;
}

.testi-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* ======================================================
   CTA BANNER
   ====================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======================================================
   FOOTER
   ====================================================== */
.footer {
  background: var(--darker);
  color: var(--text-light);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}

.footer-desc {
  font-size: clamp(15px, 1.5vw, 16px);
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 15px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-links a::before {
  content: '›';
  color: var(--primary);
  font-size: 16px;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
  font-size: 15px;
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--primary);
}

.footer-bottom a:hover {
  color: var(--primary-light);
}

/* ======================================================
   PAGE HERO (inner pages)
   ====================================================== */
.page-hero {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232, 67, 26, 0.15) 0%, transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--primary);
}

.page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ======================================================
   ABOUT PAGE
   ====================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid #f0f0f0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(232, 67, 26, 0.12);
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background: rgba(232, 67, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 16px;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: var(--primary);
}

.value-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  font-size: clamp(16px, 1.5vw, 17px);
  color: var(--text-muted);
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.team-img {
  height: 200px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.08);
}

.team-body {
  padding: 20px;
}

.team-name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
}

/* ======================================================
   CONTACT PAGE
   ====================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--dark);
  color: var(--white);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(232, 67, 26, 0.2);
  border: 1px solid rgba(232, 67, 26, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-card h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-card p,
.contact-card a {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-card a:hover {
  color: var(--primary);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: #fafafa;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232, 67, 26, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.map-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 320px;
  margin-top: 48px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ======================================================
   PRODUCTS PAGE
   ====================================================== */
.products-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 16px;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
}

.filter-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid #e0e0e0;
  background: var(--white);
  color: var(--dark);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ======================================================
   ANIMATIONS
   ====================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}

/* ======================================================
   MOBILE NAV
   ====================================================== */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--white);
    padding: 0 24px;
    z-index: 9999;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    justify-content: center;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 16px;
    display: block;
    font-size: 20px;
    text-align: center;
  }

  .nav-links a.btn-quote {
    text-align: center;
    margin-top: 24px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
  }

  .nav-overlay.open {
    display: block;
  }

  .close-nav {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 22px;
    color: var(--dark);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-gray);
    transition: var(--transition);
  }

  .close-nav:hover {
    background: var(--primary);
    color: var(--white);
  }
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc,
  .hero-ctas {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-badge-float {
    display: none;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-images {
    margin-bottom: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .top-bar-info {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    padding: 40px 0;
  }
}

/* ======================================================
   FILTER BUTTONS (Products page)
   ====================================================== */
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  background: var(--white);
  color: var(--dark);
  border: 2px solid #e0e0e0;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.filter-btn i {
  font-size: 13px;
}

/* ======================================================
   MISSION / VISION GRID responsive
   ====================================================== */
@media (max-width: 768px) {
  .mv-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ======================================================
   WHY CHOOSE US (The Briton Oil Advantage)
   ====================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232, 67, 26, 0.08);
  border-color: rgba(232, 67, 26, 0.15);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(232, 67, 26, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
}

.feature-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.feature-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-cta-text {
  margin-top: 32px;
  padding-left: 20px;
  border-left: 3px solid var(--primary);
}

.why-cta-text p {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
}

.why-image {
  position: relative;
}

.why-image-inner {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-image-inner img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.why-image:hover .why-image-inner img {
  transform: scale(1.05);
}

.why-image-backdrop {
  position: absolute;
  top: 40px;
  right: -40px;
  bottom: -40px;
  left: 40px;
  background: radial-gradient(circle at 100% 100%, rgba(232, 67, 26, 0.15) 0%, transparent 60%);
  border-radius: var(--radius-xl);
  z-index: 1;
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}