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

/* Body */
body {
    font-family: 'Arial Black', sans-serif,;
    background-color: #000; /* black background */
    color: gold;
    line-height: 1.6;
    scroll-behavior: smooth;
}


/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.9);
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 10px rgba(0, 229, 255, 0.5);
}

/* Logo */
.navbar .logo {
  font-size: 1.5rem;
  color: #d4af37; /* Gold */
  font-weight: bold;
  font-family: 'Arial Black', sans-serif;
  letter-spacing: 1px;
}

/* Navbar links */
.navbar nav a {
  color: #f5f5f5;
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: bold; /* consistent bold */
  font-family: 'Arial Black', sans-serif;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover underline effect */
.navbar nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: #00e5ff; /* Neon Blue */
  transition: width 0.3s ease;
}

.navbar nav a:hover {
  color: #00e5ff;
}

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





/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid gold;
    color: gold;
    background-color: #000;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    color: #00e5ff;
    box-shadow: 0 0 15px #00e5ff, 0 0 25px #00e5ff;
    transform: translateY(-3px);
}

/* Section Animations */
.fade-slide {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Generic Section Styling */
section {
    padding: 140px 50px 50px; /* accounts for navbar */
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

/* Section Text */
.section-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.section-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: gold;
}

.section-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Section Media */
.section-media {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-media img,
.section-media video {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    border: 2px solid gold;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-media img:hover,
.section-media video:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00e5ff;
}

/* Responsive for Mobile */
@media (max-width: 900px) {
    section {
        flex-direction: column;
        padding: 120px 30px 30px;
    }

    .section-text,
    .section-media {
        max-width: 100%;
    }
}
/* About Section - Horizontal layout */
.about-hero {
    display: flex;
    flex-direction: row;       /* Text on left, video on right */
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 140px 50px 50px; /* keeps space for navbar */
    flex-wrap: wrap;           /* allows responsive stacking on smaller screens */
}

/* Section Text */
.section-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

/* Section Media */
.section-media {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    
}

.section-media video {
    width: 100%;
    max-width: 450px;    /* adjust as needed */
    border-radius: 12px;
    border: 2px solid gold;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-media video:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00e5ff;
}

/* Responsive: stack video below text on smaller screens */
@media (max-width: 900px) {
    .about-hero {
        flex-direction: column;
        padding: 120px 30px 30px;
        text-align: center;
    }

    .section-text,
    .section-media {
        max-width: 100%;
    }

    .section-media {
        margin-top: 20px;
    }
}

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

/* Body */
body {
    font-family: 'Arial Black', sans-serif;
    background-color: #000;
    color: gold;
    line-height: 1.6;
}

/* Navbar - keep your existing styles, no change needed */

/* Hero Text */
.offer-hero {
    text-align: center;
    padding: 150px 20px 80px;
}

.offer-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
    padding: 150px;
}

.offer-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Offer Sections */
.offer-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 80px 10%;
    flex-wrap: wrap;
}

.offer-section.reverse {
    flex-direction: row-reverse;
}

.offer-text {
    flex: 1;
    min-width: 300px;
}

.offer-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.offer-text p {
    font-size: 1.1rem;
    color: #ddd;
}

/* Images in sections */
.offer-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    border: 2px solid gold;
    object-fit: cover;
}

/* Before & After Gallery */
.before-after {
    text-align: center;
    padding: 80px 10%;
}

.before-after h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Gallery Flex */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    flex: 1 1 300px; /* Grow/shrink with screen */
    max-width: 350px;
}

/* Pair Images Side by Side */
.image-pair {
    display: flex;
    gap: 10px;
    position: relative;
}

.image-pair img {
    width: 50%; /* Always half */
    border-radius: 12px;
    border: 2px solid gold;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-pair:hover img {
    transform: scale(1.05);
}

/* Overlay with Testimonial */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    border-radius: 12px;
    text-align: center;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.image-pair:hover .overlay {
    opacity: 1;
}

.overlay p {
    font-size: 1rem;
    line-height: 1.4;
}

/* Keep Side-by-Side on Smaller Screens */
@media (max-width: 900px) {
    .image-pair img {
        width: 48%; /* Slightly smaller to fit screen */
    }
}

body {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  background: #000;
  border-bottom: 1px solid #444;
}

.navbar a {
  color: #d4af37;
  margin-left: 15px;
  text-decoration: none;
}

.navbar a.active {
  border-bottom: 2px solid #d4af37;
}
---------

.contact-section {
  padding: 60px 20px;
  text-align: center; /* centers the h1 and p */
  background-color: #000; /* optional: keep section black */
  color: #d4af37; /* gold text */
}

.contact-section h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto; /* centers paragraph */
}

.contact-card {
  background: #111;
  border: 1px solid #d4af37;
  border-radius: 8px;
  max-width: 500px;
  margin: 0 auto;
  padding: 30px;
  text-align: left; /* keep contact items left-aligned */
}

.contact-item {
  margin: 10px 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.contact-item i {
  margin-right: 10px;
  color: #d4af37;
  min-width: 20px;
  text-align: center;
}

.contact-item a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #fff;
}

.cta-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #000;
  background-color: #d4af37;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px);
}

.cta-btn {
  background: #d4af37;
  color: #000;
  padding: 12px 20px;
  border: none;
  margin-top: 20px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #fff;
  color: #000;
}
.contact-section, h1{
    align-items: center;
}
/* Final standout CTA button */
.final-cta {
    text-align: center;
    margin: 50px 0 100px; /* space around the button */
}

.cta-typeform-btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #d4af37; /* Gold text */
    background-color: #000; /* Black background */
    border: 3px solid #d4af37; /* Gold border */
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 0 15px #00e5ff, 0 0 25px #d4af37; /* Neon blue + gold glow */
    transition: all 0.4s ease;
}

.cta-typeform-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 0 25px #00e5ff, 0 0 50px #d4af37;
    color: #00e5ff; /* Changes text to neon blue on hover */
    border-color: #00e5ff; /* Border also changes on hover */
}