/* Funny Sunny Cyprus - Main Stylesheet */
:root {
  --red: #ed1c24;
  --red-hover: #c8141b;
  --navy: #0c2246;
  --navy-mid: #182f6c;
  --white: #ffffff;
  --light-bg: #f8f8f8;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --gold: #f5c842;
  --border: #e0e0e0;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

/* ─── TYPOGRAPHY ─── */
h1 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 1rem; line-height: 1.7; }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--navy { background: var(--navy-mid); color: var(--white); }
.section--red { background: var(--red); color: var(--white); }
.section--light { background: var(--light-bg); }
.section--white { background: var(--white); }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(12, 34, 70, 0.97);
  backdrop-filter: blur(10px);
  padding: 0 24px;
  height: 72px;
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}
.navbar.scrolled { height: 60px; background: rgba(12, 34, 70, 0.99); }
.nav-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 40px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; letter-spacing: 0.02em; white-space: nowrap; }
.nav-links a:hover { color: var(--red); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-switcher { display: flex; gap: 4px; }
.lang-btn { padding: 5px 10px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.25); background: transparent; color: rgba(255,255,255,0.7); font-size: 0.8rem; cursor: pointer; transition: all 0.2s; text-decoration: none; font-weight: 500; }
.lang-btn.active, .lang-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.btn-nav { padding: 9px 22px; background: var(--red); color: #fff; border: none; border-radius: 40px; font-size: 0.9rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: background 0.2s; white-space: nowrap; }
.btn-nav:hover { background: var(--red-hover); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/Main_banner.png') center/cover no-repeat;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,34,70,0.95) 0%, rgba(24,47,108,0.8) 50%, rgba(237,28,36,0.15) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 60px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text { }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(237,28,36,0.15); border: 1px solid rgba(237,28,36,0.4); border-radius: 40px; padding: 8px 16px; margin-bottom: 28px; }
.hero-badge span { color: var(--red); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-desc { color: rgba(255,255,255,0.8); font-size: 1.15rem; margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { padding: 14px 32px; background: var(--red); color: #fff; border: none; border-radius: 40px; font-size: 1rem; font-weight: 700; cursor: pointer; text-decoration: none; transition: all 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(237,28,36,0.4); }
.btn-outline { padding: 14px 32px; background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); border-radius: 40px; font-size: 1rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.2s; display: inline-block; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-image img { max-height: 520px; filter: drop-shadow(0 20px 60px rgba(237,28,36,0.3)); animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-16px); } }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 0.8rem; z-index: 2; }
.hero-scroll::after { content: ''; display: block; width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); margin-top: 4px; animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100%{ opacity: 0.4; } 50%{ opacity: 1; } }

/* ─── STATS BAR ─── */
.stats-bar { background: var(--red); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item { color: #fff; }
.stat-number { font-size: 2.4rem; font-weight: 800; line-height: 1; }
.stat-label { font-size: 0.85rem; opacity: 0.85; margin-top: 6px; }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--red); margin-bottom: 16px; }
.about-text h2 { color: var(--navy); margin-bottom: 24px; }
.about-text p { color: var(--text-mid); margin-bottom: 20px; font-size: 1.05rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.feature-card { padding: 20px; background: var(--light-bg); border-radius: 16px; border-left: 3px solid var(--red); }
.feature-card h4 { color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--text-mid); }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: 24px; }
.about-image-badge { position: absolute; bottom: -20px; right: -20px; background: var(--red); color: #fff; padding: 20px; border-radius: 20px; text-align: center; }
.about-image-badge strong { display: block; font-size: 2rem; font-weight: 800; }
.about-image-badge span { font-size: 0.8rem; opacity: 0.9; }

/* ─── PRODUCT ─── */
.product-section { background: var(--navy); color: #fff; }
.product-header { text-align: center; margin-bottom: 64px; }
.product-header h2 { color: #fff; margin-bottom: 16px; }
.product-header p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
.product-showcase { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 40px; align-items: center; }
.product-features-left, .product-features-right { display: flex; flex-direction: column; gap: 24px; }
.product-feature { display: flex; gap: 16px; align-items: flex-start; }
.product-feature-left { flex-direction: row-reverse; text-align: right; }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(237,28,36,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.feature-text h4 { color: #fff; margin-bottom: 6px; }
.feature-text p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.product-center { text-align: center; }
.product-center img { max-height: 480px; filter: drop-shadow(0 30px 80px rgba(237,28,36,0.5)); animation: float 4s ease-in-out infinite; }
.product-can-info { margin-top: 20px; }
.product-can-info h3 { color: #fff; font-size: 1.4rem; }
.product-can-info p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 6px; }
.product-cta { text-align: center; margin-top: 60px; }

/* ─── FLAVORS ─── */
.flavors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.flavor-card { background: var(--light-bg); border-radius: 24px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.flavor-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.flavor-image { height: 240px; display: flex; align-items: center; justify-content: center; padding: 32px; }
.flavor-image img { max-height: 200px; }
.flavor-info { padding: 24px; }
.flavor-info h3 { color: var(--navy); margin-bottom: 10px; }
.flavor-info p { color: var(--text-mid); font-size: 0.9rem; }
.flavor-tag { display: inline-block; margin-top: 12px; padding: 4px 12px; background: rgba(237,28,36,0.1); color: var(--red); border-radius: 20px; font-size: 0.78rem; font-weight: 600; }

/* ─── WHY CYPRUS ─── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-card { text-align: center; padding: 40px 24px; border-radius: 24px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s; }
.why-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(237,28,36,0.4); transform: translateY(-4px); }
.why-icon { font-size: 2.8rem; margin-bottom: 20px; }
.why-card h3 { color: #fff; margin-bottom: 12px; }
.why-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* ─── VIDEO SECTION ─── */
.video-section { background: var(--navy); padding: 80px 0; }
.video-section h2 { color: #fff; text-align: center; margin-bottom: 16px; }
.video-section .subtitle { color: rgba(255,255,255,0.7); text-align: center; margin-bottom: 48px; font-size: 1.1rem; }
.video-wrapper { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.5); max-width: 900px; margin: 0 auto; }
.video-wrapper video { width: 100%; display: block; }

/* ─── COOPERATION ─── */
.coop-section { }
.coop-header { text-align: center; margin-bottom: 64px; }
.coop-header h2 { color: var(--navy); margin-bottom: 16px; }
.coop-header p { color: var(--text-mid); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
.coop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.coop-card { padding: 40px; border-radius: 24px; border: 2px solid var(--border); transition: all 0.3s; position: relative; overflow: hidden; }
.coop-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--red); }
.coop-card:hover { border-color: var(--red); box-shadow: 0 16px 48px rgba(237,28,36,0.1); transform: translateY(-4px); }
.coop-card h3 { color: var(--navy); margin-bottom: 16px; font-size: 1.3rem; }
.coop-card ul { list-style: none; }
.coop-card li { padding: 8px 0; color: var(--text-mid); border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; }
.coop-card li:last-child { border-bottom: none; }
.coop-card li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.incentive-table { width: 100%; border-collapse: collapse; margin-top: 48px; }
.incentive-table th { background: var(--navy); color: #fff; padding: 16px; text-align: left; font-weight: 600; }
.incentive-table th:first-child { border-radius: 12px 0 0 0; }
.incentive-table th:last-child { border-radius: 0 12px 0 0; }
.incentive-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.incentive-table tr:last-child td { border-bottom: none; }
.incentive-table tr:nth-child(even) td { background: var(--light-bg); }
.incentive-table td:first-child { font-weight: 600; color: var(--red); }

/* ─── MARKET DATA ─── */
.market-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.market-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.market-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 32px; }
.market-card h3 { color: var(--red); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.market-stat { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.market-stat:last-child { border-bottom: none; }
.market-stat-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.market-stat-value { color: #fff; font-weight: 700; font-size: 1.05rem; }

/* ─── DISTRIBUTORS ─── */
.dist-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.dist-card { padding: 36px; border-radius: 24px; background: #fff; border: 2px solid var(--border); box-shadow: 0 4px 24px rgba(0,0,0,0.04); transition: all 0.3s; }
.dist-card:hover { border-color: var(--navy); box-shadow: 0 16px 48px rgba(12,34,70,0.12); }
.dist-card.priority { border-color: var(--red); }
.dist-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.dist-badge.priority { background: rgba(237,28,36,0.1); color: var(--red); }
.dist-badge.secondary { background: rgba(24,47,108,0.08); color: var(--navy-mid); }
.dist-card h3 { color: var(--navy); margin-bottom: 16px; font-size: 1.2rem; }
.dist-card p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 16px; }
.dist-contacts { margin-top: 20px; }
.dist-contact-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-top: 1px solid var(--border); color: var(--text-mid); font-size: 0.9rem; }
.dist-contact-item a { color: var(--navy); font-weight: 600; text-decoration: none; }
.dist-contact-item a:hover { color: var(--red); }

/* ─── FORM ─── */
.form-section { background: var(--navy); }
.form-section h2 { color: #fff; text-align: center; margin-bottom: 12px; }
.form-section .subtitle { color: rgba(255,255,255,0.7); text-align: center; margin-bottom: 48px; font-size: 1.1rem; }
.contact-form { max-width: 680px; margin: 0 auto; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 28px; padding: 48px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; color: #fff; font-size: 1rem; font-family: inherit; transition: border-color 0.2s; outline: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); background: rgba(255,255,255,0.1); }
.form-group textarea { height: 120px; resize: vertical; }
.form-group select option { background: var(--navy); color: #fff; }
.form-submit { width: 100%; padding: 16px; background: var(--red); color: #fff; border: none; border-radius: 40px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: all 0.2s; margin-top: 8px; }
.form-submit:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(237,28,36,0.4); }
.form-privacy { color: rgba(255,255,255,0.45); font-size: 0.8rem; text-align: center; margin-top: 16px; }
.form-privacy a { color: rgba(255,255,255,0.65); }
.form-success { display: none; text-align: center; padding: 48px 24px; }
.form-success h3 { color: #fff; font-size: 1.8rem; margin-bottom: 16px; }
.form-success p { color: rgba(255,255,255,0.7); }

/* ─── CONTACTS ─── */
.contacts-section { background: var(--light-bg); }
.contacts-header { text-align: center; margin-bottom: 64px; }
.contacts-header h2 { color: var(--navy); margin-bottom: 16px; }
.contacts-header p { color: var(--text-mid); max-width: 500px; margin: 0 auto; }
.contacts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.contact-card { background: #fff; border-radius: 20px; padding: 36px; text-align: center; box-shadow: 0 4px 24px rgba(0,0,0,0.05); border: 1px solid var(--border); }
.contact-card-icon { width: 64px; height: 64px; background: rgba(237,28,36,0.08); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 20px; }
.contact-card h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.1rem; }
.contact-card a { color: var(--red); font-weight: 600; text-decoration: none; font-size: 1.05rem; }
.contact-card a:hover { text-decoration: underline; }
.contact-card p { color: var(--text-mid); font-size: 0.9rem; }

/* ─── FOOTER ─── */
footer { background: var(--navy); padding: 60px 0 32px; color: rgba(255,255,255,0.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 320px; }
.footer-links h4, .footer-contact h4 { color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }

/* ─── TOAST/MODAL ─── */
.toast { position: fixed; bottom: 32px; right: 32px; background: var(--navy); color: #fff; padding: 16px 24px; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.3); transform: translateY(100px); opacity: 0; transition: all 0.4s; z-index: 9999; border-left: 4px solid var(--red); }
.toast.show { transform: translateY(0); opacity: 1; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .product-showcase { grid-template-columns: 1fr; }
  .product-features-left, .product-features-right { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .product-feature-left { flex-direction: row; text-align: left; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 280px; }
  .hero-actions { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .flavors-grid { grid-template-columns: 1fr; }
  .coop-grid { grid-template-columns: 1fr; }
  .market-grid { grid-template-columns: 1fr; }
  .dist-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .about-image-badge { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── MOBILE MENU ─── */
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--navy); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; text-decoration: none; font-size: 1.4rem; font-weight: 600; }
.mobile-menu-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }
.mobile-lang { display: flex; gap: 12px; margin-top: 24px; }

/* ─── ANIMATIONS ─── */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.6s, transform 0.6s; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.6s; }
.fade-in.visible { opacity: 1; }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ─── SECTION DIVIDER ─── */
.wave-divider { overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; }
