/*
Theme Name: MSA Digital Skill
Theme URI: https://example.com
Author: OpenAI
Version: 1.0
Description: Custom theme converted from HTML.
*/
:root {
    --primary: #00B2FE;
    --primary-dark: #0090d0;
    --primary-light: #e6f7ff;
    --white: #ffffff;
    --dark: #0a0a1a;
    --text: #1a1a2e;
    --muted: #6b7280;
    --bg: #ffffff;
    --section-bg: #f8fcff;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Poppins', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5f5ff;
    padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 68px;
  }
  .logo { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--primary); font-weight: 800; letter-spacing: -0.5px; }
  .logo span { color: var(--text); }
  .nav-links { display: flex; gap: 28px; list-style: none; }
  .nav-links a { text-decoration: none; color: var(--text); font-size: 14px; font-weight: 500; transition: color 0.2s; }
  .nav-links a:hover { color: var(--primary); }
  .nav-cta { background: var(--primary); color: white; padding: 10px 22px; border-radius: 50px; font-size: 14px; font-weight: 600; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,178,254,0.4); }

  /* HERO */
  .hero {
    min-height: 100vh; padding: 100px 5% 60px;
    display: flex; align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #e6f7ff 50%, #f0faff 100%);
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,178,254,0.12) 0%, transparent 70%);
  }
  .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--primary-light); border: 1px solid rgba(0,178,254,0.3); color: var(--primary); padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 600; margin-bottom: 20px; }
  .hero-badge::before { content: '★'; font-size: 11px; }
  h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 58px); line-height: 1.1; color: var(--text); margin-bottom: 20px; }
  h1 span { color: var(--primary); }
  .hero p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary { background: var(--primary); color: white; padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 15px; text-decoration: none; transition: all 0.3s; box-shadow: 0 4px 20px rgba(0,178,254,0.35); }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,178,254,0.5); }
  .btn-outline { border: 2px solid var(--primary); color: var(--primary); padding: 12px 32px; border-radius: 50px; font-weight: 600; font-size: 15px; text-decoration: none; transition: all 0.3s; }
  .btn-outline:hover { background: var(--primary); color: white; }
  .hero-stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
  .stat { text-align: center; }
  .stat-num { font-size: 28px; font-weight: 800; color: var(--primary); }
  .stat-label { font-size: 12px; color: var(--muted); font-weight: 500; }

  /* HERO FORM */
  .hero-form { background: white; border-radius: 20px; padding: 36px; box-shadow: 0 20px 60px rgba(0,178,254,0.12); border: 1px solid #e5f5ff; }
  .hero-form h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
  .hero-form p { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
  .form-group { margin-bottom: 16px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid #e5e7eb; border-radius: 10px;
    font-family: 'Poppins', sans-serif; font-size: 14px; color: var(--text);
    outline: none; transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); }
  .form-group textarea { resize: none; height: 80px; }
  .form-submit { width: 100%; background: var(--primary); color: white; border: none; padding: 14px; border-radius: 10px; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
  .form-submit:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,178,254,0.4); }

  /* SECTIONS */
  section { padding: 80px 5%; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-tag { display: inline-block; background: var(--primary-light); color: var(--primary); font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 50px; margin-bottom: 12px; letter-spacing: 0.5px; text-transform: uppercase; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 40px); color: var(--text); margin-bottom: 14px; }
  .section-subtitle { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 580px; }

  /* ABOUT */
  .about { background: var(--section-bg); }
  .about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: center; }
  .about-icon-wrap {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #0090d0 100%);
    border-radius: 24px; width: 340px; height: 320px;
    box-shadow: 0 30px 80px rgba(0,178,254,0.3);
    position: relative; overflow: hidden;
  }
  .about-icon-wrap::before {
    content: ''; position: absolute; top: -50px; left: -50px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
  }
  .about-big-icon { font-size: 100px; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2)); }
  .about-content { }
  .about-feature { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
  .about-feature-icon { background: var(--primary-light); color: var(--primary); width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
  .about-feature h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
  .about-feature p { font-size: 13px; color: var(--muted); line-height: 1.6; }

  /* SERVICES */
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
  .service-card {
    background: white; border-radius: 16px; padding: 28px;
    border: 1.5px solid #e5f5ff; transition: all 0.3s;
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), #0090d0);
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,178,254,0.15); border-color: var(--primary); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon { width: 56px; height: 56px; background: var(--primary-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; }
  .service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
  .service-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }
  .service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: 13px; font-weight: 600; margin-top: 14px; text-decoration: none; }
  .service-link:hover { gap: 10px; }

  /* WHY CHOOSE */
  .why-choose { background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 100%); color: white; }
  .why-choose .section-title { color: white; }
  .why-choose .section-subtitle { color: rgba(255,255,255,0.6); }
  .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; margin-top: 48px; }
  .why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(0,178,254,0.2); border-radius: 16px; padding: 28px; transition: all 0.3s; }
  .why-card:hover { background: rgba(0,178,254,0.1); border-color: var(--primary); transform: translateY(-4px); }
  .why-icon { font-size: 36px; margin-bottom: 16px; }
  .why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: white; }
  .why-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }

  /* TOOLS */
  .tools { background: var(--section-bg); }
  .tools-grid { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; justify-content: center; }
  .tool-item { display: flex; flex-direction: column; align-items: center; gap: 10px; background: white; border-radius: 14px; padding: 20px 24px; border: 1.5px solid #e5f5ff; min-width: 100px; transition: all 0.3s; }
  .tool-item:hover { border-color: var(--primary); box-shadow: 0 8px 24px rgba(0,178,254,0.15); transform: translateY(-3px); }
  .tool-icon { font-size: 32px; }
  .tool-name { font-size: 12px; font-weight: 600; color: var(--text); text-align: center; }

  /* BUSINESS SECTION */
  .business { background: white; }
  .business-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .business-list { list-style: none; margin-top: 24px; }
  .business-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 14px; line-height: 1.7; color: var(--muted); }
  .business-list li::before { content: '✓'; background: var(--primary); color: white; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
  .business-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .biz-card { background: var(--section-bg); border-radius: 16px; padding: 24px; border: 1.5px solid #e5f5ff; }
  .biz-card:first-child { background: linear-gradient(135deg, var(--primary), #0090d0); color: white; border: none; }
  .biz-card:first-child h4 { color: white; }
  .biz-card:first-child p { color: rgba(255,255,255,0.8); }
  .biz-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
  .biz-card p { font-size: 12px; color: var(--muted); line-height: 1.6; }
  .biz-num { font-size: 36px; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
  .biz-card:first-child .biz-num { color: white; }

  /* FAQ */
  .faq { background: var(--section-bg); }
  .faq-grid { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .faq-item { background: white; border-radius: 14px; border: 1.5px solid #e5f5ff; overflow: hidden; transition: border-color 0.2s; }
  .faq-item:hover { border-color: var(--primary); }
  .faq-q { padding: 18px 22px; font-size: 14px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
  .faq-toggle { width: 24px; height: 24px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 16px; flex-shrink: 0; transition: transform 0.3s; font-weight: 700; }
  .faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: all 0.3s; font-size: 13px; color: var(--muted); line-height: 1.8; }
  .faq-item.open .faq-a { max-height: 200px; padding: 0 22px 18px; }
  .faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--primary); color: white; }

  /* REVIEWS */
  .reviews { background: white; }
  .reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
  .review-card { background: var(--section-bg); border-radius: 16px; padding: 24px; border: 1.5px solid #e5f5ff; transition: all 0.3s; }
  .review-card:hover { border-color: var(--primary); box-shadow: 0 10px 30px rgba(0,178,254,0.1); }
  .review-stars { color: #FFB800; font-size: 14px; margin-bottom: 12px; }
  .review-text { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
  .reviewer { display: flex; align-items: center; gap: 10px; }
  .reviewer-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }
  .reviewer-name { font-size: 13px; font-weight: 700; }
  .reviewer-role { font-size: 11px; color: var(--muted); }

  /* FOOTER */
  footer { background: #0a1628; color: white; padding: 60px 5% 30px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
  .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-top: 12px; }
  .footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; color: white; }
  .footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
  .footer-col a:hover { color: var(--primary); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 12px; }

  @media (max-width: 768px) {
    .hero-grid, .about-grid, .business-grid, .footer-grid { grid-template-columns: 1fr; }
    .faq-grid, .reviews-grid { grid-template-columns: 1fr; }
    .about-icon-wrap { width: 100%; height: 220px; }
    nav .nav-links { display: none; }
  }
