/*
Theme Name:  Rokh Petroleum
Theme URI:   https://rokhpetroleum.com
Author:      Rokh Petroleum
Author URI:  https://rokhpetroleum.com
Description: Premium WordPress theme for Rokh Petroleum — a European energy trading company. Features BP Green & Sunburst palette, fully editable via WordPress Customizer and Gutenberg block editor. Includes custom sections for Hero, Products, Services, Risk Management, Supplier Code of Conduct, and Contact.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License:     Private
Text Domain: rokh-petroleum
Tags: business, energy, petroleum, corporate, one-page, customizer-ready, full-width-template, custom-colors, custom-logo, featured-images, responsive-layout
*/

/* =====================================================
   THEME VARIABLES — Edit colors here or via Customizer
   Appearance > Customize > Colors
   ===================================================== */
:root {
  --green-deep:   #003A1F;
  --green-mid:    #004D28;
  --green-rich:   #005C30;
  --green-light:  #00703A;
  --green-pale:   #E8F2EC;
  --green-tint:   #F0F5F0;
  --sun:          #F5A623;
  --sun-light:    #F7BC55;
  --sun-pale:     #FEF3DC;
  --white:        #FFFFFF;
  --off-white:    #FAFAF8;
  --text-dark:    #0D1F0F;
  --text-mid:     #2D5A3D;
  --text-muted:   #4A7A58;
  --text-light:   #6B9478;
  --border-green: rgba(0,58,31,0.12);
  --border-sun:   rgba(245,166,35,0.25);
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { transition: color 0.3s; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--green-tint); }
::-webkit-scrollbar-thumb { background: var(--green-deep); }

/* =====================================================
   WORDPRESS CORE COMPATIBILITY
   ===================================================== */
.wp-block-image img { border-radius: 2px; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 6px; top: 7px; z-index: 100000; }

/* =====================================================
   NAVIGATION
   ===================================================== */
#rokh-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}
#rokh-nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border-green);
  box-shadow: 0 1px 20px rgba(0,58,31,0.08);
  height: 68px;
}
.site-branding { display: flex; flex-direction: column; text-decoration: none; }
.site-title-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 700; letter-spacing: 0.15em;
  color: var(--white); transition: color 0.4s; line-height: 1;
}
.site-title-text span { color: var(--sun); }
#rokh-nav.scrolled .site-title-text { color: var(--green-deep); }
.site-tagline-nav {
  font-size: 0.58rem; letter-spacing: 0.3em; color: var(--sun);
  text-transform: uppercase; font-weight: 500;
}
.custom-logo-link img { height: 48px; width: auto; }

/* Primary Menu */
#primary-menu-wrap { display: flex; align-items: center; }
#primary-menu { display: flex; align-items: center; gap: 2.5rem; list-style: none; margin: 0; padding: 0; }
#primary-menu li a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; position: relative; padding-bottom: 4px; display: block;
}
#rokh-nav.scrolled #primary-menu li a { color: var(--text-mid); }
#primary-menu li a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--sun); transition: width 0.3s;
}
#primary-menu li a:hover { color: var(--sun) !important; }
#primary-menu li a:hover::after { width: 100%; }
#primary-menu .menu-item-cta > a {
  background: var(--sun) !important; color: var(--green-deep) !important;
  padding: 9px 22px !important; font-weight: 700 !important; border-radius: 2px;
}
#primary-menu .menu-item-cta > a::after { display: none !important; }
#primary-menu .menu-item-cta > a:hover { background: var(--sun-light) !important; }

/* Mobile nav */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--white); transition: all 0.3s; }
#rokh-nav.scrolled .menu-toggle span { background: var(--green-deep); }
#mobile-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,58,31,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
#mobile-nav-overlay.active { display: flex; }
#mobile-nav-overlay .mobile-close-btn {
  position: absolute; top: 24px; right: 5%;
  background: none; border: none; color: var(--white); font-size: 1.8rem; cursor: pointer;
}
#mobile-nav-overlay ul { list-style: none; text-align: center; padding: 0; margin: 0; }
#mobile-nav-overlay ul li { margin-bottom: 1.5rem; }
#mobile-nav-overlay ul li a {
  color: var(--white); text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; letter-spacing: 0.1em; text-transform: uppercase;
}
#mobile-nav-overlay ul li a:hover { color: var(--sun); }

/* =====================================================
   HERO SECTION
   ===================================================== */
.rokh-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-image: var(--hero-bg-url, url('https://images.unsplash.com/photo-1518173946687-a4c8892bbd9f?w=1920&q=80'));
  background-size: cover; background-position: center;
  filter: brightness(0.28) saturate(0.5);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,58,31,0.88) 0%, rgba(0,58,31,0.55) 50%, rgba(0,30,15,0.82) 100%);
}
.hero-grid-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(245,166,35,1) 1px, transparent 1px), linear-gradient(90deg, rgba(245,166,35,1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 80px 5% 0; max-width: 860px;
}
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 1.5rem; }
.hero-eyebrow-line { width: 40px; height: 2px; background: var(--sun); flex-shrink: 0; }
.hero-eyebrow-text {
  font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--sun); font-weight: 600;
}
.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 600; line-height: 1.06; color: var(--white); margin-bottom: 1.5rem;
}
.hero-heading em { font-style: italic; color: var(--sun-light); }
.hero-subtext {
  font-size: 1.05rem; line-height: 1.85;
  color: rgba(255,255,255,0.72); max-width: 620px;
  margin-bottom: 2.5rem; font-weight: 300;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats-bar {
  position: absolute; bottom: 0; right: 5%;
  display: flex;
}
.hero-stat-box {
  padding: 24px 36px;
  background: rgba(0,58,31,0.88);
  border: 1px solid rgba(245,166,35,0.25);
  border-bottom: none; text-align: center;
  backdrop-filter: blur(10px);
}
.hero-stat-box:not(:last-child) { border-right: none; }
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem; font-weight: 700; color: var(--sun); line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px;
}
.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
  animation: scrollBounce 2s infinite;
}
.scroll-cue span { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.scroll-cue i { color: var(--sun); font-size: 0.9rem; }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary, .wp-block-button__link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sun); color: var(--green-deep);
  padding: 14px 32px; text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 700; border: 2px solid var(--sun); transition: all 0.3s; border-radius: 2px;
}
.btn-primary:hover, .wp-block-button__link:hover { background: var(--sun-light); border-color: var(--sun-light); color: var(--green-deep); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 32px; text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 600; border: 2px solid rgba(255,255,255,0.35); transition: all 0.3s; border-radius: 2px;
}
.btn-outline:hover { border-color: var(--sun); color: var(--sun); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-deep); color: var(--white);
  padding: 14px 32px; text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 700; border: 2px solid var(--green-deep); transition: all 0.3s; border-radius: 2px;
}
.btn-dark:hover { background: var(--green-mid); border-color: var(--green-mid); color: var(--white); }

/* =====================================================
   VALUE STRIP
   ===================================================== */
.value-strip {
  background: var(--green-deep);
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 3px solid var(--sun);
}
.value-item {
  padding: 28px 32px; display: flex; align-items: center; gap: 16px;
  border-right: 1px solid rgba(245,166,35,0.15); transition: background 0.3s;
}
.value-item:hover { background: var(--green-mid); }
.value-item:last-child { border-right: none; }
.value-item i { font-size: 1.4rem; color: var(--sun); flex-shrink: 0; }
.value-item-title {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); font-weight: 700;
}
.value-item-sub { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* =====================================================
   SECTION UTILITIES
   ===================================================== */
.rokh-section { padding: 100px 5%; }
.rokh-section-green-tint { background: var(--green-tint); }
.rokh-section-white { background: var(--white); }
.rokh-section-dark { background: var(--green-deep); }

.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.section-label-line { width: 30px; height: 2px; background: var(--sun); flex-shrink: 0; }
.section-label-text {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--green-light); font-weight: 600;
}
.rokh-section-dark .section-label-text { color: rgba(245,166,35,0.8); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; line-height: 1.15;
  color: var(--green-deep); margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--green-light); }
.rokh-section-dark .section-title { color: var(--white); }
.rokh-section-dark .section-title em { color: var(--sun-light); }

.section-body {
  font-size: 1rem; line-height: 1.85;
  color: var(--text-muted); font-weight: 300; max-width: 600px;
}
.rokh-section-dark .section-body { color: rgba(255,255,255,0.68); }

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; height: 520px; }
.about-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85) saturate(0.75);
}
.about-image-badge {
  position: absolute; bottom: 28px; left: -20px;
  background: var(--sun); padding: 18px 24px;
  box-shadow: 0 4px 24px rgba(245,166,35,0.3);
}
.about-badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 700; color: var(--green-deep); line-height: 1;
}
.about-badge-label {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(0,58,31,0.65); font-weight: 600;
}
.about-image-frame {
  position: absolute; inset: -12px -12px 12px 12px;
  border: 2px solid var(--green-pale); pointer-events: none;
}
.about-reg {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 1.5rem;
  padding: 10px 16px; border: 1px solid var(--border-green);
  background: var(--green-tint); font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted); border-radius: 2px;
}
.about-reg strong { color: var(--green-deep); }
.about-locations { display: flex; gap: 14px; margin-top: 1.5rem; flex-wrap: wrap; }
.about-loc {
  display: flex; align-items: center; gap: 8px; font-size: 0.82rem;
  color: var(--text-mid); background: var(--green-tint); padding: 8px 14px; border-radius: 2px;
}
.about-loc i { color: var(--green-light); font-size: 0.8rem; }

/* =====================================================
   RISK SECTION
   ===================================================== */
.risk-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.risk-dot-bg {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle, rgba(245,166,35,1) 1px, transparent 1px);
  background-size: 24px 24px;
}
.risk-badges-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 2.5rem; background: rgba(245,166,35,0.1); }
.risk-badge-item { background: var(--green-mid); padding: 22px; text-align: center; transition: background 0.3s; }
.risk-badge-item:hover { background: var(--green-rich); }
.risk-badge-item i { font-size: 1.3rem; color: var(--sun); margin-bottom: 8px; display: block; }
.risk-badge-item span { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); font-weight: 500; line-height: 1.4; }
.risk-body p { font-size: 1rem; line-height: 1.9; color: rgba(255,255,255,0.68); font-weight: 300; margin-bottom: 1.2rem; }

/* =====================================================
   SERVICES GRID
   ===================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-green); margin-top: 3rem; }
.service-card {
  background: var(--white); padding: 40px 32px;
  position: relative; overflow: hidden; transition: all 0.3s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--sun); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.service-card:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,58,31,0.08); }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 700; color: rgba(0,58,31,0.05); line-height: 1; margin-bottom: -10px; }
.service-icon-wrap {
  width: 46px; height: 46px; border: 2px solid var(--border-green); background: var(--green-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: all 0.3s; border-radius: 2px;
}
.service-card:hover .service-icon-wrap { border-color: var(--sun); background: var(--sun-pale); }
.service-icon-wrap i { font-size: 1.1rem; color: var(--green-deep); }
.service-card:hover .service-icon-wrap i { color: var(--sun); }
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-deep);
  margin-bottom: 12px; font-weight: 600;
}
.service-card p { font-size: 0.88rem; line-height: 1.75; color: var(--text-muted); font-weight: 300; }

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar { background: var(--sun); padding: 60px 5%; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 3px solid rgba(0,58,31,0.15); }
.stat-item { text-align: center; padding: 0 20px; }
.stat-item:not(:last-child) { border-right: 1px solid rgba(0,58,31,0.15); }
.stat-count { font-family: 'Barlow Condensed', sans-serif; font-size: 3.5rem; font-weight: 700; color: var(--green-deep); line-height: 1; }
.stat-name { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(0,58,31,0.6); margin-top: 6px; font-weight: 600; }

/* =====================================================
   PRODUCTS GRID
   ===================================================== */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-green); margin-top: 3rem; }
.product-card {
  background: var(--off-white); padding: 36px 28px;
  position: relative; overflow: hidden; transition: all 0.35s;
}
.product-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--sun); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.product-card:hover { background: var(--white); box-shadow: 0 8px 30px rgba(0,58,31,0.08); transform: translateY(-2px); }
.product-card:hover::after { transform: scaleX(1); }
.product-card-icon { font-size: 1.8rem; color: var(--green-light); opacity: 0.7; margin-bottom: 16px; transition: all 0.3s; }
.product-card:hover .product-card-icon { opacity: 1; color: var(--green-deep); }
.product-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-deep); margin-bottom: 10px; font-weight: 600; }
.product-card p { font-size: 0.82rem; line-height: 1.7; color: var(--text-muted); font-weight: 300; margin-bottom: 16px; }
.product-enquire { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-light); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.product-card:hover .product-enquire { gap: 10px; color: var(--green-deep); }

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner { background: var(--sun); padding: 60px 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; border-top: 3px solid rgba(0,58,31,0.15); }
.cta-banner h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--green-deep); }
.cta-banner p { font-size: 0.9rem; color: rgba(0,58,31,0.65); margin-top: 4px; }

/* =====================================================
   SUPPLIER CONDUCT
   ===================================================== */
.conduct-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; margin-top: 3rem; }
.conduct-intro p { font-size: 0.9rem; line-height: 1.85; color: var(--text-muted); font-weight: 300; margin-bottom: 1.5rem; }
.conduct-highlight { border-left: 3px solid var(--sun); padding: 16px 20px; margin-top: 2rem; background: var(--sun-pale); border-radius: 0 4px 4px 0; }
.conduct-highlight p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; margin: 0; }
.conduct-highlight strong { color: var(--green-deep); font-weight: 600; }
.conduct-highlight a { color: var(--green-light); }

.accordion-wrap { display: flex; flex-direction: column; gap: 4px; }
.accordion-item { background: var(--white); border: 1px solid var(--border-green); border-radius: 2px; overflow: hidden; }
.accordion-toggle { width: 100%; background: none; border: none; padding: 18px 22px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; text-align: left; transition: background 0.2s; }
.accordion-toggle:hover, .accordion-item.open .accordion-toggle { background: var(--green-tint); }
.accordion-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-deep); font-weight: 600; display: flex; align-items: center; gap: 12px; }
.accordion-num { color: var(--sun); font-size: 0.75rem; width: 20px; }
.accordion-arrow { color: var(--green-light); font-size: 0.75rem; transition: transform 0.3s; }
.accordion-item.open .accordion-arrow { transform: rotate(45deg); color: var(--sun); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 22px; }
.accordion-item.open .accordion-content { max-height: 300px; }
.accordion-content-inner { padding: 14px 0 18px; font-size: 0.85rem; line-height: 1.75; color: var(--text-muted); font-weight: 300; border-top: 1px solid var(--border-green); }

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; margin-top: 3rem; align-items: start; }
.contact-col-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-light); font-weight: 600; margin: 2rem 0 1rem; }
.contact-col-label:first-child { margin-top: 0; }

.office-card { border: 1px solid var(--border-green); padding: 18px 20px; margin-bottom: 10px; position: relative; background: var(--green-tint); border-radius: 2px; transition: border-color 0.3s; }
.office-card:hover { border-color: var(--green-light); }
.office-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--green-deep); border-radius: 2px 0 0 2px; }
.office-flag { font-size: 1.2rem; margin-bottom: 6px; }
.office-name { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-deep); font-weight: 700; margin-bottom: 4px; }
.office-address { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.office-reg { font-size: 0.72rem; color: var(--green-light); margin-top: 4px; font-weight: 600; }

.contact-email-link { display: flex; align-items: center; gap: 10px; text-decoration: none; font-size: 0.85rem; color: var(--text-mid); padding: 8px 0; border-bottom: 1px solid var(--border-green); }
.contact-email-link i { color: var(--green-light); width: 16px; }
.contact-email-link:hover { color: var(--green-deep); }

.wa-buttons { display: flex; flex-direction: column; gap: 10px; margin-top: 0; }
.wa-btn { display: flex; align-items: center; gap: 10px; text-decoration: none; padding: 12px 16px; border: 1px solid rgba(37,211,102,0.3); border-radius: 2px; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: #1a7a3a; font-weight: 600; transition: all 0.3s; background: rgba(37,211,102,0.04); }
.wa-btn:hover { background: rgba(37,211,102,0.1); border-color: #25d366; color: #0d5c28; }
.wa-btn i { font-size: 1rem; color: #25d366; }

/* Contact Form */
.contact-form-box { background: var(--green-deep); padding: 40px; border-radius: 2px; position: relative; overflow: hidden; }
.contact-form-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--sun); }
.contact-form-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.contact-form-box .form-subtitle { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 2rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 600; margin-bottom: 8px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); font-family: 'Barlow', sans-serif;
  font-size: 0.9rem; transition: border-color 0.3s; outline: none; border-radius: 2px;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-field input:focus, .form-field textarea:focus { border-color: var(--sun); background: rgba(255,255,255,0.1); }
.form-field textarea { height: 120px; resize: vertical; }
.form-submit-btn { width: 100%; padding: 14px; background: var(--sun); color: var(--green-deep); border: none; font-family: 'Barlow', sans-serif; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; cursor: pointer; transition: background 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; border-radius: 2px; }
.form-submit-btn:hover { background: var(--sun-light); }
.form-success-msg { display: none; text-align: center; padding: 40px 20px; }
.form-success-msg i { font-size: 2.5rem; color: var(--sun); margin-bottom: 12px; display: block; }
.form-success-msg p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* =====================================================
   FOOTER
   ===================================================== */
#colophon { background: var(--green-deep); border-top: 3px solid var(--sun); padding: 70px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 700; letter-spacing: 0.15em; color: var(--white); margin-bottom: 4px; }
.footer-logo-text span { color: var(--sun); }
.footer-slogan { font-size: 0.78rem; color: rgba(255,255,255,0.45); font-style: italic; margin-bottom: 1.5rem; line-height: 1.6; }
.footer-reg-info { font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; line-height: 1.8; }
.footer-reg-info strong { color: var(--sun-light); }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--sun); font-weight: 600; margin-bottom: 1.2rem; }
.footer-nav-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-nav-list a { text-decoration: none; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-nav-list a:hover { color: var(--sun); }
.footer-contact-items { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-row { display: flex; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-contact-row i { color: var(--sun); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-row a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-contact-row a:hover { color: var(--sun); }
.footer-bottom { border-top: 1px solid rgba(245,166,35,0.15); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--sun); }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* =====================================================
   GUTENBERG EDITOR COMPATIBILITY
   ===================================================== */
.wp-block { max-width: 100%; }
.entry-content h1,.entry-content h2,.entry-content h3 { font-family: 'Cormorant Garamond', serif; color: var(--green-deep); margin-bottom: 1rem; }
.entry-content p { line-height: 1.85; color: var(--text-muted); margin-bottom: 1rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.entry-content blockquote { border-left: 3px solid var(--sun); padding-left: 1.5rem; color: var(--text-mid); font-style: italic; margin: 2rem 0; }
.entry-content a { color: var(--green-light); }
.entry-content a:hover { color: var(--green-deep); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { height: 320px; order: -1; }
  .risk-grid { grid-template-columns: 1fr; gap: 40px; }
  .conduct-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  #primary-menu-wrap { display: none; }
  .menu-toggle { display: flex; }
  .value-strip { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid rgba(245,166,35,0.15); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(0,58,31,0.15); }
  .stat-item:nth-child(even) { border-right: none; }
  .hero-stats-bar { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-banner { flex-direction: column; text-align: center; }
  .rokh-section { padding: 70px 5%; }
}
@media (max-width: 520px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
}
