@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-gold: #C5B358;
  --color-silver: #A8A8A8;
  --font-primary: 'Montserrat', sans-serif;
  --font-fallback: 'Lora', serif;
  --transition-base: 0.3s ease;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(197, 179, 88, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  height: 60px;
  max-width: 200px;
  object-fit: contain;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-desktop a {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.btn-primary {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-white);
  padding: 12px 28px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
  filter: brightness(1.1);
}

.btn-primary:focus {
  outline: 2px solid var(--color-silver);
  outline-offset: 2px;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-white);
  padding: 10px 24px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--color-white);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--color-black);
  z-index: 999;
  padding: 80px 30px 30px;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 30px;
  cursor: pointer;
}

.mobile-nav a {
  display: block;
  color: var(--color-white);
  font-size: 24px;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover {
  color: var(--color-gold);
}

.mobile-nav .btn-primary {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
}

.phone-icon {
  display: none;
  color: var(--color-white);
  font-size: 20px;
  align-items: center;
  justify-content: center;
}

/* Hero Sections */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-black);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-fallback);
  font-style: italic;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero .btn-primary {
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* About Brief Section */
.about-brief {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--color-black) 0%, #0a0a0a 100%);
  text-align: center;
}

.about-brief h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--color-gold);
}

.about-brief p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-fallback);
}

.about-brief .btn-secondary {
  margin-top: 10px;
}

/* Services Overview Section */
.services-overview {
  padding: 100px 0;
  background: var(--color-black);
}

.services-overview h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  position: relative;
  background: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--color-gold);
  border-radius: 12px;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

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

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-white);
}

.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.service-card a {
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card a:hover {
  color: var(--color-white);
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, var(--color-black) 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(197, 179, 88, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-choose-item {
  text-align: center;
  padding: 30px;
  transition: transform 0.3s ease;
}

.why-choose-item:hover {
  transform: translateY(-5px);
}

.why-choose-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 179, 88, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.why-choose-item:hover .why-choose-icon {
  background: rgba(197, 179, 88, 0.2);
  box-shadow: 0 0 30px rgba(197, 179, 88, 0.3);
}

.why-choose-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--color-gold);
}

.why-choose-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-white);
}

.why-choose-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: var(--color-black);
  position: relative;
}

.testimonials h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-item {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}

.testimonial-block {
  background: #0a0a0a;
  border-left: 4px solid var(--color-gold);
  padding: 40px;
  border-radius: 0 12px 12px 0;
}

.testimonial-block blockquote {
  font-size: 20px;
  font-family: var(--font-fallback);
  font-style: italic;
  color: var(--color-white);
  margin-bottom: 25px;
  line-height: 1.8;
}

.testimonial-block cite {
  color: var(--color-gold);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-nav button {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-nav button:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.testimonial-dot.active {
  background: var(--color-gold);
  transform: scale(1.2);
}

/* CTA Final Section */
.cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, var(--color-black) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(197, 179, 88, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-final p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-family: var(--font-fallback);
}

/* Footer */
.footer {
  background: #050505;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-about .logo {
  margin-bottom: 20px;
}

.footer-about .logo img {
  height: 40px;
}

.footer-established {
  display: inline-block;
  background: rgba(197, 179, 88, 0.1);
  border: 1px solid var(--color-gold);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--color-gold);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

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

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

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
}

.footer h4 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: var(--color-white);
}

.footer-services ul li,
.footer-contact ul li {
  margin-bottom: 12px;
}

.footer-services a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-services a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.footer-contact p,
.footer-contact a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 12px;
}

.footer-contact a:hover {
  color: var(--color-gold);
}

.footer-quick-links {
  margin-top: 20px;
}

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

.footer-quick-links a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* About Page Specific */
.hero-about {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.company-history {
  padding: 100px 0;
  background: var(--color-black);
}

.company-history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.company-history-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: var(--color-gold);
}

.company-history-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: var(--font-fallback);
}

.company-history-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.company-history-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.values-list {
  margin-top: 30px;
}

.values-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.values-list li::before {
  content: '✦';
  color: var(--color-gold);
  font-size: 14px;
  margin-top: 3px;
}

.values-list strong {
  color: var(--color-white);
  display: block;
  margin-bottom: 5px;
}

.values-list span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Philosophy Section */
.philosophy {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--color-black) 0%, #0a0a0a 100%);
}

.philosophy h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-gold);
}

.philosophy-content {
  max-width: 800px;
  margin: 0 auto;
}

.philosophy-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  font-family: var(--font-fallback);
  margin-bottom: 25px;
  text-align: center;
}

/* Team Section */
.team {
  padding: 100px 0;
  background: var(--color-black);
}

.team h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

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

.team-member {
  text-align: center;
  background: #0a0a0a;
  border-radius: 12px;
  padding: 40px 30px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(197, 179, 88, 0.2);
}

.team-member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 25px;
  overflow: hidden;
  border: 3px solid var(--color-gold);
  box-shadow: 0 0 20px rgba(197, 179, 88, 0.3);
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--color-white);
}

.team-member .title {
  font-size: 14px;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.team-member p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Services Page */
.service-categories {
  padding: 100px 0;
  background: var(--color-black);
}

.service-categories h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

.service-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-category-card {
  position: relative;
  display: block;
  background: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-category-card:hover {
  transform: scale(1.03);
}

.service-category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-gold);
  border-radius: 12px;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-category-card:hover::before {
  opacity: 1;
  box-shadow: var(--shadow-glow);
}

.service-category-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-category-card:hover img {
  transform: scale(1.1);
}

.service-category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.service-category-card h3 {
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 5px;
}

.service-category-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* Comprehensive Solutions */
.comprehensive-solutions {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, var(--color-black) 100%);
}

.comprehensive-solutions h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

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

.solution-item {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: #0a0a0a;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.solution-item:hover {
  transform: translateX(10px);
  background: #0f0f0f;
}

.solution-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 179, 88, 0.1);
  border-radius: 12px;
}

.solution-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--color-gold);
}

.solution-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-white);
}

.solution-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Service Detail Page */
.hero-service-detail {
  position: relative;
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-intro {
  padding: 100px 0;
  background: var(--color-black);
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-intro-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: var(--color-gold);
}

.service-intro-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-family: var(--font-fallback);
  margin-bottom: 20px;
}

.service-benefits {
  margin-top: 30px;
}

.service-benefits li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}

.service-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: bold;
}

.service-intro-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.service-intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Service Process */
.service-process {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--color-black) 0%, #0a0a0a 100%);
}

.service-process h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-step {
  text-align: center;
  padding: 40px 25px;
  background: #0a0a0a;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card);
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold);
  font-size: 24px;
  display: none;
}

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

.step-number {
  width: 60px;
  height: 60px;
  background: var(--color-gold);
  color: var(--color-black);
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--color-white);
}

.process-step p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Service Gallery */
.service-gallery {
  padding: 100px 0;
  background: var(--color-black);
}

.service-gallery h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

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

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: var(--color-white);
  font-size: 14px;
  z-index: 10;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* CTA Service */
.cta-service {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, var(--color-black) 100%);
  text-align: center;
}

.cta-service h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

/* Contact Page */
.hero-contact {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-section {
  padding: 100px 0;
  background: var(--color-black);
}

.contact-form-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 50px;
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #0a0a0a;
  padding: 50px;
  border-radius: 12px;
}

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

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: var(--color-black);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(197, 179, 88, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.form-group select option {
  background: var(--color-black);
  color: var(--color-white);
}

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

.contact-form-wrapper .btn-primary {
  width: 100%;
  padding: 18px;
  font-size: 16px;
}

/* Contact Info */
.contact-info {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, var(--color-black) 100%);
}

.contact-info h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.contact-info-item {
  text-align: center;
  padding: 40px 25px;
  background: #0a0a0a;
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

.contact-info-icon {
  width: 70px;
  height: 70px;
  background: rgba(197, 179, 88, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.contact-info-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--color-gold);
}

.contact-info-item h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--color-white);
}

.contact-info-item p,
.contact-info-item a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.contact-info-item a:hover {
  color: var(--color-gold);
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(197, 179, 88, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(197, 179, 88, 0.5);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .phone-icon {
    display: block;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .about-brief h2,
  .services-overview h2,
  .why-choose-us h2,
  .testimonials h2,
  .cta-final h2,
  .team h2,
  .service-categories h2,
  .comprehensive-solutions h2,
  .service-process h2,
  .service-gallery h2,
  .contact-form-section h2,
  .contact-info h2 {
    font-size: 32px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .service-card img {
    height: 150px;
  }
  
  .service-card-content {
    padding: 20px;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .company-history-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .company-history-image {
    order: -1;
  }
  
  .service-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .service-category-card img {
    height: 180px;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  
  .service-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-intro-image {
    order: -1;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (min-width: 480px) {
  .phone-icon {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
    letter-spacing: 2px;
  }
  
  .hero p {
    font-size: 14px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-category-grid {
    grid-template-columns: 1fr;
  }
  
  .btn-primary {
    width: 100%;
    text-align: center;
  }
  
  .testimonial-block {
    padding: 25px;
  }
  
  .testimonial-block blockquote {
    font-size: 16px;
  }
}

/* Light beam animation for Why Choose Us */
@keyframes lightBeam {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.why-choose-us .light-beam {
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(197, 179, 88, 0.1), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: lightBeam 8s infinite;
}

/* Custom cursor glow effect (desktop only) */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: default;
  }
  
  body:hover::after {
    content: '';
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 179, 88, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
  }
}
