/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #121212;
  --text-light: #e0e0e0;
  --accent-gold: #d4af37;
  --card-glass: rgba(255, 255, 255, 0.05);
  --white: #ffffff;
}




/* BODY & TEXT */
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--white);
}

a {
  text-decoration: none;
  color: var(--text-light);
}

section {
  padding: 60px 20px;
  text-align: center;
}


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  /* Slim like Apple */
  background-color: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 0.5px;
}

/* Center nav */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex: 1;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: var(--accent-color);
}

/* Icons (right side) */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 16px;
  transition: color 0.3s ease;
}

.icon-btn:hover {
  color: var(--accent-color);
}





/* Hamburger */
.hamburger {
  font-size: 20px;
  cursor: pointer;
  display: none;
  /* Show only on mobile */
  color: var(--text-light);
}



@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    /* height of your navbar */
    right: 20px;
    /* align with hamburger */
    background-color: var(--bg-dark);
    padding: 15px 20px;
    border-radius: 6px;
    text-align: left;
    /* links aligned left inside menu */
    z-index: 1000;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}




/* HERO */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 100px;
  background:
    linear-gradient(to bottom, rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 1)),
    url('images/hero.jpg') center/cover no-repeat;
  filter: brightness(1.5);
  /* ← This boosts the overall image */
  text-align: center;
}



.center-logo {
  width: 300px;
  height: auto;
  margin-top: -55px;
  /* moves logo up */
  margin-bottom: 5px;
  filter: brightness(1.2);
}


.slogan {
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: normal;
  color: var(--text-light);
  margin-top: 18px;
  text-transform: capitalize;
  opacity: 0;
  animation: fadeInSlogan 1.2s ease forwards;
  animation-delay: 0.8s;
}

/* FEATURED PRODUCT */
/* iPhone Highlight Section */
.iphone-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 8%;
  background: linear-gradient(135deg, #000 0%, #111 50%, #1a1a1a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Shimmer Effect Overlay */
.highlight-shimmer {
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 6s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% { left: -150%; }
  100% { left: 150%; }
}

.highlight-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #e6b400; /* gold accent */
  margin-bottom: 20px;
  animation: fadeDown 1s ease forwards;
}

.highlight-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 30px;
  animation: fadeDown 1.4s ease forwards;
}

.highlight-btn {
  display: inline-block;
  padding: 14px 30px;
  background: transparent;
  border: 2px solid #e6b400;
  color: #e6b400;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: fadeDown 1.8s ease forwards;
}

.highlight-btn:hover {
  background: #e6b400;
  color: #000;
  box-shadow: 0 0 15px rgba(230, 180, 0, 0.6);
}

.highlight-image img {
  width: 100%;
  max-width: 420px;
  transform: translateY(0px);
  animation: floatPhone 4s ease-in-out infinite;
}

/* Animations */
@keyframes floatPhone {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .iphone-highlight {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 20px;
  }

  .highlight-image img {
    margin: 30px auto 0;
  }
}



/* ABOUT / SERVICES / CONTACT */
.about p,
.contact p {
  color: var(--text-light);
  max-width: 700px;
  margin: 10px auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.service-card {
  background-color: var(--card-glass);
  padding: 25px;
  border-radius: 10px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 30px;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.testimonials {
  background-color: var(--bg-dark);
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 28px;
  color: var(--accent-gold);
  margin-bottom: 30px;
}

.testimonial-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1100px;
  margin: auto;
}

.testimonial-card {
  background-color: var(--card-glass);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-gold);
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-weight: 400;
  color: var(--accent-gold);
  font-size: 15px;
}

.testimonial-slider {
  max-width: 900px;
  margin: 40px auto;
}

.glide__slide.testimonial-card {
  background-color: var(--card-glass);
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-gold);
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.glide__slide.testimonial-card p {
  font-style: italic;
  margin-bottom: 15px;
}

.glide__slide.testimonial-card h4 {
  font-weight: 400;
  color: var(--accent-gold);
  font-size: 15px;
}

.glide__bullets {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.glide__bullet {
  width: 12px;
  height: 12px;
  background: var(--accent-gold);
  border-radius: 50%;
  margin: 0 5px;
  opacity: 0.5;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.glide__bullet:hover,
.glide__bullet.glide__bullet--active {
  opacity: 1;
}


.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Contact Section */
.contact {
  max-width: 700px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.contact h2 {
  margin-bottom: 30px;
  font-size: 28px;
  color: #fff;
}

/* Contact Info */
.contact-info {
  margin-bottom: 40px;
}

.contact-item {
  margin: 20px 0;
}

.contact-item a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}

.contact-icon {
  width: 22px;
  height: 22px;
  stroke: #fff;
  /* Always visible in white */
}

/* Contact Form */
.contact-form {
  text-align: left;
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--accent-gold);
  ;
}

/* Input styles same as button */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #fff;
  /* match button border */
  border-radius: 6px;
  background-color: transparent;
  color: #fff;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

/* Glow effect on focus */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #aaa;
  outline: none;
  background-color: rgba(255, 255, 255, 0.05);
}

/* Form row for first/last name */
.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

/* Align button right */
.form-row.right-align {
  justify-content: flex-end;
}

.btn-simple {
  padding: 12px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
  width: 200px;
  /* consistent size like input */
}

.btn-simple:hover {
  background: #fff;
  color: #000;
}



/* Error and feedback */
.error-message {
  color: #d10000;
  font-size: 13px;
  display: none;
  margin-top: -14px;
}

.feedback-message {
  font-size: 14px;
  color: #007e33;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feedback-message.show {
  opacity: 1;
}


.btn {
  background-color: var(--accent-gold);
  color: #000;
  padding: 12px 24px;
  border: none;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e6c763;
}

.cta-btn {
  margin-top: 20px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  background-color: var(--accent-gold);
  color: #000;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  background-color: #e6c763;
  transform: scale(1.05);
}


/* CONTACT INFO ICONS */
.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--text-light);
}

.contact-item i {
  font-size: 24px;
  color: var(--accent-gold);
}

.contact-item p {
  margin: 0;
  font-size: 17px;
}



/* SCROLL TO TOP */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 12px 16px;
  font-size: 18px;
  background-color: var(--accent-gold);
  color: #000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
}

/* ANIMATIONS */
@keyframes fadeInSlogan {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Footer */
.footer {
  background:
    linear-gradient(to bottom, rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 1)),
    url('images/hero.jpg') center/cover no-repeat;
  /*background-color: var(--bg-dark);*/
  color: var(--text-light);
  padding: 50px 20px 20px;
  margin-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-column h4 {
  font-size: 16px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--accent-color);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  color: #bbb;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
}






/* Hero for small pages */
.hero-small {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('images/policy-hero.jpg') center/cover no-repeat;
  text-align: center;
  padding: 80px 20px;
  color: var(--white);
}

.hero-small h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-small p {
  font-size: 1.2rem;
  font-weight: 300;
}

/* Policy content */
.policy-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.6;
}

.policy-container h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--accent-gold);
  font-weight: 500;
}


/*Color on the emails*/
a[href^="mailto:"] {
  color: #1e90ff; /* nice blue shade */
  text-decoration: underline;
  font-weight: 500;
}

a[href^="mailto:"]:hover {
  color: #0a66c2; /* darker blue on hover */
}


/* PRIVACY POLICY PAGE STYLES */
.privacy-page .hero-small {
  background:
    linear-gradient(to bottom, rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 1)),
    url('images/hero.jpg') center/cover no-repeat;
  filter: brightness(1.5);
  /* ← This boosts the overall image */
  height: 40vh;
  /* Smaller hero */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.privacy-page .hero-small h1 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.privacy-page .hero-small p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Policy content */
.policy-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  line-height: 1.7;
  font-size: 1rem;
  color: var(--text-light);
}

/* Footer links horizontal */
.footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 15px;
}

.footer .footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer .footer-links a:hover {
  color: var(--accent-gold);
}





