/*
Theme Name: Systech Pro
Theme URI: https://systechpak.pk
Author: Systech
Author URI: https://systechpak.pk
Description: Professional theme for metal and steel fabrication services
Version: 1.0.0
License: GPL v2 or later
Text Domain: systech-pro
*/

/* ===========================
   CSS VARIABLES & ROOT
   =========================== */

:root {
  /* Systech Brand Colors */
  --primary-color: #0066CC;      /* Blue (from logo) */
  --secondary-color: #FF6600;    /* Orange (from logo) */
  --accent-color: #FF9900;       /* Light Orange */
  --text-color: #333333;
  --light-gray: #f5f5f5;
  --dark-gray: #666666;
  --border-color: #dddddd;
  --success-color: #27ae60;
  
  /* Fonts */
  --font-main: 'Roboto', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
}

/* ===========================
   GLOBAL STYLES
   =========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

h1 { font-size: 3rem; text-transform: uppercase; letter-spacing: 1px; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
  line-height: 1.8;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */

.site-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0052a3 100%);
  color: white;
  padding: var(--spacing-md) 0;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-lg);
}

.site-branding h1 {
  margin: 0;
  font-size: 1.8rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.site-branding a {
  color: white;
}

.site-branding a:hover {
  color: var(--secondary-color);
}

.site-branding img {
  max-height: 60px;
  width: auto;
}

/* Navigation */
.main-navigation ul {
  list-style: none;
  display: flex;
  gap: var(--spacing-lg);
}

.main-navigation a {
  color: white;
  font-weight: 600;
  padding: var(--spacing-xs) var(--spacing-sm);
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
  color: var(--secondary-color);
  border-bottom: 3px solid var(--secondary-color);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0052a3 100%);
  color: white;
  padding: var(--spacing-2xl) var(--spacing-lg);
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(20px); }
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
  animation: slideUp 0.8s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: var(--spacing-lg);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
}

/* ===========================
   BUTTONS
   =========================== */

.btn, button, input[type="submit"],
.read-more, .btn-learn-more {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  background-color: var(--secondary-color);
  color: white;
  border: 2px solid var(--secondary-color);
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-main);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.btn:hover, button:hover, input[type="submit"]:hover,
.read-more:hover, .btn-learn-more:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* ===========================
   SERVICES SECTION
   =========================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-2xl) 0;
}

.service-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: var(--spacing-lg);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--secondary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 102, 204, 0.15);
  border-color: var(--primary-color);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.service-card h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.service-card p {
  color: var(--dark-gray);
  margin-bottom: var(--spacing-md);
}

/* ===========================
   PROJECTS GALLERY
   =========================== */

.projects-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-2xl) 0;
}

.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.project-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-item:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 102, 204, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.project-overlay h4 {
  color: white;
  text-align: center;
  font-size: 1.3rem;
}

/* ===========================
   TESTIMONIALS
   =========================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-2xl) 0;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
  border-left: 4px solid var(--secondary-color);
  border-radius: 8px;
  padding: var(--spacing-lg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.testimonial-content {
  color: var(--dark-gray);
  margin-bottom: var(--spacing-md);
  font-style: italic;
}

.testimonial-author {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1rem;
}

/* ===========================
   CONTAINER & LAYOUT
   =========================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.site-main {
  padding: var(--spacing-2xl) 0;
}

/* ===========================
   FOOTER
   =========================== */

.site-footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0052a3 100%);
  color: white;
  padding: var(--spacing-2xl) var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-column h3 {
  color: white;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
  color: var(--secondary-color);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: var(--spacing-sm);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: all 0.3s ease;
  color: white;
}

.social-links a:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
  text-decoration: none;
}

/* WhatsApp Button */
.whatsapp-button {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.whatsapp-button:hover {
  background-color: #20BA5A !important;
  border-color: #20BA5A !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--spacing-lg);
  text-align: center;
}

/* ===========================
   CONTACT FORM
   =========================== */

.contact-section {
  background-color: var(--light-gray);
  padding: var(--spacing-2xl) var(--spacing-lg);
  border-radius: 10px;
  margin: var(--spacing-2xl) 0;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
input[type="phone"],
input[type="url"],
textarea,
select {
  width: 100%;
  padding: var(--spacing-sm);
  border: 2px solid var(--border-color);
  border-radius: 5px;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="phone"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  
  .header-container {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .main-navigation ul {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    flex-direction: column;
    gap: 0;
    display: none;
    padding: var(--spacing-md);
  }
  
  .main-navigation.open ul {
    display: flex;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .services-grid,
  .projects-gallery,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   UTILITY CLASSES
   =========================== */

.text-center { text-align: center; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.pt-1 { padding-top: var(--spacing-sm); }
.pt-2 { padding-top: var(--spacing-md); }
.pt-3 { padding-top: var(--spacing-lg); }

.pb-1 { padding-bottom: var(--spacing-sm); }
.pb-2 { padding-bottom: var(--spacing-md); }
.pb-3 { padding-bottom: var(--spacing-lg); }

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  padding-bottom: var(--spacing-md);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* ===========================
   TOP BAR
   =========================== */

.top-bar {
  background-color: #0052a3;
  color: rgba(255,255,255,0.9);
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 2px solid var(--secondary-color);
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: var(--spacing-lg);
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-left a,
.top-bar-right a {
  color: rgba(255,255,255,0.9);
}

.top-bar-left a:hover,
.top-bar-right a:hover {
  color: var(--secondary-color);
}

.top-whatsapp {
  background-color: #25D366;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.top-whatsapp:hover {
  background-color: #20BA5A;
  color: white !important;
  text-decoration: none;
}

/* ===========================
   LOGO & BRAND
   =========================== */

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  max-height: 65px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: 3px;
  font-family: var(--font-heading);
  line-height: 1;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--secondary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===========================
   HEADER CTA BUTTON
   =========================== */

.btn-call {
  background-color: var(--secondary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-call:hover {
  background-color: white;
  color: var(--primary-color);
  text-decoration: none;
}

/* ===========================
   FOOTER ENHANCEMENTS
   =========================== */

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list li i {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-top: 3px;
  min-width: 20px;
}

.contact-list li strong {
  display: block;
  color: white;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-list li a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.contact-list li a:hover {
  color: var(--secondary-color);
}

.footer-services ul {
  list-style: none;
  padding: 0;
}

.footer-services li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-services li i {
  color: var(--secondary-color);
  font-size: 0.75rem;
}

.footer-services li a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.footer-services li a:hover {
  color: var(--secondary-color);
}

/* Google Maps */
.google-map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid var(--secondary-color);
  margin-top: 10px;
}

.map-address {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===========================
   FLOATING WHATSAPP BUTTON
   =========================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-float a:hover {
  background-color: #20BA5A;
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.7);
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(37,211,102,0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ===========================
   BACK TO TOP BUTTON
   =========================== */

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 9998;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,102,204,0.3);
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.back-to-top.visible {
  display: flex;
}

/* ===========================
   FOOTER LOGO
   =========================== */

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo img {
  max-width: 140px;
  filter: brightness(0) invert(1);
}

/* ===========================
   MOBILE TOP BAR
   =========================== */

@media (max-width: 768px) {
  .top-bar-left {
    display: none;
  }
  .top-bar-container {
    justify-content: center;
  }
  .brand-text {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  .back-to-top {
    bottom: 90px;
    right: 20px;
  }
}

/* ===========================
   HOMEPAGE SECTIONS
   =========================== */

.section { padding: 80px 0; }
.bg-light { background-color: var(--light-gray); }

.section-header { margin-bottom: 50px; }
.section-tag {
  display: inline-block;
  background: rgba(0,102,204,0.1);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-subtitle {
  color: var(--dark-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Hero */
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.btn-outline-white {
  background: transparent;
  border: 2px solid white;
  color: white;
}
.btn-outline-white:hover { background: white; color: var(--primary-color); text-decoration:none; }
.btn-whatsapp {
  background: #25D366;
  border: 2px solid #25D366;
  color: white;
  display:inline-flex;align-items:center;gap:8px;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 5px;
  font-weight:700;
  transition: all 0.3s ease;
  text-decoration:none;
}
.btn-whatsapp:hover { background:#20BA5A; border-color:#20BA5A; color:white; text-decoration:none; }

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stat { text-align:center; }
.stat-num { display:block; font-size:2rem; font-weight:800; color:var(--secondary-color); line-height:1; }
.stat-label { display:block; font-size:0.8rem; color:rgba(255,255,255,0.85); text-transform:uppercase; letter-spacing:1px; margin-top:5px; }

/* Service Cards */
.service-features {
  list-style:none;
  padding:0;
  margin-bottom:15px;
}
.service-features li {
  padding: 4px 0;
  font-size:0.9rem;
  color: var(--dark-gray);
  display:flex;align-items:center;gap:8px;
}
.service-features li i { color: var(--success-color); font-size:0.75rem; }

/* Projects Section */
.project-overlay .btn-view-project {
  display:inline-block;
  margin-top:10px;
  padding:8px 20px;
  background:var(--secondary-color);
  color:white;
  border-radius:5px;
  font-weight:600;
  font-size:0.9rem;
}

/* Why Us */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.why-us-list { margin-top:25px; }
.why-item {
  display:flex;
  gap:15px;
  margin-bottom:25px;
  padding-bottom:25px;
  border-bottom: 1px solid var(--border-color);
}
.why-item:last-child { border-bottom:none; }
.why-icon {
  min-width:50px; height:50px;
  background:linear-gradient(135deg,var(--primary-color),var(--secondary-color));
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:white; font-size:1.2rem;
}
.why-item h4 { margin-bottom:5px; color:var(--primary-color); }
.why-item p { margin:0; font-size:0.95rem; color:var(--dark-gray); }

.stats-box {
  background: linear-gradient(135deg,var(--primary-color),#0052a3);
  border-radius:12px;
  padding:30px;
  margin-bottom:20px;
}
.stat-item { text-align:center; padding:15px 0; }
.stat-item .big-num { display:block; font-size:2.5rem; font-weight:800; color:var(--secondary-color); line-height:1; }
.stat-item span:last-child { color:rgba(255,255,255,0.85); font-size:0.9rem; text-transform:uppercase; letter-spacing:1px; }
.stat-divider { height:1px; background:rgba(255,255,255,0.15); }
.contact-quick-box {
  background: white;
  border-radius:12px;
  padding:25px;
  border:2px solid var(--border-color);
}
.contact-quick-box h4 { color:var(--primary-color); margin-bottom:10px; }
.contact-quick-box p { color:var(--dark-gray); font-size:0.9rem; margin-bottom:15px; }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg,var(--primary-color),#0052a3);
  padding: 70px 0;
}
.cta-content {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
  flex-wrap:wrap;
}
.cta-text h2 { color:white; margin-bottom:10px; }
.cta-text p { color:rgba(255,255,255,0.85); margin:0; }
.cta-buttons { display:flex; gap:15px; flex-wrap:wrap; }
.btn-white {
  background:white; border:2px solid white; color:var(--primary-color);
  display:inline-flex;align-items:center;gap:8px;
  padding: var(--spacing-sm) var(--spacing-lg); border-radius:5px; font-weight:700;
  transition:all 0.3s ease; text-decoration:none;
}
.btn-white:hover { background:transparent; color:white; text-decoration:none; }
.btn-whatsapp-cta {
  background:#25D366; border:2px solid #25D366; color:white;
  display:inline-flex;align-items:center;gap:8px;
  padding: var(--spacing-sm) var(--spacing-lg); border-radius:5px; font-weight:700;
  transition:all 0.3s ease; text-decoration:none;
}
.btn-whatsapp-cta:hover { background:#20BA5A; color:white; text-decoration:none; }

/* Responsive */
@media (max-width: 992px) {
  .why-us-grid { grid-template-columns:1fr; }
}
@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .hero-buttons { flex-direction:column; align-items:center; }
  .hero-stats { gap:20px; }
  .cta-content { flex-direction:column; text-align:center; }
}

/* Page Hero (inner pages) */
.page-hero-section {
  background: linear-gradient(135deg, var(--primary-color), #0052a3);
  color: white;
  padding: 60px 0;
  text-align: center;
}
.page-hero-section h1 { color: white; margin-bottom: 10px; }
.page-hero-section p { color: rgba(255,255,255,0.85); margin: 0 0 15px; }
.breadcrumb-nav { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.breadcrumb-nav a { color: var(--secondary-color); }
.breadcrumb-nav a:hover { color: white; }

/* Pagination */
.nav-links { display: flex; gap: 10px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.nav-links a, .nav-links span {
  padding: 8px 16px;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  color: var(--primary-color);
  font-weight: 600;
}
.nav-links a:hover, .nav-links span.current {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

/* ===========================
   LOGO + SLOGAN STYLES
   =========================== */

.logo-link { text-decoration: none; display: inline-block; }
.logo-box {
  background: white;
  border-radius: 8px;
  padding: 6px 14px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 160px;
}
.site-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}
.site-slogan {
  display: block;
  font-size: 8.5px;
  font-weight: 700;
  color: #FF6600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-top: 3px;
  text-align: center;
  white-space: nowrap;
}

/* ===========================
   PAGE HERO BANNER
   (Feature Image Section)
   =========================== */

.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1); }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,68,153,0.82) 0%, rgba(0,40,100,0.72) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 60px 20px 50px;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero-content h1 {
  color: white;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.7;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  opacity: 0.8;
}
.breadcrumb-nav a { color: #FF9900; text-decoration: none; }
.breadcrumb-nav a:hover { color: white; }
.breadcrumb-nav span { color: rgba(255,255,255,0.5); }

/* Service-specific hero gradients */
.hero-wrought-iron { background: linear-gradient(135deg,#1a1a1a 0%,#2a2a2a 50%,#3a2000 100%); }
.hero-railing      { background: linear-gradient(135deg,#0a2a5a 0%,#0066CC 100%); }
.hero-steel-gate   { background: linear-gradient(135deg,#111 0%,#0d2a0d 50%,#1a4a00 100%); }
.hero-safety-grills{ background: linear-gradient(135deg,#2a1600 0%,#7a3800 100%); }
.hero-tensile      { background: linear-gradient(135deg,#001a40 0%,#0044aa 100%); }
.hero-storage      { background: linear-gradient(135deg,#1a0a0a 0%,#5a1a1a 100%); }
.hero-facade       { background: linear-gradient(135deg,#0a1a2a 0%,#1a4a6a 100%); }
.hero-peb          { background: linear-gradient(135deg,#1a1a00 0%,#4a4a00 100%); }
.hero-about        { background: linear-gradient(135deg,#003d80 0%,#0066CC 100%); }
.hero-contact      { background: linear-gradient(135deg,#003d1a 0%,#006633 100%); }
.hero-blog         { background: linear-gradient(135deg,#2a0033 0%,#660066 100%); }
.hero-projects     { background: linear-gradient(135deg,#1a1a1a 0%,#444 100%); }

/* ===========================
   ANIMATIONS
   =========================== */

/* Base: elements hidden until animated */
.anim-fade-up,
.anim-fade-left,
.anim-fade-right,
.anim-zoom-in,
.anim-fade-in {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-up    { transform: translateY(40px); }
.anim-fade-left  { transform: translateX(-40px); }
.anim-fade-right { transform: translateX(40px); }
.anim-zoom-in    { transform: scale(0.92); }
.anim-fade-in    { transform: none; }

/* Triggered when visible */
.anim-fade-up.visible,
.anim-fade-left.visible,
.anim-fade-right.visible,
.anim-zoom-in.visible,
.anim-fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Hero content always animates on load */
.page-hero-content h1 {
  animation: heroSlideDown 0.8s ease forwards;
}
.page-hero-content p {
  animation: heroSlideDown 0.8s ease 0.2s both;
}
.page-hero-content .breadcrumb-nav {
  animation: heroFade 0.8s ease 0.4s both;
}

@keyframes heroSlideDown {
  from { opacity: 0; transform: translateY(-25px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFade {
  from { opacity: 0; }
  to   { opacity: 0.8; }
}

/* Section title underline animation */
.section-title::after {
  width: 0;
  transition: width 0.8s ease 0.3s;
}
.section-title.visible::after { width: 80px; }

/* Card hover lift */
.service-card, .project-item, .post-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ===========================
   SERVICE SINGLE PAGE
   =========================== */

.service-hero-icon, .hero-icon-badge {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: white;
  margin: 0 auto 16px;
}

.service-single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl) 0;
}

.service-intro-box {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--light-gray); border-radius: 10px;
  padding: 20px; margin-bottom: 24px;
  border-left: 4px solid var(--secondary-color);
}
.service-intro-box .service-icon { font-size: 2rem; color: var(--primary-color); min-width: 50px; text-align: center; }

.service-features-section { margin-top: 30px; }
.service-features-section h3 { margin-bottom: 16px; }
.features-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 12px;
}
.feature-item {
  display: flex; align-items: center; gap: 10px;
  background: white; border: 1px solid var(--border-color);
  border-radius: 7px; padding: 12px 14px; font-size: 0.9rem; font-weight: 600;
}
.feature-item i { color: var(--secondary-color); }

.cta-sidebar-box, .other-services-box {
  background: white; border: 1.5px solid var(--border-color);
  border-radius: 10px; padding: 20px; margin-bottom: 20px;
}
.cta-sidebar-box h4, .other-services-box h4 {
  color: var(--primary-color); margin-bottom: 10px; font-size: 1rem;
  padding-bottom: 8px; border-bottom: 2px solid var(--secondary-color);
}

.sidebar-service-list { list-style: none; padding: 0; }
.sidebar-service-list li { padding: 6px 0; border-bottom: 1px solid var(--border-color); }
.sidebar-service-list li:last-child { border-bottom: none; }
.sidebar-service-list li a { color: var(--text-color); font-size: 0.9rem; }
.sidebar-service-list li a:hover, .sidebar-service-list li.active a { color: var(--primary-color); font-weight: 700; }
.sidebar-service-list li i { color: var(--secondary-color); margin-right: 6px; font-size: 0.75rem; }

/* ===========================
   ABOUT PAGE
   =========================== */

.about-intro-grid {
  display: grid; grid-template-columns: 1fr 320px; gap: 50px; align-items: start;
}
.about-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.about-stat-card {
  background: linear-gradient(135deg, var(--primary-color), #0052a3);
  border-radius: 10px; padding: 22px; text-align: center; color: white;
}
.about-stat-card .big-stat { display: block; font-size: 2rem; font-weight: 800; color: #FF9900; line-height: 1; margin-bottom: 6px; }
.about-stat-card span:last-child { font-size: 0.8rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.5px; }

.mv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.mv-card {
  background: white; border: 1.5px solid var(--border-color);
  border-radius: 10px; padding: 24px; text-align: center;
  transition: all 0.3s ease;
}
.mv-card:hover { border-color: var(--primary-color); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,102,204,0.12); }
.mv-icon {
  width: 56px; height: 56px; background: linear-gradient(135deg,var(--primary-color),var(--secondary-color));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: white; margin: 0 auto 14px;
}
.mv-card h3 { color: var(--primary-color); font-size: 1.1rem; margin-bottom: 10px; }

/* ===========================
   CONTACT PAGE
   =========================== */

.contact-cards-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 40px;
}
.contact-card {
  background: white; border: 1.5px solid var(--border-color);
  border-radius: 10px; padding: 20px; text-align: center;
  transition: all 0.3s ease;
}
.contact-card:hover { border-color: var(--primary-color); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,102,204,0.1); }
.contact-card-icon {
  width: 52px; height: 52px; background: var(--primary-color);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: white; margin: 0 auto 12px;
}
.contact-card-icon.whatsapp-icon { background: #25D366; }
.contact-card-icon.email-icon { background: var(--secondary-color); }
.contact-card-icon.location-icon { background: var(--accent-color); }
.contact-card h4 { color: var(--primary-color); font-size: 0.9rem; margin-bottom: 6px; }
.contact-card a { color: var(--secondary-color); font-weight: 600; font-size: 0.95rem; }
.contact-card p { font-size: 0.8rem; color: var(--dark-gray); margin: 4px 0 0; }

.contact-main-grid { display: grid; grid-template-columns: 1fr 420px; gap: 50px; align-items: start; }
.contact-form-box h2 { margin-bottom: 12px; }

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

.contact-info-list { margin-top: 20px; }
.ci-item { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border-color); }
.ci-item:last-child { border-bottom: none; }
.ci-item i { color: var(--primary-color); font-size: 1rem; margin-top: 2px; min-width: 18px; }
.ci-item strong { display: block; font-size: 0.8rem; color: #999; text-transform: uppercase; letter-spacing: 0.5px; }
.ci-item a, .ci-item span { font-weight: 600; font-size: 0.95rem; }
.ci-item a { color: var(--secondary-color); }

/* ===========================
   BLOG PAGE
   =========================== */

.blog-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; }
.post-meta-bar { font-size: 0.8rem; color: var(--dark-gray); margin-bottom: 8px; display: flex; gap: 12px; flex-wrap: wrap; }
.post-meta-bar i { color: var(--secondary-color); }

.sidebar-widget {
  background: white; border: 1px solid var(--border-color);
  border-radius: 8px; padding: 18px; margin-bottom: 20px;
}
.widget-title {
  color: var(--primary-color); font-size: 1rem;
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 2px solid var(--secondary-color);
}
.sidebar-cta-box {
  background: linear-gradient(135deg,var(--primary-color),#0052a3);
  border-radius: 8px; padding: 18px; margin-bottom: 20px; color: white;
}
.sidebar-cta-box h4 { color: white; margin-bottom: 8px; }
.sidebar-cta-box p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 12px; }

/* ===========================
   RESPONSIVE — ALL PAGES
   =========================== */

@media (max-width: 1024px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .service-single-layout { grid-template-columns: 1fr; }
  .contact-main-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .contact-cards-grid { grid-template-columns: repeat(2,1fr); }
  .mv-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .page-hero-content h1 { font-size: 1.8rem; }
}

/* ===========================
   LOGO FROM FILE (FIXED)
   =========================== */

.logo-box {
  background: white;
  border-radius: 8px;
  padding: 6px 14px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 155px;
  text-decoration: none;
}
.site-logo {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.site-slogan {
  display: block;
  font-size: 8px;
  font-weight: 700;
  color: #FF6600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 3px;
  white-space: nowrap;
  text-align: center;
}
.logo-text-main { font-size: 1.4rem; font-weight: 900; color: #0066CC; letter-spacing: 3px; }
.logo-text-sub  { font-size: 0.65rem; color: #FF6600; font-weight: 700; letter-spacing: 2px; }

/* FOOTER LOGO */
.footer-logo-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-logo-img {
  max-width: 140px;
  height: auto;
  border-radius: 6px;
  background: white;
  padding: 4px 8px;
}
.footer-slogan {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
}

/* ===========================
   NAV DROPDOWN (Services)
   =========================== */

.main-navigation ul { position: relative; }
.main-navigation .menu-item-has-children { position: relative; }
.main-navigation .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  min-width: 240px;
  padding: 8px 0;
  z-index: 999;
  border-top: 3px solid var(--secondary-color);
}
.main-navigation .menu-item-has-children:hover .sub-menu {
  display: block;
  animation: dropFade 0.2s ease;
}
@keyframes dropFade {
  from { opacity:0; transform: translateY(-6px); }
  to   { opacity:1; transform: translateY(0); }
}
.main-navigation .sub-menu li { border-bottom: 1px solid #f0f0f0; }
.main-navigation .sub-menu li:last-child { border-bottom: none; }
.main-navigation .sub-menu a {
  color: var(--text-color) !important;
  padding: 10px 18px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 0.875rem !important;
  border-bottom: none !important;
  transition: all 0.2s ease !important;
}
.main-navigation .sub-menu a:hover {
  color: var(--primary-color) !important;
  background: #f0f6ff;
  padding-left: 22px !important;
}
.main-navigation .sub-menu a i {
  color: var(--secondary-color);
  width: 16px;
  text-align: center;
}

/* TOP BAR */
.top-bar { background: #003d80; color: rgba(255,255,255,0.88); padding: 7px 0; font-size: 0.82rem; border-bottom: 2px solid var(--secondary-color); }
.top-bar-container { max-width: 1200px; margin: 0 auto; padding: 0 var(--spacing-lg); display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.top-bar-left { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.tb-item { display: flex; align-items: center; gap: 6px; }
.tb-item i { color: var(--secondary-color); }
.tb-item a { color: rgba(255,255,255,0.88); text-decoration: none; }
.tb-item a:hover { color: var(--secondary-color); }
.top-whatsapp { background: #25D366; color: white; padding: 5px 13px; border-radius: 20px; font-weight: 700; display: flex; align-items: center; gap: 5px; text-decoration: none; transition: background 0.2s; }
.top-whatsapp:hover { background: #20BA5A; color: white; }

@media (max-width: 768px) {
  .tb-hide-sm { display: none; }
  .main-navigation .sub-menu { position: static; box-shadow: none; border-radius: 0; }
  .main-navigation.open .sub-menu { display: block; }
}

/* ===========================
   FOOTER LOGO BOX
   =========================== */
.footer-logo-link { text-decoration: none; display: inline-block; margin-bottom: 12px; }
.footer-logo-box {
  background: white;
  border-radius: 8px;
  padding: 6px 14px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 180px;
}
.footer-logo-img { height: 40px; width: auto; object-fit: contain; display: block; }
.footer-slogan {
  display: block;
  font-size: 8px;
  font-weight: 700;
  color: #FF6600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 3px;
  text-align: center;
  white-space: nowrap;
}
.footer-links-bar { margin-top: 4px; }
.footer-links-bar a { color: rgba(255,255,255,0.5); font-size: 0.85rem; text-decoration: none; }
.footer-links-bar a:hover { color: var(--secondary-color); }

/* ===========================
   PROJECTS FILTER BAR
   =========================== */
.projects-filter-bar {
  background: white;
  border-bottom: 2px solid var(--border-color);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.filter-btns { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filter-btn {
  padding: 8px 18px;
  border: 2px solid var(--border-color);
  border-radius: 25px;
  background: white;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.25s ease;
  color: var(--text-color);
  font-family: var(--font-main);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}
.filter-btn .count {
  background: var(--secondary-color);
  color: white;
  border-radius: 10px;
  padding: 1px 7px;
  font-size: 0.75rem;
  margin-left: 4px;
}

/* ===========================
   PROJECT LABEL BELOW IMAGE
   =========================== */
.project-label {
  padding: 12px 14px;
  background: white;
}
.project-cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  color: white;
  margin-bottom: 6px;
}
.project-label h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.3;
}
.project-item { box-shadow: 0 3px 12px rgba(0,0,0,0.1); border-radius: 8px; overflow: hidden; }

/* Category colour coding */
.cat-gate { background: var(--primary-color); }
.cat-door { background: var(--secondary-color); }
.cat-rail { background: #27ae60; }
.cat-work { background: #555; }

/* WhatsApp quote button inside overlay */
.btn-view-project {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 18px;
  background: #25D366;
  color: white;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}
.btn-view-project:hover { background: #20BA5A; color: white; text-decoration: none; }

/* ===========================
   HIDE MOBILE — TOP BAR
   =========================== */
@media (max-width: 768px) {
  .hide-mobile { display: none; }
}

/* ===========================
   FAQ SECTION
   =========================== */

.faq-section { padding: 60px 0; }

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover { box-shadow: 0 5px 20px rgba(0,102,204,0.1); }
.faq-item.open { border-color: var(--primary-color); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--secondary-color); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}

.faq-question h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.4;
}

.faq-icon {
  min-width: 28px;
  height: 28px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--primary-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  border-top: 1px solid var(--border-color);
}

.faq-answer p {
  margin: 14px 0 0;
  color: var(--dark-gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer { display: block; }

/* FAQ on service sidebar */
.faq-sidebar { margin-top: 20px; }
.faq-sidebar .faq-question h4 { font-size: 0.9rem; }
.faq-sidebar .faq-answer p { font-size: 0.88rem; }

@media (max-width: 768px) {
  .faq-question h4 { font-size: 0.92rem; }
}
