/* ========================================
   LOCKSMITH NINJA PERTH - MAIN STYLESHEET
   ======================================== */

:root {
  --primary: #0d1b2a;
  --primary-dark: #081018;
  --secondary: #1a2e44;
  --accent: #f5a623;
  --accent-dark: #d4891a;
  --red: #e53935;
  --red-dark: #c62828;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --border: #e0e0e0;
  --text: #333333;
  --text-light: #666666;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

p { margin-bottom: 1rem; }

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

.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 50px 0; }

/* =================== TOP BAR =================== */
.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar a {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar a:hover { color: var(--accent); }

.top-bar-social a {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}

.top-bar-social a:hover { background: var(--accent); color: #000; }

/* =================== HEADER =================== */
.main-header {
  background: var(--primary);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  height: 65px;
  width: auto;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.header-info-item .icon-box {
  width: 45px; height: 45px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: #000;
  flex-shrink: 0;
}

.header-info-item .info-text span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-info-item .info-text strong {
  font-size: 15px;
  color: var(--accent);
}

.call-btn {
  background: var(--red);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.call-btn:hover {
  background: var(--red-dark);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(229,57,53,0.4);
}

/* =================== NAVIGATION =================== */
.main-nav {
  background: var(--secondary);
  border-bottom: 3px solid var(--accent);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  color: var(--white);
  padding: 16px 18px;
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--accent);
  background: rgba(245,166,35,0.1);
}

.nav-menu > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary);
  min-width: 240px;
  border-top: 3px solid var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}

.dropdown li a {
  color: rgba(255,255,255,0.85);
  padding: 12px 20px;
  display: block;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.dropdown li a:hover {
  color: var(--accent);
  background: rgba(245,166,35,0.08);
  padding-left: 25px;
}

.nav-cta {
  background: var(--accent);
  color: var(--primary) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
  margin-left: 10px;
}

.nav-cta:hover {
  background: var(--accent-dark) !important;
  color: var(--primary) !important;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px; height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

/* =================== HERO SECTION =================== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 60%, #1e3a5f 100%);
  min-height: 620px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text h1 span { color: var(--accent); }

.hero-text p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin-bottom: 25px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-badge {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(245,166,35,0.3);
}

.hero-badge i { color: var(--accent); }

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(245,166,35,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-red:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(229,57,53,0.4);
}

/* Hero Form */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.hero-form-card h3 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 5px;
}

.hero-form-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 20px;
}

.form-group { margin-bottom: 14px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}

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

.form-submit {
  background: var(--accent);
  color: var(--primary);
  border: none;
  padding: 14px 100%;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.form-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* =================== SECTION TITLES =================== */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .subtitle {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto;
  font-size: 17px;
}

.section-title-left { text-align: left; }
.section-title-left p { margin: 0; }

.divider {
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.divider-left { margin: 0 0 20px; }

/* =================== SERVICE CARDS =================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-card-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 35px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card-icon::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
}

.service-card-icon i {
  font-size: 3rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.service-card-body {
  padding: 25px;
}

.service-card-body h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-card-body p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.service-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-link:hover { gap: 10px; color: var(--accent-dark); }

/* =================== WHY CHOOSE US =================== */
.why-choose {
  background: var(--primary);
  color: var(--white);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-choose-text h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.why-choose-text h2 span { color: var(--accent); }
.why-choose-text p { color: rgba(255,255,255,0.8); margin-bottom: 30px; }

.features-list { margin-bottom: 30px; }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

.feature-icon {
  width: 45px; height: 45px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #000;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-text h4 { color: var(--white); font-size: 16px; margin-bottom: 4px; }
.feature-text p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.stat-box .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.stat-box .label {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}

/* =================== PROCESS SECTION =================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -15px;
  top: 35px;
  font-size: 24px;
  color: var(--accent);
}

.process-step:last-child::after { display: none; }

.step-num {
  width: 65px; height: 65px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
  border: 3px solid var(--accent);
}

.process-step h3 { font-size: 17px; margin-bottom: 10px; }
.process-step p { color: var(--text-light); font-size: 14px; }

/* =================== TESTIMONIALS =================== */
.testimonials { background: var(--light-gray); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  transition: var(--transition);
}

.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.stars { color: var(--accent); font-size: 18px; margin-bottom: 15px; }

.testimonial-text {
  color: var(--text-light);
  font-size: 15px;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

.author-info h4 { font-size: 15px; margin-bottom: 2px; }
.author-info span { color: var(--text-light); font-size: 13px; }

/* =================== FAQ =================== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  background: var(--white);
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: var(--primary);
  transition: var(--transition);
}

.faq-question:hover { background: var(--light-gray); }
.faq-question.active { background: var(--primary); color: var(--white); }
.faq-question .faq-icon { font-size: 18px; transition: var(--transition); }
.faq-question.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  background: var(--light-gray);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq-answer.open {
  padding: 18px 20px;
  max-height: 400px;
}

.faq-answer p { color: var(--text-light); margin: 0; font-size: 14px; line-height: 1.8; }

/* =================== SERVICE AREAS =================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.area-pill {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 25px;
  padding: 10px 15px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.area-pill:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--primary);
  cursor: pointer;
}

/* =================== CTA BAND =================== */
.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 60px 0;
  text-align: center;
}

.cta-band h2 { color: var(--primary); font-size: 2.2rem; margin-bottom: 15px; }
.cta-band p { color: rgba(0,0,0,0.7); font-size: 17px; margin-bottom: 30px; }

.cta-band .btn-dark {
  background: var(--primary);
  color: var(--white);
  padding: 15px 35px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.cta-band .btn-dark:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* =================== PAGE HERO =================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.page-hero h1 span { color: var(--accent); }

.page-hero p {
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 17px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  position: relative;
  z-index: 1;
}

.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* =================== CONTENT SECTIONS =================== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.content-text h2 { font-size: 2rem; margin-bottom: 15px; }
.content-text h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--accent); }
.content-text p { color: var(--text-light); margin-bottom: 15px; }

.check-list { margin: 20px 0; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-light);
  font-size: 15px;
}

.check-list li i { color: var(--accent); font-size: 16px; margin-top: 3px; flex-shrink: 0; }

/* =================== SIDEBAR =================== */
.sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 25px;
  box-shadow: var(--shadow);
  margin-bottom: 25px;
  border-top: 4px solid var(--accent);
}

.sidebar-widget h3 {
  font-size: 17px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.service-nav-list li { margin-bottom: 5px; }

.service-nav-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background: var(--light-gray);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.service-nav-list li a:hover,
.service-nav-list li a.active {
  background: var(--primary);
  color: var(--white);
  padding-left: 20px;
}

.service-nav-list li a i { color: var(--accent); }

.contact-widget-info { margin-top: 15px; }

.contact-widget-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.contact-widget-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-widget-item i {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #000;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-widget-item .cw-text span {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-widget-item .cw-text strong {
  font-size: 14px;
  color: var(--primary);
}

/* =================== ABOUT PAGE =================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.team-card:hover { transform: translateY(-5px); }

.team-avatar {
  height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  color: var(--accent);
}

.team-card-body { padding: 20px; }
.team-card-body h3 { font-size: 17px; margin-bottom: 5px; }
.team-card-body span { color: var(--accent); font-size: 13px; font-weight: 600; display: block; margin-bottom: 10px; }
.team-card-body p { color: var(--text-light); font-size: 14px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.value-card {
  text-align: center;
  padding: 35px 25px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--accent);
  transition: var(--transition);
}

.value-card:hover { transform: translateY(-5px); }

.value-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--accent);
}

.value-card h3 { font-size: 17px; margin-bottom: 12px; }
.value-card p { color: var(--text-light); font-size: 14px; }

/* =================== CONTACT PAGE =================== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  transition: var(--transition);
}

.contact-info-card:hover { transform: translateY(-5px); }

.contact-info-icon {
  width: 65px; height: 65px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 25px;
  color: var(--accent);
}

.contact-info-card h3 { font-size: 17px; margin-bottom: 10px; }
.contact-info-card p { color: var(--text-light); font-size: 14px; margin: 0; }
.contact-info-card a { color: var(--primary); font-weight: 600; }
.contact-info-card a:hover { color: var(--accent); }

.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.big-contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.big-contact-form h2 { font-size: 1.8rem; margin-bottom: 8px; }
.big-contact-form p { color: var(--text-light); margin-bottom: 25px; }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 25px;
}

.map-container iframe { display: block; width: 100%; }

/* =================== BLOG PAGE =================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  color: var(--accent);
  position: relative;
  overflow: hidden;
}

.blog-tag {
  position: absolute;
  top: 15px; left: 15px;
  background: var(--accent);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-card-body { padding: 25px; }
.blog-meta { color: var(--text-light); font-size: 12px; margin-bottom: 12px; display: flex; gap: 12px; align-items: center; }
.blog-meta i { color: var(--accent); }
.blog-card-body h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body h3 a:hover { color: var(--accent); }
.blog-card-body p { color: var(--text-light); font-size: 14px; margin-bottom: 15px; }

/* =================== FOOTER =================== */
.main-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
}

.footer-top {
  padding: 70px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo img { height: 60px; margin-bottom: 20px; }

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.7);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-3px);
}

.footer-heading {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a i { color: var(--accent); font-size: 12px; }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-item span {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--accent); }

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

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.footer-bottom-links a:hover { color: var(--accent); }

/* =================== EMERGENCY BAND =================== */
.emergency-band {
  background: var(--red);
  padding: 15px 0;
  text-align: center;
}

.emergency-band p {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.emergency-band a { color: var(--white); text-decoration: underline; font-size: 17px; }

/* =================== INFO BOXES =================== */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.info-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
}

.info-box i { font-size: 2rem; color: var(--accent); margin-bottom: 12px; }
.info-box h3 { font-size: 15px; margin-bottom: 8px; }
.info-box p { color: var(--text-light); font-size: 13px; margin: 0; }

/* =================== ACCENT BG SECTION =================== */
.bg-light { background: var(--light-gray); }
.bg-dark { background: var(--primary); }
.bg-primary { background: var(--primary); }

/* =================== SCROLL TO TOP =================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px; height: 45px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #000;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(245,166,35,0.5);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); background: var(--accent-dark); }

/* Floating call button */
.float-call {
  position: fixed;
  bottom: 90px;
  right: 30px;
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(229,57,53,0.5);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.float-call:hover { background: var(--red-dark); color: var(--white); transform: scale(1.05); }

@keyframes pulse {
  0% { box-shadow: 0 4px 20px rgba(229,57,53,0.5); }
  50% { box-shadow: 0 4px 30px rgba(229,57,53,0.8); }
  100% { box-shadow: 0 4px 20px rgba(229,57,53,0.5); }
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { grid-template-columns: 1fr; }
  .hero-form-card { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .sidebar-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  
  .header-info { display: none; }
  
  .hamburger { display: flex; }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--primary);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    border-top: 2px solid var(--accent);
  }
  
  .nav-menu.open { display: flex; }
  
  .nav-menu > li > a { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
  }
  
  .nav-inner { flex-wrap: wrap; padding: 10px 0; position: relative; }
  
  .hero-text h1 { font-size: 2rem; }
  
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-form-section { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .why-choose-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid.reverse { direction: ltr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .info-boxes { grid-template-columns: repeat(2, 1fr); }
  
  .section-title h2 { font-size: 1.7rem; }
  .page-hero h1 { font-size: 2rem; }
  
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr; }
  .info-boxes { grid-template-columns: 1fr; }
}
