/* ============================================
   EURO OIL HOLDINGS - Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Montserrat:wght@400;500;600&display=swap');



:root {
  --gold: #C9A84C;
  --gold-light: #E2C06A;
  --gold-dark: #A07830;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --black: #0A0A0A;
  --dark: #111111;
  --dark-card: #161616;
  --dark-card2: #1A1A1A;
  --border: rgba(201, 168, 76, 0.2);
  --text-white: #FFFFFF;
  --text-light: #CCCCCC;
  --text-muted: #888888;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--text-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
}


/* HEADINGS (main hero style) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.2;
}

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

img {
  max-width: 100%;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo .logo-icon {
  width: 48px;
  height: 48px;
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--text-white);
}

.nav-logo .logo-sub {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 500;
}

.nav-logo .logo-tagline {
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-light);
  cursor: pointer;
  border: 1px solid var(--border);
  padding: 6px 12px;
  transition: all 0.3s;
}

.nav-lang:hover {
  border-color: var(--gold);
  color: var(--gold);
}

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

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.7) 50%,
    rgba(10,10,10,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 80px 80px 80px;
  max-width: 700px;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title .gold {
  color: var(--gold);
}

.hero-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--text-white);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-arrow {
  font-size: 14px;
}

/* ============================================
   SECTION BASICS
   ============================================ */
.section {
  padding: 80px 80px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

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

.gold-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 24px;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--dark-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  border-right: 1px solid var(--border);
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  color: var(--gold);
  font-size: 22px;
  flex-shrink: 0;
}

.stat-info .stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-info .stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================
   ICON GRID
   ============================================ */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  background: var(--dark-card);
  border: 1px solid var(--border);
  margin: 60px 80px;
}

.icon-grid-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
}

.icon-grid-item:last-child {
  border-right: none;
}

.icon-grid-item:hover {
  background: var(--gold-glow);
}

.icon-grid-item .ig-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
}

.icon-grid-item .ig-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.icon-grid-item .ig-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.icon-grid-item .ig-arrow {
  color: var(--gold);
  font-size: 16px;
}

/* ============================================
   CONTACT BOTTOM BAR
   ============================================ */
.contact-bar {
  margin: 0 80px;
  padding: 28px 40px;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contact-bar .cb-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-bar .cb-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-bar .cb-text {
  font-size: 12px;
  color: var(--text-light);
}

.contact-bar .cb-email {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 80px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo-section .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.3s;
}

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

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.3s;
  cursor: pointer;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 11px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 11px;
  color: var(--text-muted);
  transition: color 0.3s;
}

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

/* ============================================
   PHOTO OVERLAY SECTIONS
   ============================================ */
.photo-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.2) 100%);
}

.photo-content {
  position: relative;
  z-index: 2;
  padding: 60px 80px;
  max-width: 600px;
}

/* ============================================
   FORM STYLES
   ============================================ */
.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--text-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23C9A84C'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--dark);
  color: var(--text-white);
}

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

/* ============================================
   ALERT MESSAGES
   ============================================ */
.alert {
  padding: 14px 20px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.alert-success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #81C784;
}

.alert-error {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.4);
  color: #E57373;
}

/* ============================================
   SVG LOGO
   ============================================ */
.logo-svg {
  width: 48px;
  height: 48px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-up-delay-1 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }
.animate-fade-up-delay-2 { animation-delay: 0.4s; opacity: 0; animation-fill-mode: forwards; }
.animate-fade-up-delay-3 { animation-delay: 0.6s; opacity: 0; animation-fill-mode: forwards; }

/* ============================================
   UTILITY
   ============================================ */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-40 { margin-bottom: 40px; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 32px 40px; }
  .stat-item:nth-child(2) { border-right: none; }
  .icon-grid { grid-template-columns: repeat(3, 1fr); margin: 40px; }
  .icon-grid-item:nth-child(3) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 40px; }
  .hero-content { padding: 60px 40px; }
  .contact-bar { margin: 0 40px; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 24px 20px; gap: 16px; }
  .stat-item { border-right: none; padding: 0; }
  .icon-grid { grid-template-columns: repeat(2, 1fr); margin: 20px; }
  .icon-grid-item:nth-child(even) { border-right: none; }
  .section { padding: 50px 20px; }
  .hero-content { padding: 40px 20px; }
  .hero-title { font-size: 32px; }
  .contact-bar { margin: 0 20px; flex-direction: column; text-align: center; }
  footer { padding: 40px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-group { grid-template-columns: 1fr; }
}
