/* Paramount Security - Premium Design */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&family=Playfair+Display:wght@700&display=swap');

:root {
  --primary-dark: #0f0f1e;
  --primary-light: #1a1a2e;
  --accent-teal: #00bcd4;
  --accent-gold: #d4af37;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --border-subtle: rgba(255, 255, 255, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  background: var(--primary-dark);
  line-height: 1.6;
}

/* ==================== Navigation ==================== */
nav {
  background: rgba(15, 15, 30, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-subtle);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo img {
  height: 50px;
  width: auto;
  margin-right: 0.2rem;
  flex-shrink: 0;
}

.logo i {
  color: var(--accent-teal);
  font-size: 1.5rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--accent-teal);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

nav ul {
  display: flex !important;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

nav a:hover {
  color: var(--accent-gold);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-gold));
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* ==================== Slideshow Hero ==================== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideshow-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 15, 30, 0.7) 0%, rgba(0, 188, 212, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 3rem;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

.hero-content .tagline {
  font-size: 1.4rem;
  color: var(--accent-gold);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

/* Slide indicators */
.slide-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 20;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.indicator.active {
  background: var(--accent-gold);
  width: 30px;
  border-radius: 6px;
}

/* ==================== Buttons ==================== */
.btn {
  padding: 14px 40px;
  font-size: 1rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-teal), #0096a6);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 188, 212, 0.5);
}

.btn-secondary {
  background: var(--accent-gold);
  color: var(--primary-dark);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

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

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

/* ==================== Sections & Content ==================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

section {
  padding: 100px 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  color: var(--accent-gold);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-gold));
  margin: 1rem auto;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* ==================== Services Section ==================== */
.services-section {
  background: var(--primary-light);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 3rem 2.5rem;
  border-radius: 8px;
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 188, 212, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

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

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  color: var(--accent-teal);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ==================== Why Choose Section ==================== */
.why-choose {
  background: var(--primary-dark);
}

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

.why-card {
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--accent-gold);
  padding: 2.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--accent-teal);
  transform: translateX(5px);
}

.why-card i {
  color: var(--accent-teal);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.why-card h4 {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.why-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ==================== Features List ==================== */
.features-list {
  list-style: none;
  margin: 2rem 0;
}

.features-list li {
  padding: 0.8rem 0 0.8rem 2rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.features-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-teal);
  font-size: 1rem;
}

/* ==================== Stats Section ==================== */
.stats-section {
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.9), rgba(212, 175, 55, 0.3));
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat-item p {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
  letter-spacing: 1px;
}

/* ==================== Pricing Section ==================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--border-subtle);
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.pricing-card.popular {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.05);
  transform: scale(1.05);
}

.pricing-card:hover {
  border-color: var(--accent-teal);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(212, 175, 55, 0.2);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 30px 60px rgba(212, 175, 55, 0.3);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-gold));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-name {
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--accent-red);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.pricing-period {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.pricing-card ul {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.pricing-card li {
  padding: 0.7rem 0 0.7rem 1.8rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.pricing-card li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-size: 0.8rem;
}

/* ==================== Team Section ==================== */
.team-section {
  background: var(--primary-light);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.team-member {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.4s ease;
  text-align: center;
}

.team-member img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.4s ease;
}

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

.team-info {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.01);
}

.team-member:hover {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.team-name {
  font-size: 1.3rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.team-role {
  font-size: 0.95rem;
  color: var(--accent-red);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.team-bio {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==================== Contact Section ==================== */
.contact-section {
  background: var(--primary-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
  align-items: start;
}

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

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

.contact-item i {
  font-size: 1.8rem;
  color: var(--accent-red);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}

.contact-info h3 {
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-info p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-info a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: var(--accent-red);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 1rem;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.form-group select {
  background: #2a2a3e;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 1rem;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  cursor: pointer;
}

.form-group select option {
  background: #2a2a3e;
  color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-group select:focus {
  outline: none;
  background: #323245;
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ==================== Footer ==================== */
footer {
  background: rgba(15, 15, 30, 0.95);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 3rem 2rem;
  margin-top: 5rem;
  width: 100%;
  box-sizing: border-box;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-decoration: none;
  letter-spacing: 1px;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-section {
  padding: 0 0.5rem;
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

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

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-section ul li a:hover {
  color: var(--accent-gold);
  padding-left: 0.5rem;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-links a:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 2rem 3rem 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

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

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideMenuDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideMenuUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1.5rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .logo img {
    height: 45px;
  }

  .menu-toggle {
    display: flex;
  }

  nav ul {
    display: none !important;
  }

  nav ul.active {
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    background: rgba(15, 15, 30, 0.99) !important;
    backdrop-filter: blur(10px) !important;
    padding: 1.5rem !important;
    border-bottom: 1px solid var(--border-subtle) !important;
    z-index: 999 !important;
    animation: slideMenuDown 0.4s ease forwards !important;
  }

  nav ul li {
    padding: 0.8rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    display: list-item !important;
  }

  nav ul li:last-child {
    border-bottom: none !important;
  }

  nav ul li a {
    font-size: 0.95rem !important;
    display: block !important;
    color: var(--text-primary) !important;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .tagline {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .section-subtitle {
    margin-bottom: 2rem;
  }

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

  .services-grid,
  .why-grid,
  .pricing-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }

  footer {
    padding: 3rem 1.5rem 2rem;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-bottom {
    padding: 1.5rem 1.5rem 0;
    font-size: 0.85rem;
    width: 100%;
    box-sizing: border-box;
  }
}

/* ==================== Full Width Background Section ==================== */
.fullwidth-bg {
  width: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px 0;
}

.fullwidth-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 15, 30, 0.7), rgba(0, 188, 212, 0.5));
  z-index: 1;
}

.fullwidth-bg-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 3rem;
}

.fullwidth-bg h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.fullwidth-bg p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

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

  .logo {
    font-size: 1.1rem;
  }

  .logo img {
    height: 40px;
  }

  .menu-toggle {
    z-index: 1002;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content .tagline {
    font-size: 0.95rem;
  }

  /* Mobile menu styling for 480px and below */
  nav ul {
    display: none !important;
  }

  nav ul.active {
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    background: rgba(15, 15, 30, 0.99) !important;
    backdrop-filter: blur(10px) !important;
    padding: 1.5rem 1rem !important;
    border-bottom: 1px solid var(--border-subtle) !important;
    z-index: 999 !important;
    animation: slideMenuDown 0.4s ease forwards !important;
  }

  nav ul li {
    padding: 0.8rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    display: list-item !important;
  }

  nav ul li:last-child {
    border-bottom: none !important;
  }

  nav ul li a {
    font-size: 0.95rem !important;
    display: block !important;
    color: var(--text-primary) !important;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  section {
    padding: 40px 0;
  }

  .container {
    padding: 0 1rem;
  }

  .slide-indicators {
    bottom: 1rem;
    gap: 0.5rem;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .fullwidth-bg h2 {
    font-size: 1.8rem;
  }

  .fullwidth-bg p {
    font-size: 0.95rem;
  }

  footer {
    padding: 2rem 1rem 1.5rem;
    width: 100%;
    box-sizing: border-box;
    margin-top: 2rem;
  }

  .footer-content {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-bottom {
    padding: 1.5rem 1rem 0;
    font-size: 0.8rem;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-section {
    padding: 0 0.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .footer-logo {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }

  .footer-logo img {
    height: 35px;
  }

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

  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}