/* ===== SITE 1: DURAWORKS LIMITED — Day Trading Fundamentals ===== */
/* Dark Navy / Electric Blue / Orange Theme */

:root {
  --navy: #0a1628;
  --navy-mid: #0f2040;
  --navy-light: #1a3560;
  --blue: #1e90ff;
  --blue-light: #5cb3ff;
  --orange: #ff6b35;
  --white: #ffffff;
  --off-white: #e8f0fe;
  --grey: #8899aa;
  --card-bg: #0d1e38;
  --border: #1e3a5f;
}

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

html { scroll-behavior: smooth; }

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

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #0d1e38;
  border-top: 2px solid var(--blue);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  flex-wrap: wrap;
}
#cookie-banner p { font-size: 13px; color: var(--off-white); flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--blue); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--blue); color: #fff; border: none;
  padding: 9px 22px; border-radius: 4px; cursor: pointer; font-size: 13px; font-weight: 600;
}
.btn-cookie-decline {
  background: transparent; color: var(--grey); border: 1px solid var(--border);
  padding: 9px 22px; border-radius: 4px; cursor: pointer; font-size: 13px;
}
.btn-cookie-accept:hover { background: var(--blue-light); }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 90px; right: 24px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  z-index: 9998;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.6); }
.whatsapp-fab svg { width: 32px; height: 32px; fill: #fff; }

/* ===== NAV ===== */
nav {
  background: rgba(10,22,40,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-size: 20px; font-weight: 700; color: var(--white);
  text-decoration: none; letter-spacing: .5px;
}
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--off-white); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-cta {
  background: var(--blue); color: #fff !important;
  padding: 9px 20px; border-radius: 5px;
}
.nav-cta:hover { background: var(--blue-light) !important; color: #fff !important; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1400&q=80');
  background-size: cover; background-position: center;
  filter: brightness(.35);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,.9) 40%, rgba(30,144,255,.15));
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 680px;
  padding: 80px 60px;
}
.hero-badge {
  display: inline-block;
  background: rgba(30,144,255,.2); border: 1px solid var(--blue);
  color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; text-transform: uppercase;
}
.hero h1 {
  font-size: 48px; font-weight: 800; line-height: 1.15;
  margin-bottom: 20px; color: var(--white);
}
.hero h1 span { color: var(--blue); }
.hero p {
  font-size: 18px; color: var(--off-white); margin-bottom: 32px; line-height: 1.7;
}
.hero-disclaimer {
  font-size: 12px; color: var(--grey);
  background: rgba(255,255,255,.05); border-left: 3px solid var(--orange);
  padding: 10px 16px; border-radius: 3px; margin-bottom: 32px;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), #0070d2);
  color: #fff; padding: 16px 36px; border-radius: 6px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  border: none; cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,144,255,.4);
}

/* ===== DISCLAIMER BANNER ===== */
.disclaimer-bar {
  background: rgba(255,107,53,.1); border-top: 1px solid rgba(255,107,53,.3);
  border-bottom: 1px solid rgba(255,107,53,.3);
  padding: 12px 40px; text-align: center;
  font-size: 12px; color: #ffb08a;
}

/* ===== SECTIONS ===== */
section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); font-weight: 700; margin-bottom: 12px;
}
.section-title {
  font-size: 36px; font-weight: 800; margin-bottom: 16px; color: var(--white);
}
.section-sub { font-size: 17px; color: var(--grey); max-width: 600px; line-height: 1.7; }

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; margin-top: 50px;
}
.about-text p { color: var(--off-white); margin-bottom: 16px; font-size: 16px; line-height: 1.8; }
.about-features { list-style: none; margin-top: 24px; }
.about-features li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; font-size: 15px; color: var(--off-white);
}
.about-features li::before {
  content: '✓';
  background: var(--blue); color: #fff;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.about-img {
  border-radius: 12px; overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.about-img img { width: 100%; height: 380px; object-fit: cover; display: block; }

/* ===== MODULES ===== */
.modules-section { background: var(--navy-mid); padding: 80px 0; }
.modules-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.modules-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px;
}
.module-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; transition: transform .2s, border-color .2s;
}
.module-card:hover { transform: translateY(-4px); border-color: var(--blue); }
.module-number {
  font-size: 12px; font-weight: 700; color: var(--blue); letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 12px;
}
.module-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.module-card p { font-size: 14px; color: var(--grey); line-height: 1.6; }

/* ===== PHOTOS ===== */
.photos-section { padding: 80px 0; background: var(--navy); }
.photos-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.photos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px;
}
.photo-card {
  border-radius: 10px; overflow: hidden; border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.photo-card img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .4s; }
.photo-card:hover img { transform: scale(1.05); }

/* ===== REGISTER FORM ===== */
.register-section { background: var(--navy-mid); padding: 80px 0; }
.register-inner {
  max-width: 640px; margin: 0 auto; padding: 0 40px; text-align: center;
}
.register-inner .section-title { font-size: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; text-align: left; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--off-white); }
.form-group input, .form-group textarea {
  background: var(--navy); border: 1px solid var(--border);
  color: var(--white); padding: 12px 14px; border-radius: 6px; font-size: 14px;
  transition: border-color .2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--grey); }
.form-submit { grid-column: 1 / -1; margin-top: 8px; }
.form-submit button {
  width: 100%; background: linear-gradient(135deg, var(--blue), #0070d2);
  color: #fff; border: none; padding: 16px; border-radius: 6px;
  font-size: 16px; font-weight: 700; cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.form-submit button:hover {
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,144,255,.4);
}
#form-success {
  display: none; margin-top: 20px;
  background: rgba(30,144,255,.1); border: 1px solid var(--blue);
  color: var(--blue-light); padding: 16px; border-radius: 6px; font-size: 15px;
}

/* ===== FOOTER ===== */
footer {
  background: #050d18;
  border-top: 1px solid var(--border);
  padding: 60px 40px 30px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 18px; display: inline-block; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--grey); line-height: 1.7; max-width: 300px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--grey); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--blue); }
.footer-col address { font-style: normal; font-size: 13px; color: var(--grey); line-height: 1.9; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid var(--border); padding-top: 24px;
  font-size: 12px; color: var(--grey); line-height: 1.7;
}
.footer-disclaimer {
  background: rgba(255,107,53,.07); border-left: 3px solid var(--orange);
  padding: 12px 16px; border-radius: 3px; margin-bottom: 20px;
  font-size: 12px; color: #ffb08a;
}

/* ===== CONTACT PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border-bottom: 1px solid var(--border);
  padding: 80px 40px 60px;
  text-align: center;
}
.page-hero h1 { font-size: 40px; font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: var(--grey); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  max-width: 1100px; margin: 0 auto; padding: 80px 40px;
}
.contact-info h2 { font-size: 26px; font-weight: 700; margin-bottom: 24px; }
.contact-info address { font-style: normal; color: var(--off-white); line-height: 2; font-size: 15px; }
.contact-info .reg { font-size: 13px; color: var(--grey); margin-top: 8px; }
.company-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; margin-bottom: 28px;
}
.company-card h3 { font-size: 18px; font-weight: 700; color: var(--blue); margin-bottom: 12px; }
.wa-btn {
  display: flex; align-items: center; gap: 12px;
  background: #25d366; color: #fff;
  padding: 16px 28px; border-radius: 8px; text-decoration: none;
  font-weight: 700; font-size: 16px; margin-top: 24px;
  transition: background .2s, transform .2s;
}
.wa-btn:hover { background: #1ebe5d; transform: translateY(-2px); }
.wa-btn svg { width: 24px; height: 24px; fill: #fff; flex-shrink: 0; }

/* ===== TERMS / PRIVACY ===== */
.legal-content {
  max-width: 860px; margin: 0 auto; padding: 60px 40px 80px;
}
.legal-content h2 { font-size: 26px; font-weight: 700; margin: 36px 0 12px; color: var(--blue-light); }
.legal-content h3 { font-size: 18px; font-weight: 600; margin: 24px 0 8px; color: var(--off-white); }
.legal-content p { color: var(--grey); line-height: 1.8; margin-bottom: 14px; font-size: 15px; }
.legal-content ul { color: var(--grey); padding-left: 24px; line-height: 2; font-size: 15px; margin-bottom: 14px; }
.legal-date { font-size: 13px; color: var(--grey); margin-bottom: 36px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero h1 { font-size: 34px; }
  .hero-content { padding: 60px 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr 1fr; }
  .photos-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  nav { padding: 0 20px; }
  .nav-links { gap: 16px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 26px; }
  .modules-grid, .photos-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  section { padding: 60px 20px; }
}
