/* Fonts */
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  
}
html,body{
    overflow-x:hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

/* Header Styles */
  /* Navbar Container */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        /* Logo */
        .logo {
            font-size: 28px;
            font-weight: bold;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        /* Desktop Menu */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 10px;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: #333;
            text-decoration: none;
                padding: 10px 10px;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #FA0000, #667EEA);
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }

        .nav-link:hover::before {
            width: 80%;
        }

        .nav-link:hover {
            color: #fff;
            background: linear-gradient(90deg,rgba(250, 0, 0, 0.24) 0%, rgba(102, 126, 234, 0.21) 100%);
        }
        .nav-link:hover{
            background: linear-gradient(90deg,rgba(250, 0, 0, 0.24) 0%, rgba(102, 126, 234, 0.21) 100%);
        }

        /* Dropdown Arrow */
        .dropdown-arrow {
            transition: transform 0.3s ease;
        }

        .nav-item.active .dropdown-arrow {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            min-width: 200px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-10px);
            transition: all 0.3s ease;
            margin-top: 10px;
            overflow: hidden;
        }

        .nav-item:hover .dropdown,
        .nav-item.active .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-item {
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .dropdown-item:hover {
           background: linear-gradient(90deg,rgba(250, 0, 0, 0.24) 0%, rgba(102, 126, 234, 0.21) 100%);
            padding-left: 25px;
            border-left-color: #667eea;
            color: #fff;
        }
        .dropdown-item:active{
            background: linear-gradient(90deg,rgba(250, 0, 0, 0.24) 0%, rgba(102, 126, 234, 0.21) 100%);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -8px);
        }

        /* Mobile Styles */
        @media screen and (max-width: 768px) {
            .nav-container {
                height: 60px;
            }

            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 60px;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: center;
                transition: all 0.3s ease;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                padding: 20px 0;
                gap: 0;
                max-height: calc(100vh - 60px);
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                width: 100%;
            }

            .nav-link {
                padding: 15px 20px;
                border-radius: 0;
                justify-content: center;
            }

            .nav-link::before {
                display: none;
            }

            .dropdown {
                position: static;
                transform: none;
                box-shadow: none;
                border-radius: 0;
                opacity: 1;
                visibility: visible;
                margin-top: 0;
                background: rgba(102, 126, 234, 0.05);
                display: none;
            }

            .nav-item.active .dropdown {
                display: block;
            }

            .dropdown-item {
                padding: 12px 30px;
                border-left: none;
                border-bottom: 1px solid rgba(102, 126, 234, 0.1);
            }

            .dropdown-item:last-child {
                border-bottom: none;
            }

            .dropdown-item:hover {
                padding-left: 35px;
                background: rgba(102, 126, 234, 0.1);
            }
        }


.site-header {
  background: #fff;
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Company Name */
.site-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.site-name .black {
  color: #111;
}

.site-name .red {
  color: #e60000;
}

/* Menu */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.main-nav ul li {
  margin-left: 25px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.main-nav ul li a:hover {
  color: #e60000;
}

/* Responsive: mobile keeps name left, menu right */
@media (max-width: 768px) {
  .header-container {
    flex-direction: row;       /* row layout */
    justify-content: space-between; /* keep left/right alignment */
    align-items: center;
  }

  .main-nav ul {
    flex-direction: row;       /* keep menu horizontal */
    gap: 15px;
  }

  .main-nav ul li {
    margin-left: 0;
  }

  .site-name {
    font-size: 20px;
  }
}


/* Banner Section */
.banner {
  height: 500px;
  background: url('../images-new/2151998714.webp') center/cover no-repeat; /* Replace with your image */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); /* Dark overlay */
}

.banner-text {
  position: relative;
  z-index: 2;
}

.banner-text h1 {
  font-size: 40px;
  font-weight: 700;
  color:#fff;
}

.banner-text p {
  font-size: 18px;
  margin-top: 10px;
}

/* Service Areas Section */
.service-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
}

.service-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.service-section p {
  margin-bottom: 20px;
  color: #444;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #ddd;
}

.service-grid a {
  display: block;
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #1e5ed8;
  font-weight: 600;
  transition: 0.3s;
  text-align: left;
}

.service-grid a:hover {
  background: #f5f5f5;
  color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .banner-text h1 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .banner-text h1 {
    font-size: 24px;
  }
}

/* =====================
   Global Styles
===================== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 15px;
  color: #111;
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

p {
  margin-bottom: 15px;
}

/* =====================
   Banner
===================== */
.location-banner {
  height: 500px;
  background: url('../images-new/44294.webp') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.gold-banner {
  height: 500px;
  background: url('../images-new/goaldcoastbanner.webp') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.location-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* overlay */
}

.banner-content {
  position: relative;
  z-index: 2;
  justify-items: center;
}

.banner-content h1{
    color: #fff;
    width:800px;
        line-height: 1.3em;
}
.banner-content h2{
    color: #fff;
    font-size: 20px;
    width: 900px;
    margin-bottom: 20px;
}

.banner h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.banner h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  background: #CD2323;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #005fa3;
}

/* =====================
   Sections
===================== */
section {
  padding: 60px 0;
}

.who-we-are, 
.our-services, 
.why-choose-us,
.book-now,
.testimonials,
.faqs {
  background: #fff;
}

.who-we-are .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.who-we-are .text {
  flex: 1;
}

.who-we-are .image {
  flex: 1;
}

.who-we-are img {
  width: 100%;
  border-radius: 10px;
}

/* =====================
   Services Grid
===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-item {
  text-align: center;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}
.service-item h4{
    color:#cd2323;
}

.service-item img {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  width: 100%;
}
.service-p{
    width: 800px;
}
}

/* =====================
   Why Choose Us
===================== */
.why-choose-us {
  padding: 60px 20px;
}

.why-choose-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-image {
  flex: 1;
}

.why-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.why-text {
  flex: 1.2;
}

.why-text h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color:#cd2323;
}

.why-text h3 {
  font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.2em;
    color: #555;
}

h2.sechead {
      font-size: 22px;
  margin-bottom: 10px;
  color:#cd2323;
}
h3.sechead {
      font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.2em;
    color: #222;
}

.why-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.reasons {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reasons li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.reasons .icon {
  margin-right: 10px;
  font-size: 18px;
  color: #4AAFE3;
}

@media (max-width: 768px) {
  .why-choose-container {
    flex-direction: column;
    text-align: center;
  }

  .why-text {
    text-align: left;
  }
}


/* =====================
   Book Now
===================== */
/* Center Book Now Section */
#book-now {
  background: #0077cc;       /* optional background */
  color: #fff;
  padding: 80px 20px;
  display: flex;
  justify-content: center;   /* horizontal center */
  text-align: center;        /* center text inside wrapper */
}

.book-now-wrapper {
  max-width: 1140px;         /* fixed width */
  width: 100%;
}

#book-now h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #fff;
}

#book-now p {
  font-size: 18px;
  margin-bottom: 25px;
}

.call-btn {
  display: inline-block;
  background: #fff;        /* White background */
  color: #e63946;          /* Rose red text */
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 24px;
  
  border-radius: 8px;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background: #e63946;   /* Fill rose red on hover */
  color: #fff;           /* White text on hover */
}
.call-btn:hover .icon {
  color: #fff;           /* Icon turns white too */
}
/* Responsive */
@media (max-width: 768px) {
  #book-now h2 {
    font-size: 28px;
  }
  #book-now p {
    font-size: 16px;
  }
  #book-now .btn-primary {
    padding: 12px 25px;
  }
}


#book-now .btn-primary:hover {
  background: #005fa3;
}
@media (max-width: 768px) {
  #book-now h2 {
    font-size: 28px;
  }
  #book-now p {
    font-size: 16px;
  }
  #book-now .btn-primary {
    padding: 12px 25px;
  }
}

.book-now-wrapper h3{
    color:#fff;
}


/* =====================
   Testimonials
===================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.testimonial {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  font-style: italic;
}

.testimonial h4 {
  margin-top: 15px;
  font-weight: bold;
  color: #0077cc;
}

/* =====================
   FAQs
===================== */
.faqs-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    align-content: center;
}

.faqs-left {
  flex: 1;
}

.faqs-right {
  flex: 1;
}

.faqs-right img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 600px;
}

.faq-item h4 {
  cursor: pointer;
  background: #f0f0f0;
  padding: 12px 20px;
  border-radius: 6px;
  margin-bottom: 5px;
  position: relative;
  transition: background 0.3s ease;
}

.faq-item h4::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active h4::after {
  content: '-';
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  margin-bottom: 15px;
}

.faq-item.active p {
  max-height: 500px; /* adjust if needed */
  padding: 10px 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .faqs-container {
    flex-direction: column;
  }
}


/* =====================
   Responsive
===================== */
@media (max-width: 768px) {
  .who-we-are .container {
    flex-direction: column;
  }
  .banner h1 {
    font-size: 28px;
  }
  .banner p {
    font-size: 16px;
  }
}  



/* Footer Styles */
.site-footer {
  background: #111;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-about,
.footer-links,
.footer-map {
  flex: 1;
  min-width: 250px;
}

.footer-about h3,
.footer-links h3,
.footer-map h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-about p,
.footer-links ul li,
.footer-map p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-about a{
    color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #0077cc;
}

.footer-map iframe {
  border-radius: 8px;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #333;
  padding-top: 15px;
}


/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  .footer-map iframe {
    height: 200px;
  }
}


@media only screen and (min-width: 481px) and (max-width: 767px){
    body{
        overflow-x:hidden;
    }
}

/* Mobile phones (up to 480px) */
@media only screen and (max-width: 480px) {
  .banner-content h1 {
    width: 100%;     /* full width */
    font-size: 30px !important; /* smaller text for readability */
    padding: 0 8px;
    text-align: center;         /* centers the heading */
  }
    .banner-content h2 {
    color: #fff;
    font-size: 18px;
    width: 100%;
    margin-bottom: 20px;
    line-height: 1.5em;
}
        .nav-item:hover .dropdown,
        .nav-item.active .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(0%) translateY(0)!important;
        }

}

/* Larger phones / small tablets (481px–767px) */
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .banner-content h1 {
    width: 100%;
    font-size: 32px !important;
    padding: 0 10px;
    text-align: center;
  }
  .banner-content h2 {
    color: #fff;
    font-size: 18px;
    width: 100%;
    margin-bottom: 20px;
    line-height: 1.5em;
}
        .nav-item:hover .dropdown,
        .nav-item.active .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(0%) translateY(0)!important;
        }

}