/* ============================================================
   Prinox LLC - Clean Site Styles
   Replicates the original WordPress theme visual design
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: #43464b;
  line-height: 1.6;
  overflow-x: hidden;
  background: #fff;
}

img { max-width: 100%; height: auto; border: 0; }
a { color: #111111; text-decoration: none; transition: color 0.3s; }
a:hover { color: #41bbec; }
ul { list-style: none; }
p { margin-bottom: 1em; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #26282d;
  line-height: 1.3;
  margin-bottom: 0.5em;
}
h1 { font-size: 36px; }
h2 { font-size: 28px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }

::-webkit-scrollbar { max-width: 10px; background-color: #111111; }
::-webkit-scrollbar-thumb { background-color: #4cbdea; }

/* --- Layout --- */
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
.container-fluid { width: 100%; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.row > [class*="col-"] { padding: 0 15px; }
.col-12 { width: 100%; }
.col-8 { width: 66.666%; }
.col-6 { width: 50%; }
.col-4 { width: 33.333%; }
.col-3 { width: 25%; }
.col-2 { width: 16.666%; }
.align-items-center { align-items: center; }

/* --- Header --- */
.site-header {
  background-color: #2d2d2d;
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-branding { padding: 20px 5px 15px 5px; }
.site-branding img { max-height: 45px; width: auto; }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; }
.main-nav > ul { display: flex; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 32px 19px 22px 19px;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  transition: color 0.3s;
  white-space: nowrap;
}
.main-nav > ul > li > a:hover { color: #41bbec; }
.site-header.scrolled .main-nav > ul > li > a { color: #111; }
.site-header.scrolled .main-nav > ul > li > a:hover { color: #41bbec; }

/* Dropdown */
.main-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background-color: #111111;
  padding: 20px 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.main-nav > ul > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .sub-menu li a {
  display: block;
  padding: 13px 0;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.05);
  transition: color 0.3s;
  white-space: nowrap;
}
.main-nav .sub-menu li:first-child a { border-top: 0; }
.main-nav .sub-menu li a:hover { color: #41bbec; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}
.site-header.scrolled .menu-toggle { color: #111; }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: #111;
  z-index: 99999;
  transition: left 0.3s ease;
  overflow-y: auto;
  padding: 60px 25px 30px;
}
.mobile-drawer.open { left: 0; }
.drawer-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.drawer-overlay.show { opacity: 1; visibility: visible; }
.mobile-drawer .drawer-close {
  position: absolute;
  top: 15px; right: 15px;
  background: none; border: none;
  color: #fff; font-size: 22px;
  cursor: pointer;
}
.mobile-drawer ul li a {
  display: block;
  padding: 12px 0;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-drawer ul li a:hover { color: #41bbec; }
.mobile-drawer .sub-menu { padding-left: 15px; }
.mobile-drawer .sub-menu li a { font-size: 14px; color: #ccc; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #41bbec;
  padding: 13px 35px;
  margin: 0 10px 10px 0;
  border: 2px solid #41bbec;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
.btn:hover { background: #07abed; color: #fff; border-color: #41bbec; }
.btn-fill-blue { color: #fff; border-color: #1674D1; background: #1674D1; }
.btn-fill-blue:hover { color: #fff; border-color: #458bd1; background: #458bd1; }
.btn-fill-white { color: #1674D1; border-color: #fff; background: #fff; }
.btn-fill-white:hover { color: #1674D1; border-color: #f5f5f5; background: #f5f5f5; }
.btn-white { color: #fff; border-color: #fff; background: transparent; }
.btn-white:hover { background: #fff; color: #1674D1; }

/* --- Hero Sections --- */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 180px 0 120px;
  color: #fff;
}
.hero-home {
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-home .hero-content { padding: 100px 20px; }
.hero h1 { color: #fff; letter-spacing: 0.2em; }
.hero .highlight { color: #00bbf0; }
.hero .subtitle {
  font-size: 18px;
  color: #ffffff;
  margin: 20px 0;
  font-family: 'Montserrat', 'Lato', sans-serif;
}
.hero .desc { font-size: 15px; color: #ffffff; margin: 10px 0; }

/* Home slider text */
.slider-title {
  font-family: 'Lato', sans-serif;
  font-size: 60px;
  line-height: 1.3;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-down {
  display: inline-block;
  margin-top: 40px;
  color: #fff;
  font-size: 50px;
  transition: color 0.3s;
  cursor: pointer;
}
.scroll-down:hover { color: #41bbec; }

/* Badges strip */
.badges-strip {
  text-align: center;
  padding: 20px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1082px;
}
.badges-strip img { max-width: 100%; }

/* --- Sections --- */
.section { padding: 55px 0 74px; }
.section-title { color: #41bbec; text-align: center; letter-spacing: 0.05em; }
.section-subtitle {
  font-size: 22px;
  color: #737171;
  text-align: center;
  margin: 10px 0;
}
.section-text { font-size: 15px; }
.text-center { text-align: center; }
.text-justify { text-align: justify; }

/* --- Service Cards --- */
.services-grid { display: flex; flex-wrap: wrap; margin: 30px -15px 0; }
.service-card {
  width: 25%;
  padding: 0 15px;
  margin-bottom: 30px;
}
.service-card img { width: 50px; margin-bottom: 15px; }
.service-card h3 { margin-bottom: 10px; color: #111; font-size: 20px; }
.service-card h3 a { color: inherit; }
.service-card h3 a:hover { color: #41bbec; }
.service-card p { font-size: 15px; }

.services-grid-3 .service-card { width: 33.333%; }

/* --- Three Panels (PPC / Local SEO / SEM) --- */
.panels { display: flex; flex-wrap: wrap; }
.panel {
  width: 33.333%;
  padding: 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: background-image 0.3s;
}
.panel h4 { color: #ffffff; font-size: 18px; }
.panel .panel-desc { color: #ffffff; font-size: 16px; margin: 15px 0 25px; }
.panel .panel-big {
  font-size: 60px;
  text-align: right;
  margin-top: 30px;
  margin-bottom: 0;
}
.panel-ppc { background-color: #222222; background-image: url('../static/image/section03-01.jpg'); }
.panel-ppc .panel-big { color: #393939; }
.panel-local { background-color: #2e8be9; background-image: url('../static/image/section03-02.jpg'); }
.panel-local .panel-big { color: #4397eb; }
.panel-sem { background-color: #1674d1; background-image: url('../static/image/section03-03.jpg'); }
.panel-sem .panel-big { color: #2e82d6; }
.panel:hover { background-image: url('../static/image/section03-hover.jpg'); }

/* --- Content Sections (image + text) --- */
.content-split { display: flex; flex-wrap: wrap; align-items: center; padding: 50px 0; }
.content-split .split-img { width: 40%; padding-right: 30px; }
.content-split .split-text { width: 60%; }
.content-split.reverse .split-img { order: 2; padding-right: 0; padding-left: 30px; }
.content-split.reverse .split-text { order: 1; }
.split-text h1 { color: #41bbec; text-align: center; }
.split-text .lead { font-size: 15px; text-align: justify; margin-bottom: 15px; }

/* --- Stats Counter --- */
.stats-section {
  background-image: url('../static/image/section10.jpg');
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}
.stats-grid { display: flex; flex-wrap: wrap; text-align: center; }
.stat-item { width: 25%; padding: 15px; }
.stat-item .stat-number { font-size: 36px; color: #41bbec; }
.stat-item .stat-label { font-size: 14px; color: #111111; }

/* --- CTA Bar --- */
.cta-bar {
  background-image: url('../static/image/section555-1.png');
  background-size: cover;
  background-position: center;
  padding: 75px 0 60px;
}
.cta-bar .cta-inner { display: flex; flex-wrap: wrap; align-items: center; }
.cta-bar .cta-text { width: 66.666%; }
.cta-bar .cta-text h3 { color: #ffffff; letter-spacing: 0.15em; margin: 0; }
.cta-bar .cta-action { width: 33.333%; text-align: right; }

/* --- Testimonials --- */
.testimonials-section {
  background-image: url('../static/image/section03-02.jpg');
  background-size: cover;
  background-position: center;
  padding: 85px 0;
}
.testimonials-section .section-label {
  font-size: 20px;
  color: #111111;
  text-align: center;
  letter-spacing: 1em;
}
.testimonials-section .section-title { margin: 15px 0; }
.testimonials-section .section-desc { font-size: 15px; text-align: center; margin-bottom: 40px; }

.testimonial-carousel { position: relative; max-width: 800px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-item {
  min-width: 100%;
  padding: 0 60px;
  text-align: center;
}
.testimonial-item blockquote {
  font-size: 16px;
  font-style: italic;
  color: #555;
  border: none;
  margin-bottom: 20px;
  line-height: 1.8;
}
.testimonial-item .avatar {
  width: 75px; height: 75px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: block;
}
.testimonial-item .author-name { font-weight: 600; color: #26282d; }
.testimonial-item .author-title { font-size: 13px; color: #999; display: block; }
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 30px;
  color: #4cbdea;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
}
.carousel-nav:hover { color: #1674D1; }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* --- Page Content Sections --- */
.page-section { padding: 40px 0; }
.page-section .section-heading {
  text-align: center;
  font-size: 30px;
  letter-spacing: 0;
  color: #26282d;
}
.page-section .section-heading .highlight { color: #00bbf0; }
.separator {
  display: flex;
  align-items: center;
  margin: 20px 0 30px;
}
.separator::before, .separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #ddd, transparent);
}

.feature-list { margin: 15px 0; }
.feature-list li {
  padding: 5px 0 5px 20px;
  position: relative;
  font-size: 16px;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px; height: 8px;
  background: #41bbec;
  border-radius: 50%;
}
.feature-list .stat-highlight { color: #41bbec; font-size: 18px; font-weight: 500; }
.text-blue { color: #41bbec; }
.platform-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0 30px;
}

/* Hero centered variant */
.hero-center { text-align: center; }
.hero-center h1 { color: #00bbf0; letter-spacing: 0.1em; }
.hero-center h2 {
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 28px;
  margin-top: 10px;
}

/* --- Pricing Section --- */
.pricing-section { padding: 60px 0; }
.pricing-grid { display: flex; flex-wrap: wrap; gap: 20px; align-items: stretch; }
.pricing-col {
  flex: 1;
  min-width: 280px;
  padding: 30px 25px;
  background: #f9f9f9;
  border: 1px solid #eee;
  text-align: center;
}
.pricing-col h2 { color: #424242; letter-spacing: 0.05em; text-transform: none; }
.pricing-col .price { color: #424242; letter-spacing: 0.05em; margin-bottom: 20px; }
.pricing-col .why-list { text-align: left; margin: 15px 0; }
.pricing-col .why-list p { font-size: 15px; }
.pricing-col .features { text-align: left; font-size: 14px; margin: 15px 0 25px; }
.pricing-col .features p { margin-bottom: 0; line-height: 2; }
.pricing-col .collab-title { color: #41bbec; letter-spacing: 0.05em; margin: 20px 0 5px; }
.partner-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
}
.partner-badges img { height: 50px; width: auto; }

/* --- About Page --- */
.about-hero {
  background-image: url('../static/image/about-section-019.jpg');
  background-size: cover;
  background-position: center;
  padding: 200px 0 150px;
  text-align: center;
}
.about-hero h1 { font-size: 60px; letter-spacing: 0.2em; color: #fff; }
.about-hero h1 span { color: #41bbec; }

.clients-section {
  background-image: url('../static/image/section13-03.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
}
.clients-section h1 { color: #ffffff; letter-spacing: 0.05em; }
.clients-section p { font-size: 15px; color: #ffffff; max-width: 700px; margin: 10px auto 0; }

/* --- Footer --- */
.site-footer {
  background-color: #333333;
  padding: 50px 0 20px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #c4c3c3;
}
.footer-grid { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.footer-col { width: 33.333%; padding: 0 15px; margin-bottom: 20px; }
.footer-col img { margin-bottom: 15px; }
.footer-col a { color: #e0e0e0; }
.footer-col a:hover { color: #1674D1; }
.footer-col .widget-title { color: #e0e0e0; font-size: 16px; margin-bottom: 15px; }
.footer-menu li { margin-bottom: 8px; }
.footer-badges { display: flex; gap: 15px; align-items: center; }
.footer-badges img { height: 50px; width: auto; }

.copyright {
  background-color: #333;
  padding: 10px 0 20px;
  text-align: center;
  color: #999;
  font-size: 14px;
}
.copyright a { color: #ffffff; }
.copyright a:hover { color: #1674D1; }

/* --- Scroll to top --- */
.scrollup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px; height: 45px;
  background: #4cbdea;
  color: #fff;
  text-align: center;
  line-height: 45px;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 9999;
  border: none;
}
.scrollup.visible { opacity: 1; visibility: visible; }
.scrollup:hover { background: #111111; color: #4cbdea; }

/* --- Scroll Reveal --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Contact Page --- */
.contact-info-section {
  background-image: url('../static/image/about-section-019.jpg');
  background-size: cover;
  background-position: center;
  padding: 200px 0 100px;
}
.contact-heading {
  font-family: 'Abril Fatface', cursive;
  font-weight: 400;
  color: #fff;
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-item {
  width: 25%;
  text-align: center;
  color: #fff;
  padding: 0 15px;
}
.contact-item svg { margin-bottom: 15px; }
.contact-item p { color: #fff; font-size: 15px; }
.contact-form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.contact-form-text, .contact-form-wrap { flex: 1; min-width: 300px; }
.form-heading {
  color: #41bbec;
  font-weight: 500;
  letter-spacing: 1px;
  padding-bottom: 35px;
  font-size: 26px;
}
.contact-form-wrap .form-row {
  display: flex;
  gap: 20px;
}
.contact-form-wrap .form-field { flex: 1; margin-bottom: 18px; }
.contact-form-wrap label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #212d3a;
  margin-bottom: 4px;
}
.contact-form-wrap .required { color: red; }
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap input[type="email"] {
  width: 100%;
  height: 40px;
  padding: 9px 10px;
  font-size: 16px;
  color: #33475b;
  border: 0;
  border-bottom: 2px solid #cad5e2;
  background: none;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form-wrap input:focus { border-bottom-color: rgba(82,168,236,.8); }
.checkbox-list { margin-top: 5px; }
.checkbox-list li { margin-bottom: 4px; }
.checkbox-list label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}
.checkbox-list input[type="checkbox"] { width: auto; height: auto; margin: 0; }
.form-actions { margin-top: 18px; }

/* --- Responsive --- */
@media (max-width: 991px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .col-8, .col-6, .col-4, .col-3 { width: 50%; }
  .service-card { width: 50%; }
  .services-grid-3 .service-card { width: 50%; }
  .panel { width: 100%; padding: 60px 40px; }
  .content-split .split-img, .content-split .split-text { width: 100%; padding: 0 15px; }
  .content-split.reverse .split-img { order: 0; }
  .content-split.reverse .split-text { order: 0; }
  .cta-bar .cta-text, .cta-bar .cta-action { width: 100%; text-align: center; margin-bottom: 15px; }
  .stat-item { width: 50%; }
  .slider-title { font-size: 40px; letter-spacing: 0.15em; }
  .hero { padding: 140px 0 80px; }
  .hero h1 { font-size: 28px; }
  .about-hero h1 { font-size: 36px; }
  .contact-item { width: 50%; margin-bottom: 30px; }
  .contact-info-section { padding: 140px 0 70px; }
  .pricing-col { min-width: 100%; }
}

@media (max-width: 575px) {
  .col-8, .col-6, .col-4, .col-3 { width: 100%; }
  .service-card { width: 100%; }
  .services-grid-3 .service-card { width: 100%; }
  .footer-col { width: 100%; }
  .stat-item { width: 50%; }
  .slider-title { font-size: 28px; }
  .testimonial-item { padding: 0 40px; }
  .contact-item { width: 100%; }
  .contact-form-wrap .form-row { flex-direction: column; gap: 0; }
}
