/* =========================
   reset default styles
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* =========================
   body styling
========================= */

body {
  font-family: "Poppins", sans-serif;
  background: #07111f;
  color: white;
  overflow-x: hidden;
}

/* =========================
   global images
========================= */

img {
  width: 100%;
  display: block;
}

/* rounded images */
.service-card img,
.about-image img,
.gallery-card img {
  border-radius: 25px;
}

/* =========================
   header / navbar
========================= */

header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: rgba(3, 10, 20, 0.95);
  backdrop-filter: blur(15px);
}

/* navbar layout */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
}

/* logo */
.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

/* highlighted text */
.logo span {
  color: #00c2ff;
}

/* nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

/* nav anchors */
.nav-links a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

/* nav hover */
.nav-links a:hover {
  color: #00c2ff;
}

/* hamburger */
.hamburger {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* =========================
   hero section
========================= */

.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 8% 80px;
  position: relative;

  background: url("https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=1200&auto=format&fit=crop")
    center/cover no-repeat;
}

/* dark overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

/* hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* hero title */
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

/* hero subtitle */
.hero-content h2 {
  color: #00c2ff;
  margin-bottom: 20px;
}

/* hero paragraph */
.hero-content p {
  line-height: 1.8;
  margin-bottom: 30px;
}

/* hero buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* buttons */
.btn {
  background: linear-gradient(135deg, #00c2ff, #0066ff);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.4s;
}

/* button hover */
.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 194, 255, 0.3);
}

/* secondary button */
.secondary-btn {
  background: transparent;
  border: 2px solid #00c2ff;
}

/* =========================
   sections
========================= */

section {
  padding: 100px 8%;
}

/* section titles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #00c2ff;
}

/* =========================
   reusable grids
========================= */

.services-container,
.gallery-container,
.pricing-container,
.stats-container,
.testimonial-container,
.contact-container {
  display: grid;
  gap: 30px;
}

/* services / gallery / pricing */
.services-container,
.gallery-container,
.pricing-container {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* stats */
.stats-container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* testimonials */
.testimonial-container {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* contact */
.contact-container {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
}

/* =========================
   cards
========================= */

.service-card,
.price-card,
.gallery-card,
.stat-card,
.testimonial-card {
  background: #101f33;
  border-radius: 25px;
  overflow: hidden;
  transition: 0.4s;
}

/* hover effect */
.gallery-card:hover,
.stat-card:hover,
.testimonial-card:hover {
  transform: translateY(-10px);
}

/* content padding */
.service-content,
.price-card,
.gallery-info,
.stat-card,
.testimonial-card {
  padding: 25px;
}

/* =========================
   pricing
========================= */

.price {
  color: #00c2ff;
  font-size: 2rem;
}

/* =========================
   gallery section
========================= */

.gallery-text {
  text-align: center;
  color: #cfcfcf;
  margin-bottom: 50px;
  line-height: 1.8;
}

/* gallery card */
.gallery-card {
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* gallery image */
.gallery-card img {
  height: 250px;
  object-fit: cover;
  border-radius: 25px 25px 0 0;
  transition: 0.5s;
}

/* image zoom */
.gallery-card:hover img {
  transform: scale(1.05);
}

/* gallery title */
.gallery-info h3 {
  margin-bottom: 10px;
  color: #00c2ff;
}

/* gallery location */
.gallery-info p {
  color: #d6d6d6;
}

/* =========================
   stats section
========================= */

.stats {
  background: #081423;
}

/* stat card */
.stat-card {
  text-align: center;
}

/* stat icons */
.stat-card i {
  font-size: 2.5rem;
  color: #00c2ff;
  margin-bottom: 20px;
}

/* stat numbers */
.stat-card h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* =========================
   testimonials
========================= */

.testimonial-card p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: #d6d6d6;
}

/* testimonial names */
.testimonial-card h3 {
  color: #00c2ff;
}

/* =========================
   contact section
========================= */

/* contact email */
.contact-email {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.4s;
}

/* email hover */
.contact-email:hover {
  color: #00c2ff;
}

/* =========================
   contact section
========================= */

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* contact info */
.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.contact-item i {
  color: #00c2ff;
  font-size: 1.3rem;
}

/* contact email */
.contact-email {
  color: white;
  text-decoration: none;
  transition: 0.4s;
}

.contact-email:hover {
  color: #00c2ff;
}

/* =========================
   contact form
========================= */

.contact-form {
  width: 100%;
  padding: 45px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);

  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 16px;
  outline: none;
  transition: 0.3s ease;
}

/* placeholders */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #d1d5db;
}

/* focus */
.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid #3b82f6;
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.01);
}

/* textarea */
.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

/* button */
.contact-form button {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

/* hover */
.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4);
}

/* =========================
   mobile responsive
========================= */

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-form {
    padding: 30px;
  }
}

/* social icons */
.social-links a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #101f33;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  text-decoration: none;
  font-size: 1.3rem;

  transition: 0.4s;
}

/* hover */
.social-links a:hover {
  background: #00c2ff;
  transform: translateY(-5px);
}

/* =========================
   footer
========================= */

footer {
  text-align: center;
  padding: 50px 8%;
  background: #030913;
}

/* =========================
   whatsapp floating button
========================= */

.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 25px;

  width: 65px;
  height: 65px;

  border-radius: 50%;
  background: #25d366;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 2rem;
  text-decoration: none;

  z-index: 999;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);

  transition: 0.4s;
}

/* whatsapp hover */
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* =========================
   scroll top button
========================= */

#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 50px;
  height: 50px;

  border: none;
  border-radius: 50%;

  background: #00c2ff;
  color: white;

  display: none;
}

/* =========================
   reveal animation
========================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

/* reveal active */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   lightbox
========================= */

#lightbox {
  position: fixed;
  z-index: 2000;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.9);

  display: none;

  align-items: center;
  justify-content: center;

  padding: 30px;
}

/* active lightbox */
#lightbox.active {
  display: flex;
}

/* lightbox image */
#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 25px;
}

/* =========================
   responsive design
========================= */

@media (max-width: 900px) {
  /* mobile nav */
  .nav-links {
    position: absolute;
    top: 80px;
    right: -100%;

    flex-direction: column;

    background: #07111f;

    width: 250px;

    padding: 30px;

    transition: 0.4s;
  }

  /* active nav */
  .nav-links.active {
    right: 0;
  }

  /* hamburger */
  .hamburger {
    display: block;
  }

  /* smaller hero text */
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

/* =========================
   mobile contact form
========================= */

@media (max-width: 768px) {
  .contact-form {
    padding: 25px;
  }
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}
