/* css/style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: #fafafc;
  color: #1f2937;
  line-height: 1.5;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0.5rem;
}
/* navbar */
.navbar {
  background: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.95);
  animation: slideDown 0.5s ease;
}
@keyframes slideDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 0.8rem 0; */
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo image */
.logo img {
  height: 150px;
  width: auto;
  display: block;
}

.logo-symbol {
  background: #b8860b;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 10px rgba(184,134,11,0.3);
}
.logo-text h1 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
}
.logo-text span {
  font-size: 0.75rem;
  color: #b8860b;
  font-weight: 600;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: 1.8rem;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  transition: 0.2s;
  font-size: 1rem;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #b8860b;
  transition: 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  padding: 1rem 0;
  border-top: 1px solid #eee;
}
.mobile-menu a {
  padding: 0.8rem 2rem;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-menu a:last-child { border: none; }
/* RERA badge */
.rera-badge {
  background: #f5f0e6;
  padding: 0.2rem 1rem;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5f4b32;
  border: 1px solid #e2d6c0;
  display: inline-block;
  margin-top: 4px;
}
/* buttons */
.btn {
  display: inline-block;
  background: #b8860b;
  color: white;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: 0.2s;
  border: 2px solid transparent;
  box-shadow: 0 8px 16px rgba(184,134,11,0.2);
  cursor: pointer;
}
.btn:hover {
  background: #9e7209;
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(184,134,11,0.4);
}
.btn-outline {
  background: transparent;
  border: 2px solid #b8860b;
  color: #b8860b;
  box-shadow: none;
}
.btn-outline:hover {
  background: #b8860b;
  color: white;
}
/* sections */
section {
  padding: 5rem 0;
  overflow: hidden;
}
.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  position: relative;
}
.section-title span {
  color: #b8860b;
}
.section-subhead {
  color: #5f5f6e;
  max-width: 700px;
  margin-bottom: 2.8rem;
  font-size: 1.2rem;
}
/* hero */
.hero {
  background: linear-gradient(130deg, #f2f0ed 0%, #ffffff 70%);
  padding: 3rem 0 4rem;
}
.hero-grid {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-content {
  flex: 1 1 350px;
}
.hero-content h2 {
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.hero-content p {
  font-size: 1.2rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1 1 350px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  width: auto;
  object-fit: contain;
}

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

/* project cards */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.project-card {
  background: white;
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px -8px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
  border: 1px solid rgba(0,0,0,0.02);
  cursor: pointer;
}
.project-card:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: 0 35px 50px -12px rgba(184,134,11,0.25);
}
.project-icon {
  font-size: 3rem;
  color: #b8860b;
  margin-bottom: 1.2rem;
}
.project-card h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.project-loc {
  color: #b8860b;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.project-desc {
  color: #4b5563;
  margin-bottom: 1.6rem;
}
.project-tag {
  display: inline-block;
  background: #ede8dd;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}
/* about page */
.about-grid {
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}
.about-text {
  flex: 2 1 300px;
}
.about-highlight {
  background: #fcf8f3;
  border-left: 6px solid #b8860b;
  padding: 2rem;
  border-radius: 20px;
  margin-top: 1.5rem;
}
/* contact page */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  background: white;
  border-radius: 40px;
  padding: 2.8rem;
  box-shadow: 0 30px 50px rgba(0,0,0,0.03);
}
.contact-info {
  flex: 1 1 280px;
}
.contact-info i {
  color: #b8860b;
  width: 35px;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.8rem 0;
}
.map-placeholder {
  background: #e9e5dd;
  height: 200px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b3a22;
  font-weight: 500;
}
.contact-form {
  flex: 2 1 340px;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #dbdbdb;
  border-radius: 30px;
  padding: 1rem 1.6rem;
  font-family: inherit;
  transition: 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b8860b;
  box-shadow: 0 0 0 4px rgba(184,134,11,0.15);
}
/* project detail page */
.detail-card {
  background: white;
  border-radius: 40px;
  padding: 3rem;
  box-shadow: 0 25px 50px -8px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
}
.detail-card h2 {
  font-size: 2.8rem;
  color: #b8860b;
}
/* footer */
footer {
  background: #1f1f28;
  color: #cbcbcb;
  padding: 2rem 0;
  text-align: center;
}
.footer-rera {
  font-weight: 500;
  color: #b8860b;
}
/* responsive */
@media (max-width: 800px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .section-title { font-size: 2rem; }
  .hero-content h2 { font-size: 2rem; }
}
@media (min-width: 801px) {
  .mobile-menu { display: none !important; }
}

/* Trusted Brands Section */
.brands-section {
  padding: 4rem 0;
  background: #ffffff;
  text-align: center;
}

.brands-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.brands-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2.5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: #f8f8f8;
  border-radius: 12px;
  transition: all 0.3s ease;
  min-height: 100px;
}

.brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  background: #ffffff;
}

.brand-item img {
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .brands-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .brand-item {
    padding: 0.8rem;
    min-height: 80px;
  }
  
  .brand-item img {
    max-height: 40px;
  }
}

/* Updated Project Cards Styles */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  background: white;
  border-radius: 28px;
  padding: 0;
  box-shadow: 0 20px 40px -8px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
  border: 1px solid rgba(0,0,0,0.02);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: 0 35px 50px -12px rgba(184,134,11,0.25);
}

.project-image-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

.project-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #b8860b;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 2;
}

.project-tag.residential {
  background: #b8860b;
}

.project-tag.commercial {
  background: #2c3e50;
}

.project-tag.mixed {
  background: #27ae60;
}

.project-content {
  padding: 1.8rem 1.5rem 1.8rem;
}

.project-content h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #1f2937;
}

.project-loc {
  color: #b8860b;
  font-weight: 500;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.project-loc i {
  margin-right: 5px;
  font-size: 0.9rem;
}

.project-desc {
  color: #4b5563;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.project-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.project-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
  margin-left: 5px;
}

.project-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: #888;
  display: block;
  margin-top: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .project-image-container {
    height: 180px;
  }
  
  .project-content h3 {
    font-size: 1.4rem;
  }
  
  .project-price {
    font-size: 1.2rem;
  }
}


/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(184,134,11,0.1);
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(184,134,11,0.15);
  border-color: rgba(184,134,11,0.3);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #b8860b;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.testimonial-client {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #b8860b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.testimonial-info p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.testimonial-rating {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonial-text {
  color: #4a5568;
  font-style: italic;
  line-height: 1.6;
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid #b8860b;
  margin-bottom: 1rem;
}

.testimonial-quote {
  color: #b8860b;
  font-size: 1.5rem;
  text-align: right;
  opacity: 0.5;
}

/* Stats Section */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.03);
  min-width: 150px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #b8860b;
  line-height: 1.2;
}

.stat-label {
  color: #666;
  font-size: 1rem;
  margin-top: 0.3rem;
}

.stat-rating {
  color: #ffc107;
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-container {
    gap: 1.5rem;
  }
  
  .stat-item {
    min-width: 120px;
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}


/* Contact teaser with background */
.contact-teaser {
  padding: 5rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/showcase-3.webp') no-repeat center center;
  background-size: cover;
  position: relative;
  color: white;
}

.contact-teaser.parallax {
  background-attachment: fixed;
}

.contact-teaser.light {
  background: linear-gradient(rgba(245, 243, 240, 0.85), rgba(245, 243, 240, 0.85)), url('/img/showcase-3.webp') no-repeat center center;
  background-size: cover;
  color: #1f2937;
}

.contact-teaser h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.contact-teaser p {
  max-width: 600px;
  margin: 1rem auto;
  font-size: 1.2rem;
}

.contact-teaser .btn {
  margin-top: 1.5rem;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-teaser .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Mobile optimization */
@media (max-width: 768px) {
  .contact-teaser {
    padding: 3rem 0;
    background-attachment: scroll; /* Disable parallax on mobile */
  }
  
  .contact-teaser h2 {
    font-size: 2rem;
  }
  
  .contact-teaser p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}


/* ===== STICKY SOCIAL BAR ===== */
.sticky-social-bar {
  position: fixed;
  top: 70%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sticky-social-bar .social-icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 50px;
  height: 50px;
  background: #b8860b;
  color: white;
  border-radius: 30px 0 0 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: -3px 3px 10px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.sticky-social-bar .social-icon i {
  font-size: 1.3rem;
  width: 50px;
  text-align: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.sticky-social-bar .social-label {
  position: absolute;
  right: 50px;
  white-space: nowrap;
  background: inherit;
  padding: 8px 15px;
  border-radius: 20px 0 0 20px;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: -3px 3px 10px rgba(0,0,0,0.2);
  pointer-events: none;
}

.sticky-social-bar .social-icon:hover {
  width: 160px;
  border-radius: 30px 0 0 30px;
}

.sticky-social-bar .social-icon:hover .social-label {
  opacity: 1;
  visibility: visible;
  right: 60px;
}

/* Individual brand colors on hover */
.sticky-social-bar .social-icon.whatsapp:hover { background: #25D366; }
.sticky-social-bar .social-icon.facebook:hover { background: #1877F2; }
.sticky-social-bar .social-icon.instagram:hover { background: #E4405F; }
.sticky-social-bar .social-icon.linkedin:hover { background: #0A66C2; }
.sticky-social-bar .social-icon.phone:hover { background: #27ae60; }
.sticky-social-bar .social-icon.email:hover { background: #ea4335; }

/* Left side position (alternative) */
.sticky-social-bar.left {
  right: auto;
  left: 0;
}

.sticky-social-bar.left .social-icon {
  border-radius: 0 30px 30px 0;
  justify-content: flex-start;
}

.sticky-social-bar.left .social-label {
  right: auto;
  left: 50px;
}

.sticky-social-bar.left .social-icon:hover .social-label {
  left: 60px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .sticky-social-bar {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 0;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 5px;
  }
  
  .sticky-social-bar .social-icon {
    width: auto;
    height: 45px;
    border-radius: 0;
    background: transparent;
    color: #333;
    box-shadow: none;
    flex: 1;
    justify-content: center;
  }
  
  .sticky-social-bar .social-icon i {
    width: auto;
    font-size: 1.3rem;
  }
  
  .sticky-social-bar .social-label {
    display: none;
  }
  
  .sticky-social-bar .social-icon:hover {
    width: auto;
    background: transparent;
  }
  
  .sticky-social-bar .social-icon:hover i {
    color: #b8860b;
    transform: scale(1.2);
  }
  
  /* Brand colors for mobile icons */
  .sticky-social-bar .social-icon.whatsapp i { color: #25D366; }
  .sticky-social-bar .social-icon.facebook i { color: #1877F2; }
  .sticky-social-bar .social-icon.instagram i { color: #E4405F; }
  .sticky-social-bar .social-icon.linkedin i { color: #0A66C2; }
  .sticky-social-bar .social-icon.phone i { color: #27ae60; }
  .sticky-social-bar .social-icon.email i { color: #ea4335; }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .sticky-social-bar .social-icon i {
    font-size: 1.1rem;
  }
}

/* Team Section with Mixed Photo & Icons */
.team-section {
  padding: 5rem 0;
  background: #f8f9fc;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  border: 1px solid rgba(184,134,11,0.05);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(184,134,11,0.1);
  border-color: rgba(184,134,11,0.2);
}

.member-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* For photo images */
.member-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #b8860b;
  box-shadow: 0 10px 20px rgba(184,134,11,0.3);
  transition: all 0.3s ease;
}

/* For icon placeholders */
.member-img i {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #b8860b 0%, #d4a017 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
  border: 4px solid #fff;
  box-shadow: 0 10px 20px rgba(184,134,11,0.3);
}

.team-member:hover .member-img img,
.team-member:hover .member-img i {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(184,134,11,0.4);
}

.team-member h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #1f2937;
}

.team-member .position {
  color: #b8860b;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.team-member p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.member-social a {
  width: 38px;
  height: 38px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.1rem;
}

.member-social a:hover {
  background: #b8860b;
  color: white;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .team-grid {
    gap: 1.5rem;
  }
  
  .team-member {
    padding: 2rem 1.5rem;
  }
  
  .member-img,
  .member-img img,
  .member-img i {
    width: 120px;
    height: 120px;
    font-size: 3.5rem;
  }
}