/*
Theme Name: Confort Tex
Theme URI: https://confort-tex.com
Author: SMA Marketing Agency
Author URI: https://sma-marketing.com
Description: Premium B2B WordPress theme for Confort Tex — mattress fabrics manufacturer. Custom-built with brand identity, teal color scheme, full responsive design, and optimized for lead generation.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: confort-tex
Tags: one-column, custom-menu, featured-images, custom-logo, custom-background, threaded-comments
*/

/* =============================================
   CSS VARIABLES — Confort Tex Brand System
============================================= */
:root {
  /* Primary Teal Palette */
  --teal-900: #064B55;
  --teal-800: #0A6E7A;
  --teal-700: #0E8C9B;
  --teal-600: #13A3B4;
  --teal-500: #1BB8CC;
  --teal-400: #3DC9DA;
  --teal-300: #7CDCE7;
  --teal-200: #B5ECF2;
  --teal-100: #D5F3F7;
  --teal-50:  #EAF9FB;

  /* Core Brand Colors */
  --brand-primary: #0E8C9B;
  --brand-dark: #064B55;
  --brand-light: #D5F3F7;
  --brand-accent: #13A3B4;

  /* Neutrals */
  --white: #FFFFFF;
  --cream: #F8FBFB;
  --gray-50: #F5F7F7;
  --gray-100: #E8EDED;
  --gray-200: #D1DBDB;
  --gray-300: #A8B8B8;
  --gray-500: #6B8080;
  --gray-700: #3A4F4F;
  --gray-900: #1A2B2B;
  --black: #0D1B1B;

  /* Accent */
  --gold: #C8A45E;
  --gold-light: #E0C583;
  --green-check: #2E7D5B;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(6,75,85,0.06);
  --shadow-md: 0 8px 30px rgba(6,75,85,0.1);
  --shadow-lg: 0 20px 60px rgba(6,75,85,0.15);
  --shadow-xl: 0 30px 80px rgba(6,75,85,0.2);

  /* Radius */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --ease: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.15;
  color: var(--brand-dark);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* =============================================
   NAVIGATION
============================================= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: var(--ease);
}

.site-nav.scrolled {
  border-bottom-color: var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--ease);
  letter-spacing: 0.2px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--brand-primary);
  background: var(--teal-50);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--brand-dark);
  border-radius: 2px;
  transition: var(--ease);
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
  transition: var(--ease);
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--brand-primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14,140,155,0.3);
}

.btn-dark {
  background: var(--brand-dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--teal-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6,75,85,0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
}
.btn-outline:hover {
  background: var(--brand-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--brand-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--brand-dark);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 12px;
}

/* =============================================
   LAYOUT HELPERS
============================================= */
.section {
  padding: 110px 40px;
}

.section-sm {
  padding: 80px 40px;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--brand-primary);
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 20px;
  color: var(--brand-dark);
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 620px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 78px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-800) 40%, var(--brand-primary) 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 75% 50%, rgba(255,255,255,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 20% 80%, rgba(27,184,204,0.1) 0%, transparent 60%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.5) 80px, rgba(255,255,255,0.5) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.5) 80px, rgba(255,255,255,0.5) 81px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1340px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 0.9s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-200);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--teal-300);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(42px, 5.2vw, 72px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.06;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal-300);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 44px;
}

.hero-stat-val {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  color: var(--teal-300);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  animation: fadeInUp 0.9s ease-out 0.25s both;
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  position: relative;
}

.hero-gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: var(--ease);
}

.hero-gallery-item:hover {
  transform: scale(1.02);
}

.hero-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
}

.hero-gallery-item:first-child {
  grid-row: span 2;
}

.hero-gallery-item:first-child img {
  min-height: 380px;
}

.hero-gallery-item .overlay-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(6,75,85,0.75);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
}

/* =============================================
   TRUST BAR
============================================= */
.trust-bar {
  background: var(--teal-50);
  padding: 28px 40px;
  border-bottom: 1px solid var(--teal-100);
}

.trust-bar-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

.trust-icon {
  width: 38px;
  height: 38px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
}

/* =============================================
   VALUE PROPS
============================================= */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.value-card {
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.value-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--teal-400));
  transform: scaleX(0);
  transition: var(--ease);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-num {
  font-family: 'DM Serif Display', serif;
  font-size: 52px;
  color: var(--teal-100);
  line-height: 1;
  margin-bottom: 20px;
  transition: var(--ease);
}

.value-card:hover .value-num {
  color: var(--teal-200);
}

.value-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.value-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.75;
}

/* =============================================
   ABOUT
============================================= */
.about-section {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 50px;
}

.about-text p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.about-value-box {
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: var(--ease);
}

.about-value-box:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-sm);
}

.about-value-box h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 6px;
}

.about-value-box p {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 0;
  line-height: 1.6;
}

/* About Visual */
.about-visual {
  position: relative;
}

.about-main-card {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-800));
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-main-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -25%;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(27,184,204,0.08);
}

.about-main-card h3 {
  color: var(--teal-300);
  font-size: 20px;
  margin-bottom: 30px;
}

.about-facts { display: grid; gap: 22px; position: relative; z-index: 1; }

.about-fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.about-fact:last-child { border: none; padding-bottom: 0; }

.about-fact-label {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

.about-fact-value {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--white);
}

.about-floating {
  position: absolute;
  bottom: -28px; right: -20px;
  background: var(--brand-primary);
  border-radius: 18px;
  padding: 26px 30px;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.about-floating .big { font-family: 'DM Serif Display', serif; font-size: 42px; color: var(--white); line-height: 1; }
.about-floating span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); }

/* About image strip */
.about-image-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-strip img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* =============================================
   PRODUCTS
============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--ease);
  background: var(--white);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card-img {
  height: 260px;
  position: relative;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-img .badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--brand-dark);
  color: var(--teal-300);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  z-index: 2;
}

.product-card-body {
  padding: 32px;
}

.product-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.product-card p {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 20px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.product-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-dark);
  background: var(--teal-50);
  padding: 5px 12px;
  border-radius: 6px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-primary);
  transition: var(--ease);
}

.product-link:hover {
  gap: 12px;
  color: var(--brand-dark);
}

/* =============================================
   INDUSTRIES
============================================= */
.industries-section {
  background: linear-gradient(135deg, var(--teal-900), var(--brand-dark));
  position: relative;
  overflow: hidden;
}

.industries-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 80% 20%, rgba(27,184,204,0.06) 0%, transparent 70%);
}

.industries-section .section-title { color: var(--white); }
.industries-section .section-subtitle { color: rgba(255,255,255,0.45); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.industry-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  transition: var(--ease);
  text-align: center;
}

.industry-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(27,184,204,0.3);
  transform: translateY(-4px);
}

.industry-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: rgba(27,184,204,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.industry-card h3 { color: var(--white); font-size: 19px; margin-bottom: 10px; }
.industry-card p { font-size: 13.5px; color: rgba(255,255,255,0.4); line-height: 1.7; }

/* =============================================
   WHY US
============================================= */
.whyus-section {
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  border: 1px solid var(--gray-100);
  transition: var(--ease);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-primary);
}

.why-card .num {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  color: var(--teal-100);
  line-height: 1;
  margin-bottom: 14px;
  transition: var(--ease);
}

.why-card:hover .num { color: var(--teal-200); }
.why-card h3 { font-size: 20px; margin-bottom: 12px; }
.why-card p { font-size: 14.5px; color: var(--gray-500); line-height: 1.75; }

/* =============================================
   COMPARISON TABLE
============================================= */
.comparison-wrap {
  margin-top: 50px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.comparison-table thead th {
  background: var(--brand-dark);
  color: var(--white);
  padding: 18px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

.comparison-table thead th:first-child { width: 200px; }

.comparison-table thead th.hl {
  background: var(--brand-primary);
  color: var(--white);
}

.comparison-table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}

.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody td:first-child { font-weight: 600; color: var(--brand-dark); }

.comparison-table tbody td.hl {
  background: var(--teal-50);
  color: var(--brand-dark);
  font-weight: 600;
}

/* =============================================
   QUALITY PROCESS
============================================= */
.quality-section {
  background: var(--cream);
}

.process-timeline {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 2px;
  background: var(--teal-200);
}

.process-step { text-align: center; position: relative; }

.process-step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--brand-primary), var(--teal-600));
  color: var(--white);
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(14,140,155,0.3);
}

.process-step h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
  max-width: 190px;
  margin: 0 auto;
}

/* =============================================
   SERVICES
============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.service-card {
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  background: var(--white);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-icon {
  width: 54px; height: 54px;
  background: var(--teal-50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.service-card h3 { font-size: 22px; margin-bottom: 14px; }
.service-card p { font-size: 14.5px; color: var(--gray-500); line-height: 1.75; }

/* =============================================
   CTA BANNER
============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--teal-900), var(--brand-dark));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 30% 50%, rgba(27,184,204,0.1) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255,255,255,0.5);
  font-size: 17px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   GALLERY SECTION
============================================= */
.gallery-section {
  background: var(--white);
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 50px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:first-child img {
  height: 100%;
}

/* =============================================
   FAQ
============================================= */
.faq-section {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 50px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: var(--ease);
}

.faq-item.active {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-dark);
  text-align: left;
  gap: 16px;
  transition: var(--ease);
}

.faq-question:hover { color: var(--brand-primary); }

.faq-toggle {
  width: 28px; height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--teal-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--ease);
  color: var(--brand-dark);
}

.faq-item.active .faq-toggle {
  background: var(--brand-primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 26px 22px;
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.75;
}

/* =============================================
   CONTACT
============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-cards { display: grid; gap: 14px; }

.contact-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: var(--ease);
}

.contact-card:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--teal-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 600;
  margin-bottom: 3px;
}

.contact-card p { font-size: 15px; color: var(--gray-500); }
.contact-card a { color: var(--brand-dark); font-weight: 600; }
.contact-card a:hover { color: var(--brand-primary); }

.contact-form-wrap {
  background: var(--teal-50);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.contact-form-wrap h3 {
  font-size: 24px;
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { grid-column: span 2; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  color: var(--gray-900);
  background: var(--white);
  transition: var(--ease);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(14,140,155,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 80px 40px 30px;
}

.footer-grid {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand-name span { color: var(--teal-400); }

.footer-brand p { font-size: 14.5px; line-height: 1.7; margin-bottom: 18px; }

.footer-iso {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,140,155,0.1);
  border: 1px solid rgba(14,140,155,0.2);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-400);
}

.site-footer h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.footer-links { display: grid; gap: 11px; }

.footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 14.5px;
  transition: var(--ease);
}

.footer-links a:hover { color: var(--teal-400); }

.footer-contact-row {
  display: flex; gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-contact-row span { min-width: 20px; font-size: 16px; }

.footer-socials {
  display: flex; gap: 10px; margin-top: 20px;
}

.footer-social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  transition: var(--ease);
}

.footer-social-link:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--white);
}

.footer-bottom {
  max-width: 1340px;
  margin: 0 auto;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: var(--ease);
}

.footer-bottom a:hover { color: var(--teal-400); }

/* =============================================
   WHATSAPP FLOAT
============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 30px; height: 30px;
}

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   WORDPRESS CORE STYLES
============================================= */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--gray-500); padding: 8px 0; }
.alignleft { float: left; margin: 0 20px 20px 0; }
.alignright { float: right; margin: 0 0 20px 20px; }
.aligncenter { display: block; margin: 0 auto 20px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .value-grid, .products-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .process-timeline { grid-template-columns: repeat(3, 1fr); }
  .process-timeline::before { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 20px; }
  .section-sm { padding: 50px 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  .hero-inner { padding: 50px 20px; }
  .hero-stats { gap: 24px; }
  .hero-stat-val { font-size: 30px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .value-grid, .products-grid, .why-grid, .services-grid,
  .faq-grid, .industries-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .comparison-wrap { overflow-x: auto; }
  .comparison-table { min-width: 600px; }
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 30px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .gallery-item:first-child img { height: 280px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .trust-bar-inner { gap: 16px; }
  .about-image-strip { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 60px 20px 30px; }
}
