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

/* ===== RESET & VARIABLES ===== */
:root {
  --primary-color: #064E3B; /* Deep Emerald */
  --primary-light: #047857; /* Vibrant Emerald */
  --accent-color: #D97706; /* Champagne Gold */
  --accent-light: #F59E0B; /* Bright Gold */
  --text-dark: #0F172A; /* Slate 900 */
  --text-light: #475569; /* Slate 600 */
  --bg-light: #F0FDF4; /* Faint Green */
  --bg-white: #FFFFFF;
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --hover-shadow: 0 20px 40px rgba(6, 78, 59, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background-color: var(--bg-light);
  overflow-x: hidden;
  max-width: 100%;
}

ul {
  list-style: none;
}

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--bg-white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  letter-spacing: -0.01em;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 4px;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.bg-light {
  background-color: var(--bg-light);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.8rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transform: translateZ(0); 
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--bg-white);
  box-shadow: 0 8px 20px rgba(6, 78, 59, 0.2);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 30px rgba(6, 78, 59, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  transition: left 0.6s ease-in-out;
  z-index: 2;
}

.btn-primary:hover::after {
  left: 200%;
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--bg-white);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background-color: var(--bg-white);
  color: var(--primary-color);
  transform: translateY(-4px) scale(1.02);
  box-shadow: inset 0 0 0 2px var(--bg-white), 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* ===== HEADER (Glassmorphism Pill) ===== */
.header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1300px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  padding: 0.1rem 2rem;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  padding: 0;
}

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

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

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--primary-color);
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--primary-color);
  color: var(--bg-white);
  text-align: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.9) 0%, rgba(2, 44, 34, 0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
}

.hero p {
  color: var(--bg-light);
  font-size: 1.5rem;
  font-weight: 300;
  max-width: 750px;
  margin: 0 auto 3rem auto;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.95), rgba(2, 44, 34, 0.8)), url('../images/image_15320.jpg?v=12.0') center/cover fixed;
  color: var(--bg-white);
  text-align: center;
  padding-top: 100px;
  position: relative;
}

.page-hero p {
  color: var(--bg-light);
  font-size: 1.25rem;
  font-weight: 300;
  max-width: 750px;
  margin: 0 auto;
}

/* Add decorative ambient glow to hero */
.page-hero::before, .hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 60%);
  opacity: 0.15;
  top: -200px;
  right: -200px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 2;
}

/* ===== SERVICES GRID (PREMIUM BENTO) ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

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

.card {
  background: var(--bg-white);
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: left; /* Shifted to left for modern feel */
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.8), rgba(255,255,255,0.1));
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: var(--hover-shadow);
  border-color: rgba(6, 78, 59, 0.1);
}

.card:hover::after {
  opacity: 1;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 0 2rem 0;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2.5rem;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(6, 78, 59, 0.05);
}

.card:hover .icon-wrapper {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--bg-white);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 30px rgba(6, 78, 59, 0.2);
}

.card.image-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.card.image-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  transition: var(--transition);
}

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

.card.image-card .card-content {
  padding: 2rem;
  flex-grow: 1;
  background: var(--bg-white);
  position: relative;
  z-index: 2;
}

.card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* ===== SERVICES ACCORDION (CREATIVE) ===== */
.services-accordion {
  display: flex;
  gap: 1.5rem;
  height: 500px;
  width: 100%;
}

.accordion-panel {
  flex: 1;
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  box-shadow: var(--box-shadow);
}

.accordion-panel:hover {
  flex: 4;
  box-shadow: var(--hover-shadow);
}

.accordion-panel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: grayscale(40%) brightness(0.8);
}

.accordion-panel:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1);
}

.accordion-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 44, 34, 0.95) 0%, rgba(2, 44, 34, 0.4) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  transition: var(--transition);
}

.accordion-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.5rem;
  margin-bottom: auto; /* Pushes it to the top */
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.5s ease 0.1s;
}

.accordion-panel:hover .accordion-icon {
  opacity: 1;
  transform: translateY(0);
}

.accordion-content h3 {
  color: var(--bg-white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  white-space: normal;
  line-height: 1.3;
  transition: var(--transition);
}

.accordion-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  margin: 0;
}

.accordion-panel:hover .accordion-desc {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.8rem;
  transition-delay: 0.1s;
}

@media (max-width: 992px) {
  .services-accordion {
    flex-direction: column;
    height: 1000px;
  }
  .accordion-content h3 {
    white-space: normal;
  }
  .accordion-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* ===== ABOUT SECTION (CREATIVE) ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.about-img-group {
  position: relative;
  width: 100%;
}

.about-img-main {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--hover-shadow);
  position: relative;
  z-index: 1;
  width: 90%;
}

.about-img-main img {
  width: 100%;
  transition: transform 0.7s ease;
}

.about-img-main:hover img {
  transform: scale(1.05);
}

.about-badge {
  position: absolute;
  bottom: -15px;
  right: -5px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.4);
  z-index: 2;
  border: 6px solid var(--bg-light); /* Pops against background */
  animation: floatBadge 5s ease-in-out infinite;
}

.about-badge span {
  font-size: 1.8rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1;
}

.about-badge p {
  color: var(--bg-white);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
  text-align: center;
}

@keyframes floatBadge {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.about-content h2 {
  text-align: left;
  font-size: 3.5rem;
  margin-bottom: 2rem;
}

.about-content h2::after {
  left: 0;
  transform: none;
  width: 60px;
}

.creative-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.creative-highlight-box {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}

.creative-highlight-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
  border-color: rgba(6, 78, 59, 0.1);
}

.creative-highlight-box i {
  color: var(--primary-color);
  font-size: 2rem;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: var(--transition);
}

.creative-highlight-box:hover i {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--bg-white);
  transform: scale(1.1) rotate(-5deg);
}

.creative-highlight-box span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.4;
}

/* ===== INDUSTRIES (CREATIVE BENTO) ===== */
.industries-creative-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  grid-auto-rows: 280px;
}

.industry-card-creative {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  cursor: pointer;
}

/* Asymmetrical Layout */
.industry-card-creative:nth-child(1) { grid-column: span 8; }
.industry-card-creative:nth-child(2) { grid-column: span 4; }
.industry-card-creative:nth-child(3) { grid-column: span 5; }
.industry-card-creative:nth-child(4) { grid-column: span 7; }

.industry-card-creative img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.industry-card-creative:hover img {
  transform: scale(1.08);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 44, 34, 0.9) 0%, transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  transition: background 0.5s ease;
}

.industry-card-creative:hover .industry-overlay {
  background: linear-gradient(to top, rgba(2, 44, 34, 0.95) 0%, rgba(2, 44, 34, 0.2) 100%);
}

.industry-content-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.industry-card-creative:hover .industry-content-wrap {
  transform: translateY(0);
}

.industry-content-wrap h3 {
  color: var(--bg-white);
  margin: 0;
  font-size: 1.6rem;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
  font-weight: 700;
}

/* ===== PROJECTS / CASE STUDIES ===== */
.project-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
}

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

.project-info {
  padding: 2.5rem;
}

.project-info h3 {
  color: var(--primary-color);
  font-size: 1.6rem;
}

.project-info p strong {
  color: var(--accent-color);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}
.project-card:hover img {
  transform: scale(1.05);
}

/* ===== WHY CHOOSE US ICONS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.feature-box {
  padding: 2rem;
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}
.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
}
.feature-box i {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  background: -webkit-linear-gradient(135deg, var(--accent-light), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature-box h4 {
  font-size: 1.1rem;
  margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--bg-white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  border-radius: 40px; /* Floating pill effect inside container */
  margin: 3rem 2rem; /* Reduced margin */
  box-shadow: var(--hover-shadow);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-section h2 {
  color: var(--bg-white);
  border: none;
  font-size: 3.5rem;
  margin-bottom: 2rem;
}

.cta-section h2::after {
  display: none;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.25rem;
  margin-bottom: 3rem;
}

/* ===== CONTACT SECTION / PAGE ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.contact-info {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--bg-white);
  padding: 3.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--hover-shadow);
  position: relative;
  overflow: hidden;
}

.contact-info::after {
  content: '\f095'; /* Phone icon watermark */
  font-family: 'FontAwesome';
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-size: 15rem;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
}

.contact-info h3 {
  margin-bottom: 2.5rem;
  color: var(--bg-white);
  font-size: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--accent-light);
  background: rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 50%;
}

.info-item p {
  color: rgba(255,255,255,0.9);
  margin: 0;
  padding-top: 0.5rem;
}

.contact-form {
  background: var(--bg-white);
  padding: 4rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(0,0,0,0.03);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid #E2E8F0;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  background-color: #F8FAFC;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(6, 78, 59, 0.1);
}

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

.alert {
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.alert-success { background-color: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background-color: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ===== FOOTER ===== */
.footer {
  background-color: #022C22; /* Very deep emerald */
  color: rgba(255,255,255,0.7);
  padding: 2rem 0 1rem 0;
  position: relative;
}

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

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--bg-white);
  margin-bottom: 0.5rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-light);
  border-radius: 2px;
}

.footer-col p {
  color: rgba(255,255,255,0.7);
  max-width: 400px;
  font-size: 0.85rem;
  margin-bottom: 0;
}

.footer-links li { margin-bottom: 0; font-size: 0.85rem; }
.footer-links a { color: rgba(255,255,255,0.7); font-weight: 500; }
.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 8px;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px; height: 45px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 50%;
  color: var(--bg-white);
  font-size: 1.2rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.social-icons a:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .about-grid, .contact-wrapper { gap: 3rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}

@media (max-width: 992px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  
  .industry-card-creative:nth-child(n) {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.4rem; }
  h2, .about-content h2 { font-size: 2rem; }
  
  .header {
    border-radius: 100px;
    width: calc(100% - 2rem);
    top: 0.8rem;
    padding: 0.6rem 1.5rem;
  }
  
  .logo img { height: 40px; width: 40px; }
  .logo-title { font-size: 1.1rem; }
  .logo-tagline { display: none; }
  
  .nav-links {
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    height: calc(100vh - 85px);
    background: rgba(255,255,255,0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    transition: var(--transition);
  }
  
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .mobile-menu-btn { display: block; }
  .hero-btns { 
    flex-direction: column; 
    align-items: center;
    width: 100%;
  }
  .hero-btns .btn {
    width: 100%;
    max-width: 320px;
  }
  .section { padding: 3rem 0; }
  .cta-section { margin: 2rem 1rem; border-radius: 20px; padding: 4rem 1rem; }
  
  .industries-creative-grid {
    grid-auto-rows: 250px;
  }
  .industry-card-creative:nth-child(n) {
    grid-column: span 12;
  }
  
  .creative-highlights { 
    grid-template-columns: 1fr; 
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .hero { min-height: auto; padding-top: 140px; padding-bottom: 80px; }
  .cta-section h2 { font-size: 1.8rem; }
  .services-accordion { height: 1200px; }
}
