/* =========================================================
   CoreAxis Ventures - Main Stylesheet
   ========================================================= */

.hp-field{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; opacity:0; }

:root{
  --primary: #0b2545;
  --primary-dark: #071a33;
  --primary-light: #13355e;
  --accent: #d4a017;
  --accent-light: #f2c94c;
  --text-dark: #1b1f27;
  --text-light: #5c6577;
  --bg-light: #f6f8fb;
  --bg-white: #ffffff;
  --border-color: #e5e9f0;
  --success: #1e9e5a;
  --danger: #d64545;
  --radius: 10px;
  --shadow-sm: 0 2px 8px rgba(11,37,69,0.06);
  --shadow-md: 0 8px 24px rgba(11,37,69,0.10);
  --shadow-lg: 0 16px 40px rgba(11,37,69,0.16);
  --transition: all .3s ease;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

[data-theme="dark"]{
  --primary: #13355e;
  --primary-dark: #0b2545;
  --primary-light: #1c4a7d;
  --text-dark: #eef1f6;
  --text-light: #b4bccb;
  --bg-light: #0d1526;
  --bg-white: #121d33;
  --border-color: #223252;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.35);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.45);
}

*,*::before,*::after{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  transition: background .3s ease, color .3s ease;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,textarea,select{ font-family:inherit; }

h1,h2,h3,h4,h5,h6{ font-family: var(--font-heading); color: var(--text-dark); line-height:1.25; font-weight:600; }
h1{ font-size:2.75rem; font-weight:700; }
h2{ font-size:2.1rem; font-weight:700; }
h3{ font-size:1.4rem; }
p{ color: var(--text-light); }

.container{ width:100%; max-width:1220px; margin:0 auto; padding:0 20px; }
.section{ padding:80px 0; }
.section-sm{ padding:50px 0; }
.text-center{ text-align:center; }

.section-tag{
  display:inline-block; padding:6px 16px; border-radius:30px;
  background: rgba(212,160,23,0.12); color: var(--accent); font-weight:600;
  font-size:.8rem; letter-spacing:1px; text-transform:uppercase; margin-bottom:14px;
}
.section-head{ max-width:680px; margin:0 auto 50px; text-align:center; }
.section-head p{ margin-top:12px; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 30px; border-radius:8px; font-weight:600; font-size:.95rem;
  border:2px solid transparent; transition: var(--transition); cursor:pointer;
}
.btn-primary{ background: var(--accent); color:#1b1f27; }
.btn-primary:hover{ background: var(--accent-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline{ border-color: rgba(255,255,255,0.5); color:#fff; }
.btn-outline:hover{ background: rgba(255,255,255,0.12); }
.btn-dark{ background: var(--primary); color:#fff; }
.btn-dark:hover{ background: var(--primary-light); }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 20px; font-size:.85rem; }

/* Top Bar */
.topbar{
  background: var(--primary-dark); color:#cdd6e4; font-size:.85rem;
  padding:8px 0;
}
.topbar .container{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px; }
.topbar-left{ display:flex; gap:22px; flex-wrap:wrap; }
.topbar-left span, .topbar-left a{ display:inline-flex; align-items:center; gap:6px; color:#cdd6e4; }
.topbar-social{ display:flex; gap:14px; }
.topbar-social a{ color:#cdd6e4; transition:var(--transition); }
.topbar-social a:hover{ color: var(--accent); }

/* Header / Nav */
.header{
  position: sticky; top:0; z-index:999; background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}
.navbar{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
.brand{ display:flex; align-items:center; gap:10px; font-family:var(--font-heading); font-weight:700; font-size:1.3rem; color:var(--text-dark); }
.brand img{ height:42px; width:auto; }
.brand .accent{ color: var(--accent); }

.nav-menu{ display:flex; align-items:center; gap:32px; }
.nav-menu > li{ position:relative; }
.nav-menu > li > a{
  font-weight:500; color: var(--text-dark); padding:10px 0; display:flex; align-items:center; gap:6px;
  transition: var(--transition);
}
.nav-menu > li > a:hover, .nav-menu > li.active > a{ color: var(--accent); }

/* Mega menu - flyout parent-child */
.nav-menu > li.has-mega{ position:relative; }
.mega-menu{
  position:absolute; left:0; top:100%; min-width:240px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18); border-top:3px solid var(--accent);
  display:none; z-index:1000; padding:6px 0; border-radius:0 0 10px 10px;
}
[data-theme="dark"] .mega-menu{ background: var(--bg-white); }
.has-mega:hover .mega-menu{ display:block; }
.mega-menu-list{ list-style:none; padding:0; margin:0; }
.mega-menu-list > li{ position:relative; }
.mega-menu-list > li > .mega-parent{
  display:flex; align-items:center; gap:10px; padding:11px 20px;
  font-size:.9rem; font-weight:600; color:var(--primary);
  cursor:pointer; transition:var(--transition); justify-content:space-between;
}
.mega-menu-list > li > .mega-parent:hover{ background:var(--bg-light); color:var(--accent); }
.mega-menu-list > li > .mega-parent .mega-icon{ display:flex; align-items:center; gap:8px; }
.mega-menu-list > li > .mega-parent .mega-icon i{ font-size:.85rem; color:var(--accent); width:20px; text-align:center; }
.mega-menu-list > li > .mega-parent .mega-arrow{ font-size:.65rem; color:var(--text-light); transition:var(--transition); }
.mega-menu-list > li:hover > .mega-parent .mega-arrow{ color:var(--accent); }
.mega-menu-list > li + li{ border-top:1px solid var(--border-color); }
.mega-sub{
  position:absolute; left:100%; top:0; min-width:230px;
  background:#ffffff; list-style:none; padding:6px 0; margin:0;
  box-shadow: 8px 8px 30px rgba(0,0,0,0.15); border-radius:0 10px 10px 0;
  display:none; z-index:1001;
}
[data-theme="dark"] .mega-sub{ background: var(--bg-white); }
.mega-menu-list > li:hover > .mega-sub{ display:block; }
.mega-sub > li{}
.mega-sub > li > a{
  display:flex; align-items:center; gap:6px; padding:10px 20px;
  font-size:.88rem; color:var(--text-light); transition:var(--transition); white-space:nowrap;
}
.mega-sub > li > a:hover{ color:var(--accent); background:var(--bg-light); padding-left:24px; }
.mega-sub > li + li{ border-top:1px solid var(--border-color); }

.nav-actions{ display:flex; align-items:center; gap:14px; }
.theme-toggle{
  width:40px; height:40px; border-radius:50%; border:1px solid var(--border-color);
  background:var(--bg-light); display:flex; align-items:center; justify-content:center;
  color:var(--primary); transition:var(--transition);
}
.theme-toggle:hover{ background:var(--accent); color:#fff; }
.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; }
.nav-toggle span{ width:26px; height:3px; background:var(--primary); border-radius:3px; transition:var(--transition); }

/* Hero */
.hero{
  position:relative; background: linear-gradient(120deg, var(--primary-dark), var(--primary) 60%, var(--primary-light));
  color:#fff; padding:120px 0 100px; overflow:hidden;
}
.hero::before{
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at 80% 20%, rgba(212,160,23,0.25), transparent 45%);
}
.hero-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:50px; align-items:center; position:relative; z-index:2; }
.hero-badge{
  display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.25); padding:8px 18px; border-radius:30px; font-size:.85rem; margin-bottom:22px;
}
.hero h1{ color:#fff; font-size:3.1rem; margin-bottom:18px; }
.hero h1 .highlight{ color: var(--accent-light); }
.hero-tags{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:22px; }
.hero-tags span{ background:rgba(255,255,255,0.1); padding:6px 16px; border-radius:20px; font-size:.85rem; }
.hero p.lead{ color:#d7deec; font-size:1.05rem; max-width:520px; margin-bottom:34px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-visual{
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.18);
  border-radius:20px; padding:20px; backdrop-filter: blur(6px);
}
.hero-visual img{ border-radius:14px; width:100%; }
.hero-stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:0; margin-top:-40px; position:relative; z-index:3; }
.hero-stat-card{
  background:var(--bg-white); padding:26px 20px; text-align:center; box-shadow:var(--shadow-md);
  border-right:1px solid var(--border-color);
}
.hero-stat-card:last-child{ border-right:none; }
.hero-stat-card h3{ color:var(--accent); font-size:2rem; }
.hero-stat-card p{ font-size:.85rem; margin-top:4px; }

/* Page Banner (inner pages) */
.page-banner{
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  color:#fff; padding:70px 0 50px; text-align:center;
}
.page-banner h1{ color:#fff; font-size:2.4rem; }
.breadcrumb{ display:flex; gap:8px; justify-content:center; margin-top:14px; color:#c6cfe0; font-size:.9rem; }
.breadcrumb a{ color:#c6cfe0; }
.breadcrumb a:hover{ color:var(--accent); }

/* Cards */
.grid{ display:grid; gap:28px; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }

.card{
  background:var(--bg-white); border-radius:var(--radius); padding:32px 26px;
  box-shadow:var(--shadow-sm); border:1px solid var(--border-color);
  transition:var(--transition);
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent; }
.card-icon{
  width:60px; height:60px; border-radius:14px; background:rgba(212,160,23,0.12);
  color:var(--accent); display:flex; align-items:center; justify-content:center; font-size:1.5rem; margin-bottom:18px;
}
.card h3{ margin-bottom:10px; font-size:1.15rem; }
.card p{ font-size:.92rem; }
.card-link{ display:inline-flex; align-items:center; gap:6px; margin-top:16px; font-weight:600; color:var(--primary); font-size:.9rem; }
.card-link:hover{ color:var(--accent); }

/* Service Detail Card */
.service-detail{
  background:var(--bg-white); border-radius:16px; box-shadow:var(--shadow-sm); border:1px solid var(--border-color);
  overflow:hidden; margin-bottom:40px;
}
.service-detail-head{ display:flex; align-items:center; gap:18px; padding:28px 30px; background:var(--bg-light); border-bottom:1px solid var(--border-color); }
.service-detail-head .num{ font-family:var(--font-heading); font-size:1.6rem; font-weight:700; color:var(--accent); }
.service-detail-body{ padding:30px; }
.tag-list{ display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; }
.tag-list span{
  background:var(--bg-light); border:1px solid var(--border-color); padding:7px 14px; border-radius:20px; font-size:.82rem; color:var(--text-dark);
}

/* Why choose us / features */
.feature-row{ display:flex; gap:18px; align-items:flex-start; margin-bottom:26px; }
.feature-row .ico{ width:50px; height:50px; flex:0 0 50px; border-radius:12px; background:var(--primary); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.2rem; }
.feature-row h4{ margin-bottom:6px; font-size:1.05rem; }
.feature-row p{ font-size:.9rem; }

/* Stats */
.stats-band{ background:var(--primary); color:#fff; padding:60px 0; }
.stats-band .grid-4{ text-align:center; }
.stats-band h3{ color:var(--accent-light); font-size:2.4rem; }
.stats-band p{ color:#c6cfe0; margin-top:6px; }

/* Process steps */
.process-step{ text-align:center; position:relative; padding:20px; }
.process-step .step-no{
  width:56px; height:56px; border-radius:50%; background:var(--primary); color:#fff;
  display:flex; align-items:center; justify-content:center; margin:0 auto 18px; font-weight:700; font-family:var(--font-heading);
}

/* Testimonial Carousel (shared component — used on homepage + /testimonials/) */
.testi-carousel{ position:relative; overflow:hidden; padding:0 0 50px; }
.testi-track{ display:flex; transition:transform .5s ease; cursor:grab; touch-action:pan-y; }
.testi-track.dragging{ cursor:grabbing; transition:none; }
.testi-slide{ min-width:33.333%; padding:0 12px; box-sizing:border-box; }
@media(max-width:991px){ .testi-slide{ min-width:50%; } }
@media(max-width:600px){ .testi-slide{ min-width:100%; } }
.testi-card{
  background:var(--bg-white); border-radius:16px; padding:30px 28px; height:100%;
  box-shadow:var(--shadow-md); border:1px solid var(--border-color);
  display:flex; flex-direction:column; gap:16px; transition:var(--transition); position:relative;
  user-select:none;
}
.testi-track.dragging .testi-card{ pointer-events:none; }
.testi-card::before{
  content:'\201C'; position:absolute; top:12px; right:20px;
  font-size:4rem; line-height:1; color:var(--accent); opacity:.15; font-family:Georgia,serif;
}
.testi-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.testi-card .stars{ color:var(--accent); font-size:.9rem; display:flex; gap:2px; }
.testi-card .testi-text{ flex:1; color:var(--text-light); font-size:.95rem; line-height:1.7; font-style:italic; }
.testi-card .testi-author{ display:flex; align-items:center; gap:12px; padding-top:14px; border-top:1px solid var(--border-color); }
.testi-avatar{
  width:46px; height:46px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:1.1rem; flex-shrink:0;
}
.testi-author h5{ font-size:.92rem; color:var(--text-dark); margin:0; }
.testi-author span{ font-size:.8rem; color:var(--text-light); }
.testi-badge{
  display:inline-flex; align-items:center; gap:5px; font-size:.72rem; font-weight:600;
  padding:4px 10px; border-radius:20px; background:var(--bg-light); color:var(--primary);
  border:1px solid var(--border-color); width:fit-content;
}
.testi-nav{ display:flex; justify-content:center; align-items:center; gap:16px; margin-top:10px; }
.testi-arrow{
  width:42px; height:42px; border-radius:50%; border:2px solid var(--border-color);
  background:var(--bg-white); display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:var(--transition); color:var(--primary); font-size:.9rem;
}
.testi-arrow:hover{ background:var(--accent); color:#fff; border-color:var(--accent); }
.testi-dots{ display:flex; gap:8px; }
.testi-dot{
  width:10px; height:10px; border-radius:50%; background:var(--border-color);
  cursor:pointer; transition:var(--transition); border:none;
}
.testi-dot.active{ background:var(--accent); width:28px; border-radius:10px; }
.testi-section-label{
  display:inline-flex; align-items:center; gap:8px; font-size:1.1rem; font-weight:700;
  color:var(--primary); margin-bottom:18px; padding:8px 18px; border-radius:10px;
  background:var(--bg-white); border:1px solid var(--border-color); box-shadow:var(--shadow-sm);
}
.testi-section-label i{ color:var(--accent); }

/* Software Downloads */
.download-grid{ display:grid; grid-template-columns:repeat(auto-fill, minmax(320px, 1fr)); gap:26px; }
.download-card{
  background:var(--bg-white); border:1px solid var(--border-color); border-radius:16px; padding:24px;
  box-shadow:var(--shadow-sm); transition:var(--transition); display:flex; flex-direction:column;
}
.download-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.download-card-top{ display:flex; align-items:center; gap:16px; margin-bottom:16px; }
.download-icon{ width:60px; height:60px; border-radius:14px; object-fit:cover; flex-shrink:0; background:var(--bg-light); }
.download-icon.placeholder{ display:flex; align-items:center; justify-content:center; color:var(--accent); font-size:1.6rem; border:1px solid var(--border-color); }
.download-card-top h3{ font-size:1.15rem; margin:0 0 6px; }
.download-meta{ display:flex; flex-wrap:wrap; gap:12px; font-size:.78rem; color:var(--text-light); }
.download-meta i{ color:var(--accent); margin-right:3px; }
.download-preview{ width:100%; height:160px; object-fit:cover; border-radius:12px; margin-bottom:16px; border:1px solid var(--border-color); }
.download-desc{ font-size:.9rem; color:var(--text-light); line-height:1.6; margin:0 0 20px; flex:1; }
.download-actions{ display:flex; gap:10px; flex-wrap:wrap; }

.sw-detail{ display:grid; grid-template-columns:1fr 1.4fr; gap:40px; align-items:start; }
@media(max-width:860px){ .sw-detail{ grid-template-columns:1fr; } }
.sw-detail-side{ background:var(--bg-white); border:1px solid var(--border-color); border-radius:16px; padding:28px; box-shadow:var(--shadow-sm); text-align:center; position:sticky; top:90px; }
.sw-detail-icon{ width:96px; height:96px; border-radius:20px; object-fit:cover; margin:0 auto 16px; background:var(--bg-light); }
.sw-detail-icon.placeholder{ display:flex; align-items:center; justify-content:center; color:var(--accent); font-size:2.4rem; border:1px solid var(--border-color); }
.sw-detail-side h1{ font-size:1.5rem; margin:0 0 6px; }
.sw-detail-meta{ font-size:.85rem; color:var(--text-light); margin-bottom:20px; }
.sw-detail-meta span{ display:inline-block; margin:0 6px; }
.sw-gallery{ display:grid; grid-template-columns:repeat(auto-fill, minmax(200px,1fr)); gap:16px; margin-top:20px; }
.sw-gallery img{ width:100%; border-radius:12px; border:1px solid var(--border-color); cursor:pointer; }
.sw-detail-desc{ font-size:1rem; line-height:1.8; color:var(--text-dark); white-space:pre-line; }

/* FAQ Accordion */
.accordion-item{ background:var(--bg-white); border:1px solid var(--border-color); border-radius:10px; margin-bottom:14px; overflow:hidden; }
.accordion-head{ display:flex; justify-content:space-between; align-items:center; padding:20px 24px; cursor:pointer; font-weight:600; }
.accordion-head i{ transition:var(--transition); color:var(--accent); }
.accordion-item.active .accordion-head i{ transform:rotate(45deg); }
.accordion-body{ max-height:0; overflow:hidden; transition:max-height .35s ease; padding:0 24px; }
.accordion-item.active .accordion-body{ padding:0 24px 20px; }

/* Gallery */
.gallery-filters{ display:flex; justify-content:center; gap:12px; flex-wrap:wrap; margin-bottom:36px; }
.gallery-filters button{
  padding:9px 20px; border-radius:30px; border:1px solid var(--border-color); background:var(--bg-white); font-weight:500; font-size:.88rem; transition:var(--transition);
}
.gallery-filters button.active,.gallery-filters button:hover{ background:var(--primary); color:#fff; border-color:var(--primary); }
.gallery-item{ position:relative; border-radius:12px; overflow:hidden; cursor:pointer; box-shadow:var(--shadow-sm); }
.gallery-item img{ width:100%; height:230px; object-fit:cover; transition:var(--transition); }
.gallery-item:hover img{ transform:scale(1.08); }
.gallery-overlay{
  position:absolute; inset:0; background:linear-gradient(0deg, rgba(11,37,69,0.85), transparent 60%);
  display:flex; align-items:flex-end; padding:16px; opacity:0; transition:var(--transition); color:#fff; font-weight:600; font-size:.9rem;
}
.gallery-item:hover .gallery-overlay{ opacity:1; }
.lightbox{ position:fixed; inset:0; background:rgba(7,26,51,0.92); display:none; align-items:center; justify-content:center; z-index:2000; padding:30px; }
.lightbox.active{ display:flex; }
.lightbox img{ max-width:90%; max-height:85vh; border-radius:10px; }
.lightbox-close{ position:absolute; top:24px; right:34px; color:#fff; font-size:2rem; cursor:pointer; }
.lightbox-nav{ position:absolute; top:50%; transform:translateY(-50%); color:#fff; font-size:2rem; cursor:pointer; padding:10px; }
.lightbox-prev{ left:20px; } .lightbox-next{ right:20px; }

/* Blog */
.blog-card{ background:var(--bg-white); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); border:1px solid var(--border-color); transition:var(--transition); }
.blog-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-6px); }
.blog-card img{ height:200px; width:100%; object-fit:cover; }
.blog-card-body{ padding:24px; }
.blog-meta{ display:flex; gap:16px; font-size:.8rem; color:var(--text-light); margin-bottom:10px; }
.blog-meta span{ display:flex; align-items:center; gap:6px; }
.blog-card h3{ font-size:1.1rem; margin-bottom:10px; }

/* Team */
.team-card{ background:var(--bg-white); border-radius:var(--radius); overflow:hidden; text-align:center; box-shadow:var(--shadow-sm); border:1px solid var(--border-color); }
.team-card img{ width:100%; height:260px; object-fit:cover; }
.team-card-body{ padding:22px; }
.team-social{ display:flex; justify-content:center; gap:10px; margin-top:14px; }
.team-social a{ width:34px; height:34px; border-radius:50%; background:var(--bg-light); display:flex; align-items:center; justify-content:center; color:var(--primary); transition:var(--transition); }
.team-social a:hover{ background:var(--accent); color:#fff; }

/* Pricing */
.pricing-card{ background:var(--bg-white); border-radius:16px; padding:36px 28px; text-align:center; box-shadow:var(--shadow-sm); border:1px solid var(--border-color); position:relative; }
.pricing-card.popular{ border:2px solid var(--accent); transform:scale(1.04); box-shadow:var(--shadow-md); }
.pricing-badge{ position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:var(--accent); color:#1b1f27; padding:5px 18px; border-radius:20px; font-size:.78rem; font-weight:700; }
.price{ font-family:var(--font-heading); font-size:2.4rem; color:var(--primary); font-weight:700; margin:16px 0; }
.price span{ font-size:1rem; color:var(--text-light); font-weight:400; }
.pricing-card ul{ text-align:left; margin:24px 0; }
.pricing-card ul li{ padding:8px 0; font-size:.9rem; display:flex; gap:10px; align-items:flex-start; border-bottom:1px dashed var(--border-color); }
.pricing-card ul li i{ color:var(--success); margin-top:3px; }

/* Contact */
.contact-info-card{ display:flex; gap:16px; align-items:flex-start; background:var(--bg-white); padding:24px; border-radius:12px; box-shadow:var(--shadow-sm); border:1px solid var(--border-color); margin-bottom:18px; }
.contact-info-card .ico{ width:48px; height:48px; flex:0 0 48px; border-radius:12px; background:rgba(212,160,23,0.12); color:var(--accent); display:flex; align-items:center; justify-content:center; }
.form-group{ margin-bottom:20px; }
.form-group label{ display:block; margin-bottom:8px; font-weight:500; font-size:.9rem; }
.form-group input, .form-group select, .form-group textarea{
  width:100%; padding:13px 16px; border:1px solid var(--border-color); border-radius:8px; background:var(--bg-light); color:var(--text-dark); transition:var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{ outline:none; border-color:var(--accent); background:var(--bg-white); }
.form-error{ color:var(--danger); font-size:.8rem; margin-top:6px; display:none; }
.form-group.error input, .form-group.error textarea{ border-color:var(--danger); }
.form-group.error .form-error{ display:block; }
.form-success{ background:rgba(30,158,90,0.1); color:var(--success); padding:16px 20px; border-radius:8px; margin-bottom:20px; display:none; font-size:.9rem; }
.form-success.active{ display:block; }
.map-wrap{ border-radius:14px; overflow:hidden; box-shadow:var(--shadow-sm); }
.map-wrap iframe{ width:100%; height:100%; min-height:340px; border:0; }

/* Split feature sections (image + content, alternating) */
.split-section .grid-2{ align-items:center; gap:50px; }
.feature-visual{ border-radius:20px; overflow:hidden; box-shadow:var(--shadow-md); border:1px solid var(--border-color); }
.feature-visual img{ width:100%; }
.split-section .tag-list{ margin-bottom:24px; }
.img-ph{ width:100%; height:100%; display:block; background:linear-gradient(135deg, var(--primary), var(--primary-light)); }

/* Businesses grid on homepage */
.business-card{ background:var(--bg-white); border-radius:16px; padding:30px 24px; box-shadow:var(--shadow-sm); border:1px solid var(--border-color); transition:var(--transition); position:relative; }
.business-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.business-card .card-icon{ margin-bottom:14px; }
.business-card .badge{ position:absolute; top:20px; right:20px; font-size:.7rem; background:rgba(212,160,23,0.15); color:var(--accent); padding:4px 10px; border-radius:12px; font-weight:700; }

/* CTA */
.cta-band{
  background: linear-gradient(120deg, var(--primary-dark), var(--primary-light));
  color:#fff; border-radius:24px; padding:60px 50px; text-align:center;
  position:relative; overflow:hidden;
}
.cta-band::before{ content:''; position:absolute; inset:0; background: radial-gradient(circle at 15% 30%, rgba(212,160,23,0.2), transparent 45%); }
.cta-band h2{ color:#fff; position:relative; z-index:2; }
.cta-band p{ color:#d7deec; max-width:560px; margin:14px auto 28px; position:relative; z-index:2; }
.cta-band .hero-actions{ justify-content:center; position:relative; z-index:2; }

/* Footer */
.footer{ background:var(--primary-dark); color:#c6cfe0; padding-top:70px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr 1.2fr; gap:36px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,0.1); }
.footer-logo-link{ display:block; width:fit-content; }
.footer-brand-name{ display:block; font-family:var(--font-heading); font-size:1.25rem; font-weight:700; color:#fff; margin-top:10px; }
.footer-brand p{ color:#a9b4c9; font-size:.9rem; margin:16px 0 20px; }
.footer h4{ color:#fff; font-size:1.02rem; margin-bottom:20px; }
.footer ul li{ margin-bottom:11px; }
.footer ul li a{ color:#a9b4c9; font-size:.9rem; transition:var(--transition); }
.footer ul li a:hover{ color:var(--accent); padding-left:4px; }
.footer-social{ display:flex; gap:10px; margin-top:6px; }
.footer-social a{ width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; color:#fff; transition:var(--transition); }
.footer-social a:hover{ background:var(--accent); color:#1b1f27; }
.newsletter-form{ display:flex; margin-top:8px; }
.newsletter-form input{ flex:1; padding:12px 14px; border:none; border-radius:8px 0 0 8px; background:rgba(255,255,255,0.08); color:#fff; }
.newsletter-form input::placeholder{ color:#a9b4c9; }
.newsletter-form button{ padding:0 18px; border:none; border-radius:0 8px 8px 0; background:var(--accent); color:#1b1f27; font-weight:700; }
.footer-bottom{ padding:22px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; font-size:.85rem; }
.footer-bottom-links{ display:flex; gap:20px; flex-wrap:wrap; }
.footer-bottom-links a:hover{ color:var(--accent); }

/* Floating buttons */
.float-btns{ position:fixed; right:24px; bottom:24px; display:flex; flex-direction:column; gap:14px; z-index:900; }
.float-btn{
  width:54px; height:54px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:1.4rem; box-shadow:var(--shadow-md); transition:var(--transition);
}
.float-btn.whatsapp{ background:#25d366; }
.float-btn.call{ background:var(--primary); }
.float-btn:hover{ transform:translateY(-4px) scale(1.05); }
.back-to-top{
  width:46px; height:46px; border-radius:50%; background:var(--accent); color:#1b1f27;
  display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden; transform:translateY(10px);
}
.back-to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }

/* Legal pages */
.legal-content{ background:var(--bg-white); border-radius:14px; padding:44px; box-shadow:var(--shadow-sm); border:1px solid var(--border-color); }
.legal-content h2{ margin-top:32px; margin-bottom:14px; font-size:1.35rem; }
.legal-content h2:first-child{ margin-top:0; }
.legal-content p, .legal-content li{ color:var(--text-light); margin-bottom:12px; font-size:.95rem; }
.legal-content ul{ padding-left:20px; list-style:disc; }
.legal-content .updated{ display:inline-block; background:var(--bg-light); padding:8px 16px; border-radius:20px; font-size:.85rem; margin-bottom:30px; }

/* Sitemap */
.sitemap-col ul li{ margin-bottom:10px; }
.sitemap-col ul li a{ color:var(--text-light); }
.sitemap-col ul li a:hover{ color:var(--accent); }
.sitemap-col h4{ margin-bottom:16px; color:var(--primary); }

/* 404 */
.error-page{ text-align:center; padding:120px 0; }
.error-page h1{ font-size:8rem; color:var(--accent); line-height:1; }

/* Utilities */
.mt-0{margin-top:0;} .mb-0{margin-bottom:0;}
.text-accent{ color:var(--accent); }
.bg-white-section{ background:var(--bg-white); }
table.simple-table{ width:100%; border-collapse:collapse; margin:16px 0; }
table.simple-table th, table.simple-table td{ padding:12px 16px; border:1px solid var(--border-color); text-align:left; font-size:.9rem; }
table.simple-table th{ background:var(--bg-light); }
