:root {
  --nav-bg: #0A192F;
  --bg-primary: #0A1020;
  --bg-secondary: #0A192F;
  --bg-tertiary: #112240;
  --text-primary: #CCD6F6;
  --text-secondary: #8892B0;
  --text-light: #F8FAFC;
  --accent-gold: #D4AF37;
  --accent-gold-hover: #FBBF24;
  --border-color: rgba(212, 175, 55, 0.2);
  
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text, .logo-text-footer {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-weight: 700;
}

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

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 100px 0;
}

.text-gold {
  color: var(--accent-gold);
}

.gold-divider {
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: 20px auto;
  border-radius: 2px;
}

.gold-divider-left {
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: 20px 0;
  border-radius: 2px;
}

.section-subtitle {
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

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

/* Buttons */
.btn-primary, .btn-primary-outline, .btn-secondary, .btn-whatsapp {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #0A192F;
  border: 2px solid var(--accent-gold);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

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

.btn-primary-outline:hover {
  background-color: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  border-color: var(--text-light);
  transform: translateY(-3px);
}

.btn-large {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
  font-weight: 700;
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}


.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  padding: 15px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.logo-text {
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a:not(.btn-primary-outline) {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
}

.nav-links a:not(.btn-primary-outline):hover {
  color: var(--accent-gold);
}

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

.nav-links a:not(.btn-primary-outline):hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--accent-gold);
  margin-bottom: 5px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at right top, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
              radial-gradient(circle at left bottom, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero .subtitle {
  font-family: var(--font-body);
  color: var(--accent-gold);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero .title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero .description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

/* Services */
.services {
  background-color: var(--bg-primary);
}

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

.service-card {
  background-color: var(--bg-tertiary);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--border-color);
}

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

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--accent-gold);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 25px;
}

.service-link {
  color: var(--accent-gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.service-link:hover {
  color: var(--accent-gold-hover);
  letter-spacing: 1px;
}

/* CTA Section */
.cta {
  background: var(--bg-secondary);
  position: relative;
}

.cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(212, 175, 55, 0.05);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: left;
}

.cta-card-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--accent-gold);
}

.cta-text-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-text-content p {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 30px;
}

/* Update mobile layout for CTA */
@media (max-width: 768px) {
  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

/* About Section */
.about {
  background-color: var(--bg-primary);
}

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

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about-list {
  margin-top: 30px;
}

.about-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.about-image-wrapper {
  position: relative;
}

.about-card-placeholder {
  position: relative;
  border-radius: 8px;
  z-index: 2;
}

.about-image {
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.about-card-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 20px;
  left: 20px;
  border: 2px solid var(--accent-gold);
  border-radius: 8px;
  z-index: -1;
  transition: var(--transition);
}

.about-image-wrapper:hover .about-card-accent {
  top: -10px;
  right: -10px;
  bottom: 10px;
  left: 10px;
}

/* Footer */
.footer {
  background-color: #07101E;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.logo-text-footer {
  font-size: 1.25rem;
}

.footer-description {
  color: var(--text-secondary);
  margin-top: 20px;
  max-width: 300px;
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--text-light);
  font-family: var(--font-body);
}

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

.footer-links ul li a {
  color: var(--text-secondary);
}

.footer-links ul li a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-contact ul li {
  color: var(--text-secondary);
  margin-bottom: 15px;
  display: flex;
  background: transparent;
  align-items: flex-start;
  gap: 10px;
}

.footer-bottom {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

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

/* Responsive */
@media (max-width: 968px) {
  .hero .title { font-size: 3.5rem; }
  .about-container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-card-accent { display: none; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    flex-direction: column;
    background-color: var(--bg-secondary);
    padding: 40px 20px;
    transition: var(--transition);
  }

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

  .mobile-menu-btn {
    display: block;
  }

  .hero .title { font-size: 2.5rem; }
  .hero .subtitle { 
    font-size: 14px; 
    letter-spacing: 1px; 
    line-height: 1.4;
  }
  .hero .description { font-size: 1.1rem; }
  .hero-buttons { flex-direction: column; width: 100%; gap: 15px; }

  .logo-img { height: 50px; }
  .logo-text { font-size: 1.1rem; }
  .logo { gap: 10px; }
  
  .section-title { font-size: 2rem; line-height: 1.2; }
  .section-padding { padding: 60px 0; }
  
  .btn-primary, .btn-primary-outline, .btn-secondary, .btn-whatsapp {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 16px 20px; /* Larger touch targets for mobile */
  }
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: pulse-green 2s infinite;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}

.float-tooltip {
  position: absolute;
  right: 80px;
  background-color: #0A192F;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--accent-gold);
}

.whatsapp-float:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  .float-tooltip { display: none; }
}

