/*
Theme Name: Click Taxi Barcelona
Theme URI: https://click-taxi.com
Author: Click Taxi
Description: Modern multicolor airport-transfer theme for Click Taxi Barcelona. 24/7 transfers, fixed prices, meet & greet. Includes booking widget, blog, FAQs and SEO schema.
Version: 2.0.0
License: GPL-2.0+
Text Domain: clicktaxi
*/

:root {
  --ct-bg: #fafbff;
  --ct-fg: #0f0a24;
  --ct-card: #ffffff;
  --ct-border: #e6e2f0;
  --ct-muted: #6a6580;
  --ct-violet: #7c3aed;
  --ct-pink: #ec4899;
  --ct-cyan: #06b6d4;
  --ct-amber: #f59e0b;
  --ct-orange: #f97316;
  --ct-grad-brand: linear-gradient(135deg, #7c3aed 0%, #c026d3 35%, #ec4899 70%, #f97316 100%);
  --ct-grad-sunset: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ec4899 100%);
  --ct-grad-hero: linear-gradient(135deg, #1a0f3d 0%, #3b1d80 35%, #6b2bb8 65%, #c026d3 100%);
  --ct-radius: 20px;
  --ct-shadow: 0 12px 40px -10px rgba(124,58,237,0.25);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--ct-bg); color: var(--ct-fg); font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; line-height: 1.6; }
a { color: var(--ct-violet); text-decoration: none; }
a:hover { color: var(--ct-pink); }
h1,h2,h3,h4 { font-family: 'Space Grotesk', system-ui, sans-serif; letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 .6em; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.ct-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--ct-border); }
.ct-header .container { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.ct-logo { font-family: 'Space Grotesk'; font-weight: 700; font-size: 22px; background: var(--ct-grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ct-nav { display: flex; gap: 22px; align-items: center; }
.ct-nav a { color: var(--ct-fg); font-weight: 500; font-size: 15px; }
.ct-cta { padding: 10px 20px; border-radius: 999px; background: var(--ct-grad-sunset); color: #fff !important; font-weight: 600; box-shadow: var(--ct-shadow); }
.ct-cta:hover { transform: translateY(-1px); }

/* Hero */
.ct-hero { position: relative; background: var(--ct-grad-hero); color: #fff; padding: 80px 0 100px; overflow: hidden; }
.ct-hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(ellipse at 10% 0%, rgba(124,58,237,0.45), transparent 60%),
  radial-gradient(ellipse at 90% 100%, rgba(236,72,153,0.4), transparent 60%),
  radial-gradient(ellipse at 80% 20%, rgba(6,182,212,0.3), transparent 60%); pointer-events: none; }
.ct-hero .container { position: relative; display: grid; gap: 40px; grid-template-columns: 1.1fr 1fr; align-items: center; }
.ct-hero h1 { font-size: clamp(36px, 5vw, 60px); }
.ct-hero h1 .accent { background: var(--ct-grad-sunset); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ct-hero p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 540px; }
.ct-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.ct-btn { display: inline-block; padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 16px; transition: transform .2s; }
.ct-btn-primary { background: var(--ct-grad-sunset); color: #fff !important; box-shadow: var(--ct-shadow); }
.ct-btn-outline { background: rgba(255,255,255,0.08); color: #fff !important; border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px); }
.ct-btn:hover { transform: translateY(-2px); }
@media (max-width: 900px) { .ct-hero .container { grid-template-columns: 1fr; } .ct-hero { padding: 60px 0 70px; } }

/* Booking widget panel */
.ct-booking-panel { background: rgba(255,255,255,0.06); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 8px; box-shadow: 0 24px 80px -20px rgba(0,0,0,0.5); }
.ct-booking-panel-title { background: var(--ct-grad-sunset); color: #fff; padding: 14px; border-radius: 18px; text-align: center; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.ct-booking-panel iframe { width: 100%; border: 0; border-radius: 18px; background: #fff; margin-top: 8px; display: block; }

/* Stats strip */
.ct-stats { background: #fff; border-top: 1px solid var(--ct-border); border-bottom: 1px solid var(--ct-border); padding: 28px 0; }
.ct-stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ct-stat { display: flex; align-items: center; gap: 14px; }
.ct-stat-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--ct-grad-brand); color: #fff; display: grid; place-items: center; font-size: 20px; }
.ct-stat-val { font-family: 'Space Grotesk'; font-weight: 700; font-size: 22px; }
.ct-stat-lbl { color: var(--ct-muted); font-size: 13px; }
@media (max-width: 700px) { .ct-stats .container { grid-template-columns: repeat(2, 1fr); } }

/* Sections */
.ct-section { padding: 80px 0; }
.ct-section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.ct-section-head h2 { font-size: clamp(28px, 4vw, 44px); }
.ct-section-head h2 .accent { background: var(--ct-grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ct-section-head p { color: var(--ct-muted); font-size: 17px; }
.ct-eyebrow { display: inline-block; padding: 6px 14px; border-radius: 999px; background: rgba(124,58,237,0.1); color: var(--ct-violet); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }

/* Card grid */
.ct-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.ct-card { background: var(--ct-card); border: 1px solid var(--ct-border); border-radius: var(--ct-radius); padding: 28px; box-shadow: 0 4px 18px -4px rgba(15,10,36,0.06); transition: transform .25s, box-shadow .25s; }
.ct-card:hover { transform: translateY(-4px); box-shadow: var(--ct-shadow); }
.ct-card-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--ct-grad-brand); color: #fff; display: grid; place-items: center; font-size: 22px; margin-bottom: 16px; box-shadow: 0 8px 24px -6px rgba(124,58,237,0.5); }
.ct-card:nth-child(2n) .ct-card-icon { background: var(--ct-grad-sunset); box-shadow: 0 8px 24px -6px rgba(249,115,22,0.5); }
.ct-card:nth-child(3n) .ct-card-icon { background: linear-gradient(135deg, #06b6d4, #7c3aed); box-shadow: 0 8px 24px -6px rgba(6,182,212,0.5); }
.ct-card h3 { font-size: 20px; }
.ct-card p { color: var(--ct-muted); margin: 0; }

/* How it works */
.ct-how { background: var(--ct-grad-hero); color: #fff; }
.ct-how .ct-section-head h2 { color: #fff; }
.ct-how .ct-section-head h2 .accent { background: var(--ct-grad-sunset); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ct-how .ct-section-head p { color: rgba(255,255,255,0.75); }
.ct-step { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--ct-radius); padding: 32px; text-align: center; backdrop-filter: blur(8px); }
.ct-step-num { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--ct-grad-sunset); margin: 0 auto 16px; font-family: 'Space Grotesk'; font-size: 22px; font-weight: 700; box-shadow: 0 8px 24px -6px rgba(249,115,22,0.6); }
.ct-step p { color: rgba(255,255,255,0.9); font-size: 17px; margin: 0; }

/* FAQ */
.ct-faq details { background: var(--ct-card); border: 1px solid var(--ct-border); border-radius: 16px; padding: 18px 22px; margin-bottom: 12px; }
.ct-faq summary { cursor: pointer; font-weight: 600; font-family: 'Space Grotesk'; font-size: 17px; }
.ct-faq details[open] summary { color: var(--ct-violet); }
.ct-faq p { color: var(--ct-muted); margin: 12px 0 0; }

/* Page content / blog */
.ct-page { padding: 60px 0; }
.ct-page-hero { background: var(--ct-grad-hero); color: #fff; padding: 60px 0; }
.ct-page-hero h1 { font-size: clamp(32px, 4vw, 48px); }
.ct-page-hero p { color: rgba(255,255,255,0.85); max-width: 720px; }
.ct-prose { max-width: 760px; margin: 0 auto; font-size: 17px; }
.ct-prose h2 { margin-top: 2em; font-size: 28px; }
.ct-prose h2::before { content: ""; display: block; width: 60px; height: 4px; background: var(--ct-grad-brand); border-radius: 4px; margin-bottom: 14px; }
.ct-prose ul { padding-left: 22px; }
.ct-prose img { border-radius: var(--ct-radius); margin: 20px 0; }

/* Blog grid */
.ct-blog-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.ct-blog-card { background: var(--ct-card); border: 1px solid var(--ct-border); border-radius: var(--ct-radius); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.ct-blog-card:hover { transform: translateY(-4px); box-shadow: var(--ct-shadow); }
.ct-blog-card img { aspect-ratio: 16/10; object-fit: cover; }
.ct-blog-card-body { padding: 24px; }
.ct-blog-card .ct-tag { display: inline-block; padding: 4px 12px; background: rgba(124,58,237,0.1); color: var(--ct-violet); font-size: 12px; font-weight: 600; border-radius: 999px; margin-bottom: 10px; }
.ct-blog-card h3 { font-size: 20px; margin-bottom: 8px; }
.ct-blog-card p { color: var(--ct-muted); font-size: 15px; margin: 0; }

/* WhatsApp FAB */
.ct-whatsapp-fab { position: fixed; bottom: 24px; right: 24px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff !important; display: grid; place-items: center; font-size: 30px; box-shadow: 0 10px 30px -5px rgba(37,211,102,0.5); animation: ct-pulse 2s infinite; }
@keyframes ct-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

/* Footer */
.ct-footer { background: #0f0a24; color: rgba(255,255,255,0.8); padding: 60px 0 30px; margin-top: 60px; }
.ct-footer .container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.ct-footer h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.ct-footer a { color: rgba(255,255,255,0.7); display: block; padding: 4px 0; }
.ct-footer a:hover { color: var(--ct-amber); }
.ct-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; margin-top: 40px; text-align: center; font-size: 14px; color: rgba(255,255,255,0.5); }
@media (max-width: 800px) { .ct-footer .container { grid-template-columns: 1fr 1fr; } }
