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

:root {
  --primary-color: #d81b60; /* Deep pink/red */
  --secondary-color: #0b132b; /* Deep blue/navy */
  --accent-color: #f72585; 
  --text-dark: #1a1a24;
  --text-light: #ffffff;
  --text-muted: #6b7280;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-width: 95%;
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.top-bar {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 8px 0;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.social-icons a {
  color: var(--text-light);
  margin-left: 15px;
  font-size: 1rem;
}
.social-icons a:hover {
  color: var(--primary-color);
}

.navbar {
  background-color: var(--bg-white);
  padding: 15px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo img {
  height: 60px;
}
.logo-text h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.1;
  text-transform: uppercase;
}
.logo-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 25px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary-color);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-content {
  flex: 1;
  max-width: 550px;
  position: relative;
  z-index: 2;
}
.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.1);
  background: rgba(255,255,255,0.05);
}
.hero-image-container img {
  border-radius: 8px;
  display: block;
}
.floating-actions {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating-actions .action-btn {
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.floating-actions .action-btn:hover {
  transform: scale(1.05);
}
.floating-actions .btn-call { background: #d81b60; }
.floating-actions .btn-wa { background: #25d366; }
.floating-actions .btn-dir { background: #3b82f6; }

/* Page Header */
.page-header {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11,19,43,0.9) 0%, rgba(216,27,96,0.8) 100%);
  z-index: 1;
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.page-header p {
  font-size: 1rem;
  opacity: 0.9;
  font-family: 'Inter', sans-serif;
}
.page-header p a {
  color: var(--text-light);
  font-weight: 600;
}
.page-header p a:hover {
  text-decoration: underline;
}


/* Sections */
.section {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--secondary-color);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  font-family: 'Outfit', sans-serif;
  text-align: center;
}
.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 4px 14px 0 rgba(216, 27, 96, 0.39);
}
.btn-primary:hover {
  background-color: #c2185b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 27, 96, 0.23);
}
.btn-whatsapp {
  background-color: #25D366;
  color: white;
  box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.39);
}
.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
}
.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
}
.btn-secondary:hover {
  background-color: #080f24;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  color: #94a3b8;
  font-size: 0.95rem;
}
.footer-col ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  color: #94a3b8;
  font-size: 0.95rem;
}
.footer-contact li i {
  color: var(--primary-color);
  margin-top: 4px;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
  color: #94a3b8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom .made-with i {
  color: var(--primary-color);
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--secondary-color);
}
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--bg-white);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(216, 27, 96, 0.1);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-4 { margin-top: 1rem; }

/* Alerts / Toasts */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  transform: translateX(120%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 4px solid var(--primary-color);
}
.toast.show {
  transform: translateX(0);
}
.toast.success { border-color: #22c55e; color: #166534; }
.toast.error { border-color: #ef4444; color: #991b1b; }

@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .nav-links { display: none; } /* Add hamburger menu logic later if needed */
}
@media (max-width: 768px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
