/* Base Styles */
:root {
  --primary: #d4af37; /* Gold */
  --primary-dark: #b38f2b;
  --secondary: #00b4d8; /* Blue */
  --secondary-dark: #0077b6;
  --success: #11998e; /* Green */
  --success-light: #38ef7d;
  --danger: #f12711; /* Red */
  --warning: #f5af19; /* Orange */
  --info: #4568dc; /* Purple */
  --dark: #0f2027; /* Dark Blue */
  --dark-light: #2c5364;
  --light: #f5f7fa;
  --gray: #e4e8ed;
  --white: #ffffff;
  --black: #333333;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  color: var(--black);
  line-height: 1.6;
  background-color: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
}

.section-header .subtitle {
  font-size: 1.1rem;
  color: #666;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 15px;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.logo h1 span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-item {
  margin-left: 30px;
  position: relative;
}

.nav-link {
  font-weight: 500;
  color: var(--black);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-cta .btn {
  padding: 10px 25px;
  font-size: 0.8rem;
}

.nav-toggle {
  display: none;
  cursor: pointer;
}

.nav-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Mobile Menu */
@media (max-width: 992px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 15px 0;
  }
  
  .nav-cta {
    margin-top: 20px;
  }
}



/* Hero Carousel */
.hero-carousel {
  height: 100vh;
  position: relative;
  margin-top: 80px;
}

.carousel-container {
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}

.carousel-slide.active {
  opacity: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  width: 100%;
  padding: 0 20px;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.carousel-controls {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.carousel-prev, .carousel-next {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 15px;
}

.carousel-prev:hover, .carousel-next:hover {
  background: var(--primary);
}

.carousel-indicators {
  display: flex;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-stats {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  color: var(--white);
  flex: 1;
  margin: 0 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.about-btns {
  margin-top: 30px;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-item {
  padding: 30px;
  border-radius: 10px;
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-item p {
  margin-bottom: 20px;
}

.feature-link {
  color: var(--white);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.feature-link i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.feature-link:hover i {
  transform: translateX(5px);
}

/* Borehole Section */
.borehole-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.borehole-image {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.borehole-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.borehole-text {
  flex: 1;
}

.borehole-features {
  margin: 20px 0;
}

.borehole-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.borehole-features i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.borehole-btns {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

/* Investors Section */
.investors-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.investors-text {
  flex: 1;
  color: var(--white);
}

.investors-features {
  margin: 30px 0;
}

.investors-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.investors-feature i {
  font-size: 1.5rem;
  margin-right: 15px;
  margin-top: 5px;
}

.investors-feature h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.investors-feature p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.investors-image {
  flex: 1;
  position: relative;
}

.investors-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gold-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0) 70%);
  border-radius: 10px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
  margin-bottom: 20px;
  position: relative;
}

.testimonial-quote i {
  font-size: 2rem;
  opacity: 0.2;
  margin-bottom: 10px;
  display: block;
}

.testimonial-quote p {
  font-style: italic;
  color: #666;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonial-author p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

/* Newsletter */
.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0;
}

.newsletter-text h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 15px;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
}

.newsletter-form form {
  display: flex;
  max-width: 500px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0 25px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0 4px 4px 0;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--primary-dark);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  margin-right: 10px;
}

.footer-logo h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer-logo h3::after {
  display: none;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-5px);
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-info i {
  margin-right: 15px;
  font-size: 1.1rem;
}

.contact-info span {
  color: rgba(255, 255, 255, 0.7);
}

.investors-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.investors-logo img {
  height: 40px;
  margin-right: 10px;
}

.investors-logo h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
  padding-bottom: 0;
}

.investors-logo h3::after {
  display: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer-copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* About Page Specific */
.our-story-section {
  padding: 100px 0;
}

.story-timeline {
  position: relative;
  max-width: 800px;
  margin: 50px auto 0;
  padding-left: 50px;
}

.story-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: 4px;
  background: var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-year {
  position: absolute;
  left: -70px;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.mission-section {
  padding: 100px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.mission-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mission-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
}

.mission-card h3 {
  margin-bottom: 15px;
}

.team-section {
  padding: 100px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-member {
  text-align: center;
}

.member-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.member-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.team-member:hover .member-overlay {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-5px);
}

.member-info h3 {
  margin-bottom: 5px;
}

.member-info p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.operations-section {
  padding: 100px 0;
}

.operations-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.operations-map {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.operations-map img {
  width: 100%;
  height: auto;
  display: block;
}

.map-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
}

.map-marker::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.marker-tooltip {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.map-marker:hover .marker-tooltip {
  opacity: 1;
  visibility: visible;
  bottom: 25px;
}

.operations-text {
  flex: 1;
}

.operations-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.stat-item {
  padding: 15px;
  background: var(--white);
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-item span {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}

.cta-section {
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Sustainability Page Specific */
.commitment-section {
  padding: 100px 0;
}

.commitment-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.commitment-text {
  flex: 1;
}

.commitment-stats {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}

.commitment-image {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.commitment-image img {
  width: 100%;
  height: auto;
  display: block;
}

.environment-section {
  padding: 100px 0;
}

.environment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.environment-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.environment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
}

.environment-card h3 {
  margin-bottom: 15px;
}

.community-section {
  padding: 100px 0;
}

.community-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.community-image {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.community-image img {
  width: 100%;
  height: auto;
  display: block;
}

.community-text {
  flex: 1;
}

.community-programs {
  margin: 30px 0;
}

.program-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.program-item i {
  font-size: 1.5rem;
  margin-right: 15px;
  margin-top: 5px;
}

.program-item h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.program-item p {
  font-size: 0.9rem;
  color: #666;
}

.certifications-section {
  padding: 100px 0;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.certification-item {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.certification-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.certification-item img {
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.certification-item p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

.report-section {
  padding: 100px 0;
  text-align: center;
}

.report-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.report-content p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Borehole Page Specific */
.services-section {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  padding: 40px 30px;
  border-radius: 10px;
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  margin-bottom: 20px;
}

.service-link {
  color: var(--white);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.service-link i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

.process-section {
  padding: 100px 0;
}

.process-steps {
  position: relative;
  max-width: 800px;
  margin: 50px auto 0;
  padding-left: 50px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25px;
  height: 100%;
  width: 4px;
  background: var(--primary);
}

.process-item {
  position: relative;
  margin-bottom: 50px;
}

.step-number {
  position: absolute;
  left: -50px;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-content {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.equipment-section {
  padding: 100px 0;
}

.equipment-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.equipment-text {
  flex: 1;
}

.equipment-features {
  margin: 20px 0;
}

.equipment-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.equipment-features i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.equipment-image {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.equipment-image img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-section {
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  bottom: 0;
}

.gallery-overlay h3 {
  margin-bottom: 5px;
}

.gallery-overlay p {
  font-size: 0.9rem;
  margin-bottom: 0;
  opacity: 0.8;
}

.gallery-cta {
  text-align: center;
  margin-top: 50px;
}

.faq-section {
  padding: 100px 0;
}

.faq-content {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: var(--white);
  border: none;
  text-align: left;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-question i {
  transition: all 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f9f9f9;
}

.faq-answer p {
  padding: 0 20px 20px;
  margin-bottom: 0;
}

.faq-question.active + .faq-answer {
  max-height: 500px;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.borehole-cta {
  padding: 100px 0;
  text-align: center;
}

/* Investors Page Specific */
.investment-section {
  padding: 100px 0;
}

.investment-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.investment-text {
  flex: 1;
}

.investment-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.investment-image {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.investment-image img {
  width: 100%;
  height: auto;
  display: block;
}

.options-section {
  padding: 100px 0;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.option-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.option-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.option-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 1.8rem;
}

.option-card h3 {
  text-align: center;
  margin-bottom: 20px;
}

.option-card ul {
  margin-bottom: 25px;
}

.option-card ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.option-card ul li i {
  margin-right: 10px;
}

.metrics-section {
  padding: 100px 0;
}

.metrics-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.metrics-chart {
  flex: 1;
}

.metrics-text {
  flex: 1;
}

.metrics-highlights {
  margin: 30px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.highlight-item i {
  font-size: 1.5rem;
  margin-right: 15px;
}

.highlight-item span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.highlight-item p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

.investor-testimonials {
  padding: 100px 0;
}

.testimonials-slider {
  max-width: 800px;
  margin: 50px auto 0;
  position: relative;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

.testimonial-quote {
  margin-bottom: 30px;
}

.testimonial-quote i {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
  color: var(--primary);
}

.testimonial-quote p {
  font-size: 1.1rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}

.testimonial-author h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  text-align: left;
}

.testimonial-author p {
  font-size: 0.9rem;
  opacity: 0.8;
  text-align: left;
  margin-bottom: 10px;
}

.testimonial-rating {
  text-align: left;
}

.testimonial-rating i {
  color: var(--primary);
  font-size: 0.9rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.slider-prev, .slider-next {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 15px;
}

.slider-prev:hover, .slider-next:hover {
  background: var(--primary);
}

.slider-indicators {
  display: flex;
}

.resources-section {
  padding: 100px 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.resource-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.resource-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.resource-card h3 {
  margin-bottom: 15px;
}

.resource-card p {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #666;
}

.investor-cta {
  padding: 100px 0;
  text-align: center;
}

/* Contact Page Specific */
.contact-info-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-card {
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-card h3 {
  margin-bottom: 15px;
}

.contact-card p {
  margin-bottom: 20px;
}

.contact-form-section {
  padding: 100px 0;
}

.contact-form-content {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.form-text {
  flex: 1;
}

.form-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.form-text p {
  margin-bottom: 30px;
}

.form-features {
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.feature-item i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.emergency-contact {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.emergency-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--danger);
}

.emergency-contact p {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.emergency-phone {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--danger);
}

.emergency-phone i {
  margin-right: 10px;
}

.form-container {
  flex: 1;
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.departments-section {
  padding: 100px 0;
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.department-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.department-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.department-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.department-card h3 {
  text-align: center;
  margin-bottom: 15px;
}

.department-card p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #666;
}

.department-link {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.department-link:hover {
  color: var(--primary-dark);
}

.department-link i {
  margin-right: 5px;
}

.visit-section {
  padding: 100px 0;
}

.visit-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.visit-text {
  flex: 1;
  color: var(--white);
}

.visit-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.visit-details {
  margin: 30px 0;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.detail-item i {
  font-size: 1.5rem;
  margin-right: 20px;
  margin-top: 5px;
  color: var(--primary);
}

.detail-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.detail-item p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 5px;
}

.visit-map {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-cta {
  padding: 100px 0;
  text-align: center;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .about-content,
  .borehole-content,
  .investors-content,
  .operations-content,
  .commitment-content,
  .community-content,
  .investment-content,
  .metrics-content,
  .contact-form-content,
  .visit-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .about-image,
  .borehole-image,
  .investors-image,
  .operations-map,
  .commitment-image,
  .community-image,
  .investment-image,
  .metrics-chart,
  .form-container,
  .visit-map {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-content h1,
  .page-hero .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p,
  .page-hero .hero-content p {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .about-stats,
  .commitment-stats {
    flex-direction: column;
  }
  
  .stat-item {
    margin: 10px 0;
  }
  
  .hero-btns,
  .borehole-btns,
  .cta-btns {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .departments-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .logo h1 {
    font-size: 1.2rem;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .story-timeline {
    padding-left: 30px;
  }
  
  .timeline-year {
    width: 40px;
    height: 40px;
    left: -50px;
    font-size: 0.9rem;
  }
  
  .form-text,
  .form-container {
    width: 100%;
  }
  
  .contact-form-content {
    flex-direction: column;
  }
}