/* ENHANCED PROFESSIONAL WARM PALETTE */
    :root{
      /* Dark theme - Professional slate with warm accents */
      --bg:#1a1d24;           /* charcoal */
      --bg-elev:#242832;      /* steel gray */
      --card:#2a2f3a;         /* slate */
      --text:#f4f6f8;         /* off-white */
      --muted:#a8adb8;        /* gray */
      --line:rgba(255,255,255,.12);
      --overlay:rgba(20,23,30,.75);

      --primary:#f59e0b;      /* warm amber */
      --accent:#ef4444;       /* coral red */
      --secondary:#10b981;    /* emerald */
      --grad:linear-gradient(135deg, var(--primary), var(--accent));
      --grad-soft:linear-gradient(180deg, rgba(245,158,11,.08), rgba(239,68,68,.04));
      --shadow:0 20px 40px rgba(0,0,0,.4);

      --btn-border:rgba(255,255,255,.2);
      --focus:rgba(245,158,11,.3);
      --chip-bg:rgba(245,158,11,.15);
      --chip-line:rgba(245,158,11,.3);
      --pill-bg:rgba(245,158,11,.12);
      --pill-line:rgba(245,158,11,.25);

      --hero-grad-1: radial-gradient(1200px 800px at 70% -5%, rgba(245,158,11,.12), transparent 65%);
      --hero-grad-2: radial-gradient(1000px 600px at -5% 25%, rgba(239,68,68,.08), transparent 65%);
    }

    /* Light theme - Cool & Crisp (Alternative) */
    html[data-theme="light"]{
      --bg:#f0f4f8;                   /* Light, cool blue-gray background */
      --bg-elev:#ffffff;                 /* Crisp white cards */
      --card:#ffffff;
      --text:#2c3e50;                   /* Dark slate blue for high contrast */
      --muted:#52616B;                  /* Muted blue-gray for secondary text */
      --line:rgba(44, 62, 80, .1);      /* Subtle line based on text color */
      --overlay:rgba(240, 244, 248, .85);
      --shadow:0 12px 28px rgba(44, 62, 80, .1); /* Softer, cool-toned shadow */

      --btn-border:rgba(44, 62, 80, .15);
      --focus:rgba(245, 158, 11, .3);
      --chip-bg:rgba(245, 158, 11, .1);
      --chip-line:rgba(245, 158, 11, .2);
      --pill-bg:rgba(245, 158, 11, .08);
      --pill-line:rgba(245, 158, 11, .2);

      --hero-grad-1: radial-gradient(1200px 800px at 70% -5%, rgba(245,158,11,.05), transparent 65%);
      --hero-grad-2: radial-gradient(1000px 600px at -5% 25%, rgba(239,68,68,.03), transparent 65%);
    }

    /* Base styles with new typography */
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: "Roboto", system-ui, -apple-system, Segoe UI, Helvetica, Arial;
      color:var(--text);
      background: var(--hero-grad-1), var(--hero-grad-2), var(--bg);
      line-height:1.6;
    }
    a{color:inherit; text-decoration:none}
    img{max-width:100%; display:block}

    /* Headings with Poppins */
    h1,h2,h3,h4,h5,h6{
      font-family: "Poppins", sans-serif;
      font-weight: 800;
      line-height: 1.3;
      letter-spacing: -.02em;
    }

    /* Layout containers */
    .wrap{max-width:1200px; margin:0 auto; padding:0 20px}
    .section{max-width:1200px; margin:0 auto; padding:60px 20px}
    .grid{display:grid; gap:24px; grid-template-columns: repeat(12, 1fr)}

    /* Header - Clean minimal design */
    .nav{
      position:sticky; top:0; z-index:1000;
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      background: var(--overlay);
      border-bottom:2px solid var(--line);
      box-shadow: 0 2px 20px rgba(0,0,0,.1);
    }
    html[data-theme="light"] .nav{
      box-shadow: 0 2px 20px rgba(44,62,80,.04);
    }
    .nav-inner{
      max-width:1200px; margin:0 auto;
      display:flex; align-items:center; justify-content:space-between;
      padding:16px 20px;
    }
    .brand{display:flex; align-items:center; gap:16px}
    .brand h1{
      font-family: "Poppins", sans-serif;
      font-size:22px; margin:0; font-weight:800;
      background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent;
    }
    .nav-links{display:flex; gap:32px}
    .nav-links a{
      padding:12px 16px; border-radius:8px; color:var(--muted);
      font-weight:500; transition: all .2s ease;
    }
    .nav-links a:hover{background:rgba(245,158,11,.1); color:var(--text)}

    /* Buttons and Theme Toggle */
    .cta {
      background: #e09221;
      color: white;
      padding: 14px 24px;
      border-radius: 25px;
      font-weight: 700;
      border: 0;
      box-shadow: 0 6px 18px rgba(224, 146, 33, .25);
      transition: all .2s ease;
      font-family: "Poppins", sans-serif;
    }

    .cta:hover {
      transform: translateY(-2px);
      background: #ea9e31;
      box-shadow: 0 10px 25px rgba(224, 146, 33, .3);
    }

    .btn {
      background: transparent;
      border: 2px solid var(--btn-border);
      color: var(--text);
      padding: 12px 20px;
      border-radius: 25px;
      font-weight: 600;
      transition: all .2s ease;
      font-family: "Poppins", sans-serif;
    }

    .btn:hover {
      border-color: var(--primary);
      background: rgba(245, 158, 11, .05);
      transform: translateY(-1px)
    }

    .theme-toggle{
      display:flex; align-items:center; gap:8px;
      margin-left:16px; padding:10px 16px; border-radius:20px;
      border:2px solid var(--btn-border); color:var(--text);
      background:rgba(245,158,11,.05); cursor:pointer; font-weight:600;
      transition: all .2s ease;
    }
    .theme-toggle:focus-visible{ outline:3px solid var(--focus); outline-offset:2px }
    .theme-toggle:hover{ border-color:var(--primary); background:rgba(245,158,11,.1) }
    .theme-icon{ font-size:18px; line-height:0 }

    /* Hero section - Bold and striking */
    .hero{
      max-width:1200px; margin:0 auto; padding:80px 20px 60px;
      display:grid; gap:40px; grid-template-columns: 1.2fr .8fr;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px; color:var(--primary);
      background:var(--chip-bg); padding:8px 16px; border:2px solid var(--chip-line);
      border-radius:20px; font-size:14px; font-weight:600;
      box-shadow: 0 4px 16px rgba(245,158,11,.2);
    }
    .hero h2{
      font-family: "Poppins", sans-serif;
      font-size:52px; line-height:1.1; margin:16px 0 12px; font-weight:800;
      background:linear-gradient(135deg, var(--text), var(--muted));
      -webkit-background-clip:text; background-clip:text; color:transparent;
    }
    .hero p{color:var(--muted); font-size:20px; margin:0 0 24px; font-weight:400}
    .actions{display:flex; gap:16px; flex-wrap:wrap}

    /* Showcase - Clean card design */
    .showcase{
      background:var(--card); border:2px solid var(--line);
      border-radius:24px; padding:24px;
      box-shadow: var(--shadow);
      transition: all .3s ease;
      align-self: start;
    }
    .showcase:hover{ transform: translateY(-4px); }
    html[data-theme="dark"] .showcase:hover{
      box-shadow: 0 24px 48px rgba(0,0,0,.3);
    }
    html[data-theme="light"] .showcase:hover{
      box-shadow: 0 8px 25px rgba(44,62,80,.08);
    }
    .showcase-art{
      aspect-ratio: 16/10; border-radius:16px;
      position:relative; overflow:hidden;
      background:
        linear-gradient(135deg, rgba(245,158,11,.2), rgba(239,68,68,.1)),
        url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat,
        var(--bg-elev);
    }
    .chip{
      position:absolute; inset:auto 20px 20px auto;
      background:rgba(245,158,11,.9); border:none;
      padding:8px 16px; border-radius:12px; color:white; font-size:12px; font-weight:700;
      backdrop-filter: blur(8px); box-shadow: 0 4px 12px rgba(0,0,0,.3);
    }

    .pill{
      display:inline-block; font-size:12px; color:var(--primary);
      background:var(--pill-bg); border:1px solid var(--pill-line);
      padding:6px 12px; border-radius:15px; margin:4px 6px 4px 0;
      font-weight:600; letter-spacing:.02em;
    }

    /* Back button hover effects */
    .back-btn:hover {
      transform: translateX(-4px);
      border-color: var(--primary);
      background: var(--bg-elev);
      box-shadow: 0 4px 12px rgba(0,0,0,.1);
    }

    /* Cards - Professional styling */
    .card{
      grid-column: span 6;
      background: var(--card); border:2px solid var(--line);
      border-radius:20px; padding:28px;
      transition: all .3s ease;
      box-shadow: var(--shadow);
    }
    .card:hover{
      transform: translateY(-8px);
      border-color: var(--primary);
    }
    html[data-theme="dark"] .card:hover{
      box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }
    html[data-theme="light"] .card:hover{
      box-shadow: 0 12px 30px rgba(44,62,80,.08);
    }
    .card h4{
      font-family: "Poppins", sans-serif;
      margin:0 0 12px; font-weight:700; font-size:18px;
      color:var(--primary); display:flex; align-items:center; gap:8px;
    }
    .card p{color:var(--muted); margin:0 0 16px; font-size:16px}
    .card .card-cta-container { display: flex; flex-direction: column; gap: 16px; }
    .card ul { list-style: none; padding-left: 0; margin: 0 0 16px 0; }

    .trusted-logo {
      background: #fff;
      border-radius: 8px;
      padding: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.10);
      transition: box-shadow 0.2s;
      display: inline-block;
    }
    html[data-theme="light"] .trusted-logo {
      background: #f0f4f8;
      box-shadow: 0 2px 8px rgba(44,62,80,0.06);
    }
    .card li { color: var(--muted); margin-bottom: 8px; position: relative; padding-left: 20px; }
    .card li::before { content: '✓'; color: var(--primary); position: absolute; left: 0; }

    /* Layout utilities */
    .flex-center {
      display: flex;
      align-items: center;
    }

    .flex-with-gap {
      display: flex;
      gap: 20px;
    }

    .back-section {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
    }

    .back-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      border-radius: 20px;
      background: var(--card);
      border: 2px solid var(--line);
      color: var(--text);
      font-weight: 600;
      transition: all .2s ease;
    }

    .back-arrow {
      font-size: 18px;
    }

    .footer-brand {
      width: 32px;
      height: 32px;
      font-size: 14px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: var(--grad);
      color: #fff;
      font-weight: 800;
    }

    .span-6 {
      grid-column: span 6;
    }

    .span-4 {
      grid-column: span 4;
    }

    /* Section styling */
    .section h3{
      font-family: "Poppins", sans-serif;
      font-size:32px; margin:0 0 16px; font-weight:800;
      background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent;
      display:flex; align-items:center; gap:12px;
    }
    .section p.lead{color:var(--muted); margin:0 0 40px; font-size:18px}

    /* Section icons */
    .section-icon{
      font-size:42px; color:var(--primary);
      background:rgba(245,158,11,.1);
      padding:8px; border-radius:12px;
      display:inline-block; line-height:1;
    }

    /* Service icons */
    .service-icon{
      font-size:24px; color:var(--primary);
      background:rgba(245,158,11,.1);
      padding:6px; border-radius:8px;
      display:inline-block; line-height:1;
    }

    /* Footer */
    footer{
      margin-top:40px; border-top:2px solid var(--line);
      color:var(--muted);
    }
    html[data-theme="light"] footer{
      background: linear-gradient(180deg, transparent, rgba(245,158,11,.02));
    }
    html[data-theme="dark"] footer{
      background: linear-gradient(180deg, transparent, rgba(0,0,0,.03));
    }
    .foot{
      max-width:1200px; margin:0 auto; padding:24px 20px;
      display:flex; flex-wrap:wrap; align-items:center; gap:16px; justify-content:space-between;
    }

    .footer-main{ max-width:1200px; margin:0 auto 30px auto; display:grid; grid-template-columns:repeat(auto-fit, minmax(250px, 1fr)); gap:30px; }
    .footer-column h4{ color:var(--primary); font-size:18px; margin-bottom:16px; font-weight:700; }
    .footer-column p, .footer-column address{ line-height:1.7; font-style:normal; margin-bottom:1em; }
    .footer-column ul{ list-style:none; padding:0; margin:0; }
    .footer-column ul li{ margin-bottom:12px; }
    .footer-column ul a, .footer-contact-link, .footer-legal-links a { color:var(--muted); text-decoration:none; transition:color 0.2s ease; }
    .footer-column ul a:hover, .footer-contact-link:hover, .footer-legal-links a:hover { color:var(--primary); }
    .footer-contact-link{ display:block; margin-bottom:8px; }
    .footer-bottom{ max-width:1200px; margin:0 auto; padding-top:20px; border-top:1px solid var(--line); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; font-size:14px; }
    .footer-legal-links{ display:flex; gap:12px; }

    /* OEM strip - Clean corporate style */
    .oem-strip{
      display:flex; gap:32px; flex-wrap:wrap; align-items:center;
      justify-content: center; padding:24px 0; opacity:1;
    }
    .oem-strip img{
      height:48px; width:auto; opacity:.8;
      transition: all .3s ease; border-radius:8px;
      filter: grayscale(1) brightness(.9);
      object-fit: contain;
    }
    .oem-strip img:hover{
      transform: translateY(-3px) scale(1.05);
      filter: none; opacity:1;
      box-shadow: 0 8px 20px rgba(245,158,11,.2);
    }

    /* Contact section */
    .contact {
      display: grid;
      grid-template-columns: 1fr 1fr; /* Two equal columns */
      gap: 32px;
      align-items: stretch; /* This makes both columns equal height */
    }

    .contact .form,
    .contact .info {
      background: var(--card);
      border: 2px solid var(--line);
      border-radius: 24px;
      padding: 32px;
      box-shadow: var(--shadow);
      display: flex; /* Use flexbox for internal alignment */
      flex-direction: column; /* Stack content vertically */
    }

    .contact .info h4 {
      font-family: "Poppins", sans-serif;
      color: var(--primary);
      margin-top: 0;
    }

    .contact .info p {
      color: var(--muted);
      flex-grow: 1; /* Allows this element to push the map down */
    }

    .contact .info .row {
      display: flex;
      gap: 12px;
      margin: 8px 0;
      color: var(--muted);
    }

    .contact .info .map-container {
      margin-top: 24px;
      border-radius: 16px;
      overflow: hidden;
      border: 2px solid var(--line);
      line-height: 0; /* Fixes extra space below iframe */
    }

    .field{display:flex; flex-direction:column; gap:8px; margin-bottom:20px}
    label{
      font-size:14px; color:var(--primary); font-weight:700;
      font-family: "Poppins", sans-serif;
    }
    input, textarea, select{
      background:var(--bg-elev); border:2px solid var(--btn-border); color:var(--text);
      border-radius:12px; padding:14px; outline:none; font:inherit;
      transition: all .2s ease;
    }
    input:focus, textarea:focus, select:focus{
      border-color: var(--primary);
      box-shadow:0 0 0 3px rgba(245,158,11,.2);
    }
    .submit{
      background:var(--grad); color:white; border:0; border-radius:25px;
      padding:16px 24px; font-weight:800; font-family: "Poppins", sans-serif;
      box-shadow:0 8px 24px rgba(245,158,11,.4);
    }

  /* Responsive */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 60px;
    gap: 32px;
  }
  .hero h2 {
    font-size: 42px;
  }
  .contact,
  .about {
    grid-template-columns: 1fr;
  }
  .card,
  .span-4,
  .span-6 {
    grid-column: span 12;
  }
  .nav-links {
    display: none;
  }
  .oem-strip {
    gap: 20px;
  }
  .oem-strip img {
    height: 28px;
  }
  .section {
    padding: 40px 20px;
  }
  .brand-logos {
    gap: 10px;
  }
  .brand-logos img {
    height: 20px;
  }
  .footer-bottom {
    justify-content: center;
    gap: 24px;
  }

  /* --- MODIFICATIONS START HERE --- */

  /* Center the text inside the main footer columns */
  .footer-column {
    text-align: center;
  }

  /* Center the items in the very bottom footer bar */
  .foot {
    justify-content: center;
  }
}
/* --- Add this to the end of your style.css file --- */

/* This targets ONLY the CTA buttons inside your blog list section */
.blog-list-section .card .cta {
  padding: 10px 20px; /* Reduced padding for a smaller button */
  text-align: center;
}

/* This still centers the button container, which is fine to apply generally */
.card .card-cta-container {
  align-items: center;
}
.cta-card {
  border-color: var(--primary);
}



