:root {
  --midnight-blue: #0A1A2F;
  --graphite: #2B2F36;
  --frost-gray: #ECEDEE;
  --golden-light: #D8A928;
  --pine-green: #2F4F3A;
  
  --font-primary: 'Outfit', sans-serif;
  --font-accent: 'Caveat', cursive;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 2rem;
  
  --shadow-sm: 0 2px 8px rgba(10, 26, 47, 0.1);
  --shadow-md: 0 4px 16px rgba(10, 26, 47, 0.15);
  --shadow-lg: 0 8px 32px rgba(10, 26, 47, 0.2);
  --shadow-glow: 0 0 20px rgba(216, 169, 40, 0.3);
  
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--graphite);
  background: var(--frost-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.header-main {
  position: relative;
  background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--graphite) 100%);
  padding: var(--space-sm) 0;
  transform: translateY(0);
  transition: var(--transition-smooth);
  z-index: 1000;
}

.header-main.hide-header {
  transform: translateY(-100%);
}

.header-container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 var(--space-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.logo-brand {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  color: var(--golden-light);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(216, 169, 40, 0.4);
  transition: var(--transition-smooth);
}

.logo-brand:hover {
  transform: scale(1.05);
  text-shadow: var(--shadow-glow);
}

.nav-primary {
  flex: 1;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
  justify-content: flex-end;
  align-items: center;
}

.nav-links a {
  color: var(--frost-gray);
  font-size: 0.95rem;
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--golden-light);
  transform: translateX(-50%);
  transition: var(--transition-smooth);
}

.nav-links a:hover::before {
  width: 80%;
}

.nav-links a:hover {
  color: var(--golden-light);
}

.burger-toggle {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
  z-index: 1100;
}

.burger-line {
  width: 1.8rem;
  height: 0.2rem;
  background: var(--golden-light);
  border-radius: 0.2rem;
  transition: var(--transition-smooth);
}

.burger-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.burger-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0.3rem, -0.3rem);
}

.hero-section {
  position: relative;
  background: linear-gradient(to bottom, var(--midnight-blue), var(--graphite));
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-lg) var(--space-sm);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(216, 169, 40, 0.1) 0%, transparent 50%);
  animation: pulse-glow 4s ease-in-out infinite;
  background-image: url('../visuals/image-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-content {
  max-width: 70rem;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fade-up 1s ease-out;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--golden-light);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(216, 169, 40, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--frost-gray);
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--golden-light);
  color: var(--midnight-blue);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-0.3rem);
  box-shadow: var(--shadow-glow);
}

.content-section {
  max-width: 90rem;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-sm);
}

.section-alt {
  background: white;
}

.section-dark {
  background: var(--graphite);
  color: var(--frost-gray);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  animation: fade-up 0.8s ease-out;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--midnight-blue);
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
}

.section-dark .section-title {
  color: var(--golden-light);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 0.3rem;
  background: var(--pine-green);
  border-radius: 0.3rem;
}

.section-text {
  font-size: 1.1rem;
  max-width: 50rem;
  margin: 0 auto;
  opacity: 0.85;
  line-height: 1.8;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.feature-card {
  background: white;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.section-dark .feature-card {
  background: var(--midnight-blue);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.3rem;
  background: linear-gradient(90deg, var(--golden-light), var(--pine-green));
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--golden-light);
  margin-bottom: var(--space-sm);
  display: block;
}

.card-title {
  font-size: 1.4rem;
  color: var(--midnight-blue);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.section-dark .card-title {
  color: var(--golden-light);
}

.card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.8;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-0.8rem);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  background: var(--frost-gray);
}

.product-info {
  padding: var(--space-md);
}

.product-name {
  font-size: 1.5rem;
  color: var(--midnight-blue);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.product-description {
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
  opacity: 0.8;
}

.product-price {
  font-size: 1.8rem;
  color: var(--pine-green);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.contact-form-wrapper {
  max-width: 45rem;
  margin: var(--space-lg) auto;
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--midnight-blue);
  font-size: 0.95rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid var(--frost-gray);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-fast);
  background: var(--frost-gray);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--golden-light);
  background: white;
  box-shadow: 0 0 0 3px rgba(216, 169, 40, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 10rem;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
}

.form-checkbox {
  margin-top: 0.3rem;
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.9rem;
  line-height: 1.5;
}

.submit-button {
  width: 100%;
  padding: 1.1rem;
  background: var(--pine-green);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  margin-top: var(--space-sm);
}

.submit-button:hover {
  background: var(--golden-light);
  color: var(--midnight-blue);
  transform: translateY(-0.2rem);
  box-shadow: var(--shadow-md);
}

.map-container {
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 25rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer-main {
  background: var(--midnight-blue);
  color: var(--frost-gray);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
}

.footer-content {
  max-width: 90rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--frost-gray);
  opacity: 0.8;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--golden-light);
  opacity: 1;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: var(--space-md);
  box-shadow: 0 -4px 20px rgba(10, 26, 47, 0.15);
  z-index: 2000;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.privacy-popup.show {
  transform: translateY(0);
}

.popup-content {
  max-width: 70rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.popup-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.popup-actions {
  display: flex;
  gap: var(--space-sm);
}

.popup-button {
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition-fast);
}

.accept-button {
  background: var(--pine-green);
  color: white;
}

.accept-button:hover {
  background: var(--golden-light);
  color: var(--midnight-blue);
}

.decline-button {
  background: var(--frost-gray);
  color: var(--graphite);
}

.decline-button:hover {
  background: var(--graphite);
  color: white;
}

.thankyou-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
}

.thankyou-content {
  max-width: 40rem;
  animation: fade-up 0.8s ease-out;
}

.thankyou-icon {
  font-size: 5rem;
  color: var(--pine-green);
  margin-bottom: var(--space-md);
  animation: bounce-in 1s ease-out;
}

@keyframes bounce-in {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.thankyou-title {
  font-size: 2.5rem;
  color: var(--midnight-blue);
  margin-bottom: var(--space-sm);
}

.thankyou-message {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  opacity: 0.8;
}

.error-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
}

.error-content {
  max-width: 40rem;
}

.error-code {
  font-size: 8rem;
  color: var(--golden-light);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 20px rgba(216, 169, 40, 0.3);
}

.error-title {
  font-size: 2rem;
  color: var(--midnight-blue);
  margin-bottom: var(--space-sm);
}

.error-text {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  opacity: 0.8;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.gallery-image {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.gallery-image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.policy-content {
  max-width: 55rem;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-sm);
}

.policy-title {
  font-size: 2.5rem;
  color: var(--midnight-blue);
  margin-bottom: var(--space-md);
}

.policy-section {
  margin-bottom: var(--space-lg);
}

.policy-heading {
  font-size: 1.5rem;
  color: var(--pine-green);
  margin-bottom: var(--space-sm);
  margin-top: var(--space-md);
}

.policy-text {
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.info-item {
  background: white;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-smooth);
}

.info-item:hover {
  transform: translateY(-0.3rem);
  box-shadow: var(--shadow-md);
}

.info-icon {
  font-size: 2rem;
  color: var(--pine-green);
  margin-bottom: var(--space-xs);
}

.info-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--golden-light);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.info-value {
  font-size: 1rem;
  color: var(--midnight-blue);
  font-weight: 500;
}


@media (max-width: 850px) {
  .nav-links a {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    max-width: 20rem;
    background: var(--midnight-blue);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--space-xl) var(--space-md);
    transform: translateX(100%);
    transition: var(--transition-smooth);
    box-shadow: -4px 0 20px rgba(10, 26, 47, 0.3);
    height: 100vh;
    display:none;
  }

  .nav-links.active {
    transform: translateX(0);
    display: flex;
  }

  .burger-toggle {
    display: flex;
  }

  .hero-section {
    min-height: 70vh;
    padding: var(--space-md) var(--space-sm);
  }

  .content-section {
    padding: var(--space-md) var(--space-sm);
  }

  .section-header {
    margin-bottom: var(--space-md);
  }

  .grid-cards {
    gap: var(--space-sm);
  }

  .contact-form-wrapper {
    padding: var(--space-md);
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .popup-content {
    flex-direction: column;
    text-align: center;
  }

  .popup-actions {
    width: 100%;
    flex-direction: column;
  }

  .popup-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 3rem;
    --space-lg: 2rem;
  }

  .header-container {
    padding: 0 var(--space-xs);
     gap: 20px;
  }

  .logo-brand {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-text {
    font-size: 1rem;
  }

  .feature-card {
    padding: var(--space-sm);
  }

  .card-icon {
    font-size: 2rem;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .error-code {
    font-size: 5rem;
  }
}

