@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #273953;
  --primary-light: #3A5F7A;
  --secondary: #C8A45C;
  --secondary-light: #E0C88A;
  --accent: #E8E0D3;
  --dark: #1F2840;
  --darker: #141A2B;
  --light: #F8F6F3;
  --white: #FFFFFF;
  --gray-50: #F5F4F2;
  --gray-100: #E8E6E2;
  --gray-200: #D4D0CA;
  --gray-300: #B8B3AB;
  --gray-400: '#8A847C';
  --gray-500: '#6B665E';
  --gray-600: #545048;
  --gray-700: #3F3C36;
  --gray-800: #2C2A26;
  --gray-900: #1A1916;
  --font-primary: 'Plus Jakarta Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-secondary: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-secondary);
  color: var(--gray-800);
  background: var(--light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

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

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--secondary);
  vertical-align: middle;
  margin: 0 12px;
}

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

.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

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

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(39, 57, 83, 0.3);
}

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

.btn-secondary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 164, 92, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.08);
  padding: 6px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .nav-logo {
  color: var(--dark);
}

.nav-logo img {
  height: 80px;
  width: auto;
  transition: var(--transition);
}

.footer .nav-logo img {
  height: 50px;
}

@media (max-width: 768px) {
  .nav-logo img { height: 60px; }
  .footer .nav-logo img { height: 40px; }
}

.nav-logo span {
  font-size: 18px;
  letter-spacing: -0.5px;
}

.nav-logo small {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.7;
  display: block;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}

.navbar.scrolled .nav-links a {
  color: var(--gray-700);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary);
}

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

.nav-cta {
  padding: 10px 28px !important;
  background: var(--secondary);
  color: var(--dark) !important;
  border-radius: 50px;
  font-size: 13px !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--secondary-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 164, 92, 0.3);
}

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

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--dark);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--darker);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(20, 26, 43, 0.95) 0%,
    rgba(39, 57, 83, 0.85) 50%,
    rgba(20, 26, 43, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(200, 164, 92, 0.15);
  border: 1px solid rgba(200, 164, 92, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-title .highlight {
  color: var(--secondary);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 12px;
  background: rgba(200, 164, 92, 0.2);
  border-radius: 4px;
  z-index: -1;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}



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

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

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

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

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

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 26px;
  color: var(--secondary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark);
}

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

/* ========== ABOUT PREVIEW ========== */
.about-preview {
  background: var(--white);
}

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

.about-image {
  position: relative;
}

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

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--secondary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.about-experience {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary);
  color: var(--white);
  padding: 28px 36px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-experience .number {
  font-family: var(--font-primary);
  font-size: 42px;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.about-experience .label {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 4px;
}

.about-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--gray-500);
  margin-bottom: 16px;
  font-size: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-100);
}

.stat-item .stat-number {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
}

.stat-item .stat-label {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}

/* ========== TEAM ========== */
.team-section {
  background: var(--gray-50);
}

.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-sm);
  transition: var(--transition);
}

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

.team-image {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.team-social {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 12px;
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-social {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.team-social a {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
}

.team-info {
  padding: 28px 32px;
}

.team-info h4 {
  font-size: 20px;
  margin-bottom: 4px;
}

.team-info .role {
  font-size: 13px;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.team-info p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

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

.product-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 36, 29, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay a {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border: 2px solid var(--white);
  border-radius: 50px;
  transition: var(--transition);
}

.product-overlay a:hover {
  background: var(--white);
  color: var(--primary);
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--dark);
}

.product-info p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ========== CTA ========== */
.cta-section {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
  opacity: 0.1;
}

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

.cta-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-bottom: 36px;
  line-height: 1.8;
}

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

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  padding: 20px 0;
}

.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: var(--gray-50);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 72px;
  color: var(--secondary);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
}

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

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
}

.testimonial-role {
  font-size: 13px;
  color: var(--gray-400);
}

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

.testimonial-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 18px;
  color: var(--gray-600);
}

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

/* ========== TIMELINE (About) ========== */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.timeline-year {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.timeline-content h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--gray-500);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: var(--secondary);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--secondary);
  z-index: 1;
}

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

.motive-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

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

.motive-icon {
  width: 70px;
  height: 70px;
  background: var(--gray-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 30px;
  color: var(--secondary);
  transition: var(--transition);
}

.motive-card:hover .motive-icon {
  background: var(--primary);
  color: var(--white);
}

.motive-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.motive-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
}

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

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

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

.contact-info-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--secondary);
}

.contact-info-item h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

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

.contact-form {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

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

.contact-form > p {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  font-family: var(--font-primary);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-secondary);
  font-size: 15px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  transition: var(--transition);
  color: var(--gray-800);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(39, 57, 83, 0.1);
}

.form-control::placeholder {
  color: var(--gray-400);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

/* ========== MAP ========== */
.map-section {
  padding: 0;
}

.map-container {
  width: 100%;
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--darker);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 320px;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary);
}

.footer-links {
  list-style: none;
}

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

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

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

.footer-contact p {
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-locations p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
}

/* ========== PAGE HERO (Inner Pages) ========== */
.page-hero {
  position: relative;
  padding: 200px 0 100px;
  background: var(--dark);
  overflow: hidden;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 16px;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumb a {
  color: var(--secondary);
}

.page-hero .breadcrumb a:hover {
  color: var(--secondary-light);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: var(--white);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========== BACK TO TOP ========== */
.back-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

/* ========== INSTAGRAM FEED ========== */
.instagram-feed {
  background: var(--gray-50);
}

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

.instagram-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(39, 57, 83, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.instagram-overlay a {
  color: var(--white);
  font-size: 28px;
}

/* ========== CLIENTS / PARTNERS ========== */
.clients-section {
  background: var(--gray-50);
  overflow: hidden;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  height: 100px;
  transition: var(--transition);
  filter: grayscale(100%);
  opacity: 0.6;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.client-logo img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 992px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 576px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== PROCESS / HOW WE WORK ========== */
.process-section {
  background: var(--white);
}

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

.process-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(12.5% + 30px);
  right: calc(12.5% + 30px);
  height: 2px;
  background: linear-gradient(to right, var(--secondary), var(--gray-200), var(--gray-200), var(--secondary));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 40px 24px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.process-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 800;
  transition: var(--transition);
  position: relative;
}

.process-step:hover .process-number {
  background: var(--secondary);
  transform: scale(1.1);
}

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

.process-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}

@media (max-width: 576px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ========== PAGE HEADER WITH PATTERN ========== */
.page-header {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
}

.page-header.primary-bg {
  background: var(--dark);
}

.page-header .bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: radial-gradient(var(--secondary) 1px, transparent 1px);
  background-size: 30px 30px;
}

.page-header .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .motives-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .timeline::before { left: 30px; }
  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-left: 60px;
  }
  .timeline-content { width: 100%; }
  .timeline-dot { left: 30px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { min-width: calc(50% - 15px); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 40px;
    gap: 24px;
    transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }
  .nav-links.active { right: 0; }
  .nav-links a { color: var(--gray-700) !important; font-size: 16px; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .about-image img { height: 350px; }
  .about-experience {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
  }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-form { padding: 28px; }
  .testimonial-card { min-width: 100%; }
  .hero-title { font-size: clamp(32px, 10vw, 48px); }
  .hero-desc { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .navbar { padding: 6px 0; }
  .navbar.scrolled { padding: 10px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 50px 0; }
}
