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

:root {
  --primary-gold: #d4af37;
  --dark-gold: #b8860b;
  --light-gold: #f7e98e;
  --dark-blue: #1a1a2e;
  --light-blue: #16213e;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #333333;
  --text-gray: #666666;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  overflow-x: hidden;
  word-wrap: break-word;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-img {
  height: 50px;
  width: auto;
  border-radius: 8px;
}

.logo-text h2 {
  font-family: "Playfair Display", serif;
  color: var(--primary-gold);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.logo-text span {
  color: var(--white);
  font-size: 0.9rem;
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
  color: var(--white);
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--primary-gold);
  color: var(--dark-blue);
}

.btn-primary:hover {
  background: var(--dark-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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

.btn-secondary:hover {
  background: var(--primary-gold);
  color: var(--dark-blue);
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-stats {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat h3 {
  font-size: 2.5rem;
  color: var(--primary-gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat p {
  opacity: 0.8;
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--light-gray);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-blue);
}

.lead {
  font-size: 1.2rem;
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.about-features {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature i {
  color: var(--primary-gold);
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.feature h4 {
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

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

/* Products Section */
.products {
  padding: 100px 0;
  background: var(--light-gray);
}
/* Language Switcher - Positioned in hero section */
.language-switcher {
    display: flex;
    justify-content: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(212, 175, 55, 0.8);
    backdrop-filter: blur(10px);
    max-width: 300px;
    margin: 3rem auto 0;
    box-sizing: border-box;
}

.lang-btn {
    padding: 10px 20px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.6);
    background: rgba(255, 255, 255, 0.1);
    min-width: 80px;
    text-align: center;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary-gold);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    border-color: var(--primary-gold);
}

.lang-btn.active {
    background: var(--primary-gold);
    color: var(--dark-blue);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    border-color: var(--primary-gold);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .language-switcher {
        margin: 2rem auto 0;
        padding: 10px 14px;
        max-width: 280px;
    }
    
    .lang-btn {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 70px;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        margin: 1.5rem auto 0;
        padding: 8px 12px;
        max-width: 250px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 60px;
    }
}



/* RTL Support for Arabic */
[dir="rtl"] {
    font-family: 'Noto Sans Arabic', 'Inter', sans-serif;
}

[dir="rtl"] .language-switcher {
    left: 20px;
    right: auto;
}

[dir="rtl"] .nav-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .about-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .contact-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-content {
    direction: rtl;
}

[dir="rtl"] .contact-item {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .contact-item i {
    margin-left: 15px;
    margin-right: 0;
}

[dir="rtl"] .about-features {
    direction: rtl;
}

[dir="rtl"] .feature {
    text-align: right;
}

[dir="rtl"] .services-grid,
[dir="rtl"] .products-grid,
[dir="rtl"] .gallery-grid {
    direction: rtl;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .language-switcher {
        top: 10px;
        right: 10px;
        padding: 6px;
    }
    
    [dir="rtl"] .language-switcher {
        left: 10px;
        right: auto;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 2rem;
}

.product-info h3 {
  font-size: 1.5rem;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  font-weight: 600;
}

.product-info p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-features span {
  background: var(--light-gold);
  color: var(--dark-blue);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: var(--white);
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--light-gray);
  color: var(--dark-gray);
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--primary-gold);
  color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.gallery-content {
  position: relative;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-gold);
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--light-gray);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  color: var(--primary-gold);
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.contact-item h4 {
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-item p {
  color: var(--text-gray);
  line-height: 1.6;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
}

.contact-form .btn-primary {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.contact-right {
  display: flex;
  align-items: stretch;
}

.map-container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

/* Footer */
.footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section p,
.footer-section li {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary-gold);
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--dark-gold);
  transform: translateY(-2px);
}

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

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.footer-bottom a {
  color: var(--primary-gold);
  text-decoration: none;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-right {
    order: -1;
  }

  .map-container iframe {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--dark-blue);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-logo {
    flex-direction: row;
    gap: 0.8rem;
    text-align: left;
  }

  .logo-img {
    height: 40px;
  }

  .logo-text h2 {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .logo-text span {
    font-size: 0.8rem;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    hyphens: auto;
  }

  .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 12px 25px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-left {
    gap: 2rem;
  }

  .map-container iframe {
    min-height: 300px;
  }

  .section-header h2 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .container {
    padding: 0 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-bottom {
    padding-top: 1.5rem;
  }

  .footer-bottom p {
    font-size: 0.9rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 10px;
  }

  .logo-text h2 {
    font-size: 1.1rem;
  }

  .logo-text span {
    font-size: 0.75rem;
  }

  .hero {
    padding: 90px 0 50px;
  }

  .hero-content {
    padding: 0 10px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .stat h3 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .gallery-tabs {
    gap: 0.5rem;
  }

  .tab-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .container {
    padding: 0 10px;
  }

  .about-text h2 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .product-card h3 {
    font-size: 1.3rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-section {
    padding: 0 10px;
  }

  .footer-section h3,
  .footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .footer-section p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .footer-bottom {
    padding-top: 1rem;
    margin-top: 1.5rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 5px;
    white-space: normal;
  }

  .footer-bottom a {
    display: inline-block;
    word-break: keep-all;
  }
}

/* Scrap Gold & Refine Gold Section */
.scrap-refine {
  padding: 100px 0;
  background: var(--white);
}

.tabs-container {
  max-width: 1000px;
  margin: 0 auto;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  border-bottom: 2px solid #f0f0f0;
}

.tab-button {
  padding: 15px 30px;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  position: relative;
}

.tab-button.active {
  color: var(--primary-gold);
  border-bottom-color: var(--primary-gold);
}

.tab-button:hover {
  color: var(--primary-gold);
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-pane.active {
  display: block;
}

.gold-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gold-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
}

.gold-text p {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.gold-text ul {
  list-style: none;
  padding: 0;
}

.gold-text li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-gray);
  position: relative;
  padding-left: 2rem;
}

.gold-text li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 1.2rem;
}

.gold-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.gold-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gold-images img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Contact Addresses Formatting */
.contact-addresses {
  margin-bottom: 1rem;
}

.contact-addresses p {
  margin-bottom: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-addresses p:last-child {
  border-bottom: none;
}

/* Floating Buttons */
.whatsapp-btn,
.call-btn {
  position: fixed;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  z-index: 999;
}

.whatsapp-btn {
  left: 30px;
}

.call-btn {
  right: 30px;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
}

.call-btn {
  background: var(--primary-gold);
  color: var(--dark-blue);
}

.whatsapp-btn:hover,
.call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn i,
.call-btn i {
  font-size: 1.5rem;
}

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

.call-btn {
  animation-name: pulse-gold;
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .tabs {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .tab-button {
    width: 100%;
    max-width: 300px;
    padding: 12px 25px;
  }
  
  .gold-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .gold-images {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .whatsapp-btn {
    left: 20px;
    bottom: 20px;
  }
  
  .call-btn {
    right: 20px;
    bottom: 20px;
  }
  
  .whatsapp-btn,
  .call-btn {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-btn i,
  .call-btn i {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .gold-text h3 {
    font-size: 1.8rem;
  }
  
  .gold-text p {
    font-size: 1rem;
  }
  
  .whatsapp-btn {
    left: 15px;
    bottom: 15px;
  }
  
  .call-btn {
    right: 15px;
    bottom: 15px;
  }
  
  .whatsapp-btn,
  .call-btn {
    width: 45px;
    height: 45px;
  }
  
  .whatsapp-btn i,
  .call-btn i {
    font-size: 1rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

.service-card,
.product-card,
.gallery-item {
  animation: fadeInUp 0.6s ease forwards;
}
