/*
Theme Name: GVN Group Corporate
Theme URI: https://www.gvngroup.net
Author: GVN Group
Author URI: https://www.gvngroup.net
Description: Premium corporate WordPress theme for GVN Group - a diversified international business group.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gvn-group
Domain Path: /languages
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.5
*/

/* ===== CSS RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0B1F3A;
  --navy-light: #152D4F;
  --gold: #D4AF37;
  --gold-light: #F5D77A;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --charcoal: #333333;
  --silver: #C0C0C0;
  --font-display: 'Plus Jakarta Sans', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --radius: 0.625rem;
  --radius-lg: 0.75rem;
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.07), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  h3 { font-size: 1.5rem; }
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.text-gold { color: var(--gold); }
.bg-navy { background-color: var(--navy); }
.bg-navy-light { background-color: var(--navy-light); }
.border-gold { border-color: var(--gold); }

.gold-gradient {
  background: linear-gradient(135deg, #D4AF37 0%, #F5D77A 50%, #D4AF37 100%);
}

.navy-gradient {
  background: linear-gradient(135deg, #0B1F3A 0%, #152D4F 50%, #0B1F3A 100%);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(11, 31, 58, 0.80);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(11, 31, 58, 0.95);
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-logo img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.header-logo span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}

@media (max-width: 640px) {
  .header-logo span { display: none; }
}

/* Desktop Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a,
.main-nav .dropdown-toggle {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.main-nav a:hover,
.main-nav .dropdown-toggle:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.05);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  width: 14rem;
  background: var(--navy);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.15s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}

.dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.05);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-left: 1rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 0.375rem;
  cursor: pointer;
  background: none;
  transition: all 0.2s ease;
}

.lang-switcher:hover {
  background: rgba(212,175,55,0.1);
}

.lang-switcher svg {
  width: 1rem;
  height: 1rem;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  padding: 0.5rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(212,175,55,0.1);
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  border-radius: 0.375rem;
}

.mobile-menu a:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.05);
}

.mobile-menu .sub-label {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}

.mobile-menu .sub-links a {
  padding-left: 1.5rem;
}

@media (max-width: 1024px) {
  .main-nav,
  .lang-switcher-desktop { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,31,58,0.95), rgba(11,31,58,0.80), rgba(11,31,58,0.60));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
  padding: 5rem 0 8rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 9999px;
  color: var(--gold);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-badge .pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: 3.5rem;
  color: white;
  line-height: 1.1;
}

@media (max-width: 640px) {
  .hero-title { font-size: 2.25rem; }
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

@media (min-width: 640px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.hero-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, white, transparent);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-lg);
}

.btn-gold:hover {
  background: rgba(212,175,55,0.9);
  box-shadow: var(--shadow-xl);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.4);
}

.btn-outline-gold:hover {
  background: rgba(212,175,55,0.1);
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 4rem 0;
  background: white;
}

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

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ===== SECTION HEADING ===== */
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.section-heading.light h2 {
  color: white;
}

.section-heading .gold-line {
  width: 3rem;
  height: 3px;
  background: var(--gold);
  margin: 0.75rem auto;
  border-radius: 9999px;
}

.section-heading p {
  color: var(--gray-500);
  font-size: 1.125rem;
  max-width: 40rem;
  margin: 0 auto;
}

.section-heading.light p {
  color: rgba(255,255,255,0.6);
}

/* ===== DIVISIONS SECTION ===== */
.divisions-section {
  padding: 5rem 0 7rem;
  background: var(--gray-50);
}

.divisions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .divisions-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

.division-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.division-card-image {
  position: relative;
  aspect-ratio: 2/1;
  overflow: hidden;
}

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

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

.division-card-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.8), transparent);
}

.division-card-image .info {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.division-card-image .logo-box {
  width: 2.5rem;
  height: 2.5rem;
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.division-card-image .logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.division-card-image .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(212,175,55,0.2);
  border-radius: 0.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.division-card-image .info h3 {
  font-size: 1.125rem;
  color: white;
}

.division-card-image .info .tagline {
  font-size: 0.75rem;
  color: var(--gold);
}

.division-card-body {
  padding: 1.25rem;
}

.division-card-body p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.division-card-body .learn-more {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  transition: gap 0.2s ease;
}

.division-card:hover .learn-more {
  gap: 0.5rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 5rem 0 7rem;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section .glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(60px);
}

.cta-section .glow-1 {
  top: 0;
  left: 25%;
}

.cta-section .glow-2 {
  bottom: 0;
  right: 25%;
}

.cta-section h2 {
  color: white;
  position: relative;
}

.cta-section > .container > p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
}

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  padding: 8rem 0 4rem;
  min-height: 40vh;
  display: flex;
  align-items: center;
}

.page-hero .bg-image {
  position: absolute;
  inset: 0;
}

.page-hero .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,31,58,0.9), rgba(11,31,58,0.7));
}

.page-hero .hero-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
}

.page-hero h1 {
  color: white;
  font-size: 2.5rem;
}

@media (min-width: 640px) {
  .page-hero h1 { font-size: 3rem; }
}

.page-hero .gold-line {
  width: 3rem;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto;
  border-radius: 9999px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  padding: 4rem 0 5rem;
}

.content-section.bg-gray {
  background: var(--gray-50);
}

.content-section.bg-navy {
  background: var(--navy);
  color: white;
}

.content-intro {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.content-intro p {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.content-intro p + p {
  margin-top: 1rem;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.info-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,0.3);
}

.info-card .icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
}

.info-card h4 {
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.info-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== BRAND CARD (Restaurant brands) ===== */
.brand-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .brand-card { flex-direction: row; }
  .brand-card:nth-child(even) { flex-direction: row-reverse; }
}

.brand-card:hover {
  box-shadow: var(--shadow-xl);
}

.brand-card-logo {
  flex-shrink: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-900);
}

@media (min-width: 768px) {
  .brand-card-logo { width: 16rem; }
}

.brand-card-logo img {
  width: 10rem;
  height: 10rem;
  object-fit: contain;
}

.brand-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-card-body .tagline {
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.brand-card-body h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.brand-card-body p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== PETROLEUM SPECS ===== */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 36rem;
  margin: 2rem auto;
}

@media (min-width: 640px) {
  .specs-grid { grid-template-columns: repeat(3, 1fr); }
}

.spec-item {
  background: var(--gray-50);
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--gray-200);
}

.spec-item .label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-item .value {
  margin-top: 0.25rem;
  font-weight: 600;
  color: var(--navy);
}

/* ===== CONTACT FORMS ===== */
.contact-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: 0;
}

.contact-tab {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.contact-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: var(--gray-800);
  background: white;
  transition: border-color 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: white;
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand .logo img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.footer-brand .logo span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.footer-brand .tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col .email-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col .email-link svg {
  width: 1rem;
  height: 1rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ===== VALUES / PERKS GRID ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(212,175,55,0.3);
}

.value-card .icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.75rem;
  background: rgba(212,175,55,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.value-card h4 {
  font-size: 0.9375rem;
  color: var(--navy);
}

/* ===== CHECK LIST ===== */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.check-list li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
}

.step-card .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.step-card h4 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== CAREERS ===== */
.apply-box {
  max-width: 32rem;
  margin: 2rem auto;
  text-align: center;
  background: var(--gray-50);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.apply-box .email {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.apply-box .note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .content-section { padding: 3rem 0 4rem; }
  .divisions-section { padding: 3rem 0 5rem; }
  .cta-section { padding: 3rem 0 5rem; }
}

/* ===== WPML / POLYLANG LANG SWITCHER ===== */
.wpml-ls-statics-shortcode_actions {
  display: flex;
  align-items: center;
}

.wpml-ls-statics-shortcode_actions a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--gold);
}

/* ===== SEGMENTED DROPDOWN MENU ===== */
.dropdown-menu-segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  min-width: 640px;
  padding: 0;
}

.dropdown-segment {
  padding: 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.dropdown-segment:last-child {
  border-right: none;
}

.segment-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.dropdown-segment .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
}

.dropdown-segment .dropdown-item:hover {
  color: #fff;
  background: rgba(212, 175, 55, 0.1);
  padding-left: 0.5rem;
}

.dropdown-segment .dropdown-item svg {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

/* ===== BRAND HERO (Individual Restaurant Pages) ===== */
.brand-hero-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.brand-hero-logo {
  flex-shrink: 0;
}

.brand-hero-logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
}

.brand-hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.brand-hero-text .tagline {
  font-size: 1.25rem;
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  margin-top: 2rem;
  transition: gap 0.3s;
}

.back-link:hover {
  gap: 0.75rem;
}

/* ===== MENU GRID ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.menu-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s, border-color 0.3s;
}

.menu-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.3);
}

.menu-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.menu-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ===== BRAND LINK (Restaurant Cards) ===== */
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1rem;
  transition: gap 0.3s;
}

.brand-link:hover {
  gap: 0.75rem;
}

.brand-link svg {
  width: 16px;
  height: 16px;
}

/* ===== LUKOIL SUPPLY CARD (Petroleum Page) ===== */
.lukoil-supply-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
}

.lukoil-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lukoil-logo-col img {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.lukoil-details-col h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.lukoil-details-col > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.supply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.supply-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}

.supply-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ===== OPPORTUNITY CARDS (Partnerships Page) ===== */
.opportunity-card {
  display: flex;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
}

.opportunity-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.opp-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-bg, rgba(212, 175, 55, 0.1));
  color: var(--accent-color, var(--gold));
}

.opp-icon svg {
  width: 28px;
  height: 28px;
}

.opp-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.opp-body > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.opp-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.5rem;
}

.opp-body ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.opp-body ul li svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ===== CONTACT LAYOUT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.contact-forms-col {
  min-width: 0;
}

.contact-info-sidebar {
  position: sticky;
  top: 120px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
}

.contact-info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item .info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
}

.contact-info-item .info-value {
  font-weight: 500;
  color: #fff;
}

.contact-info-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-item a:hover {
  color: var(--gold);
}

/* ===== FOOTER ADDRESS ===== */
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.footer-address svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

/* ===== CAREER FORM ===== */
#career-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

#career-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.8);
}

#career-form input,
#career-form select,
#career-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

#career-form input:focus,
#career-form select:focus,
#career-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* ===== MOBILE MENU SEGMENTS ===== */
.mobile-segment-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  padding: 0.75rem 1.5rem 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0.25rem;
}

/* ===== ADDITIONAL RESPONSIVE ===== */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-info-sidebar {
    position: static;
  }
  .lukoil-supply-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .dropdown-menu-segmented {
    grid-template-columns: 1fr;
    min-width: auto;
  }
  .dropdown-segment {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .dropdown-segment:last-child {
    border-bottom: none;
  }
  .brand-hero-row {
    flex-direction: column;
    text-align: center;
  }
  .opportunity-card {
    flex-direction: column;
  }
  #career-form .form-row {
    grid-template-columns: 1fr;
  }
}
