/* ---------- Global Reset ---------- */
.hero-image img{
  display:block;
  aspect-ratio: 4/3;
}


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

body{
    font-family: "Poppins", Arial, sans-serif;
    color:#0f172a;
    background:#ffffff;
}

/* ---------- Header Wrapper ---------- */
.site-header{
    width:100%;
    background:#ffffff;
    border-bottom:1px solid #e5e7eb;
    position:sticky;
    top:0;
    z-index:999;
}

/* ---------- Container ---------- */
.header-container{
    max-width:1200px;
    margin:auto;
    padding:14px 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

/* ---------- Branding ---------- */
.brand{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.logo-icon{
    width:38px;
    height:38px;
    border-radius:12px;
    background:#fde68a;
    border:2px solid #facc15;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.brand-name{
    font-size:20px;
    font-weight:700;
    letter-spacing:.3px;
}

.brand-name span{
    color:#ca8a04;
}

/* ---------- Navigation ---------- */
.navbar{
    display:flex;
    align-items:center;
    gap:24px;
}

.navbar a{
    text-decoration:none;
    color:#0f172a;
    font-size:14px;
    font-weight:500;
    transition:.25s;
}

.navbar a:hover{
    color:#ca8a04;
}

/* ---------- CTA Button ---------- */
.header-cta{
    padding:10px 16px;
    border-radius:10px;
    background:#ca8a04;
    color:#ffffff;
    border:none;
    cursor:pointer;
    font-size:14px;
    font-weight:600;
    transition:.25s;
}

.header-cta:hover{
    background:#92400e;
}

/* ---------- Mobile Menu Button ---------- */
.menu-toggle{
    display:none;
    font-size:26px;
    background:none;
    border:none;
    cursor:pointer;
}

/* ---------- Mobile Dropdown ---------- */
.mobile-nav{
    display:none;
    flex-direction:column;
    gap:14px;
    padding:14px 18px;
    background:#ffffff;
    border-top:1px solid #e5e7eb;
}

.mobile-nav a{
    text-decoration:none;
    color:#111827;
    font-size:15px;
}

.mobile-nav a:hover{
    color:#ca8a04;
}

/* ---------- Responsive ---------- */
@media(max-width:900px){

    .navbar{
        display:none;
    }

    .menu-toggle{
        display:block;
    }
}

@media(max-width:600px){
    .brand-name{
        font-size:18px;
    }
}


/* ===== HERO SECTION ===== */
.hero-section{
    background:#fff7ec;
    padding:70px 0;
}

.hero-wrapper{
    max-width:1200px;
    margin:auto;
    padding:0 18px;
    display:grid;
    grid-template-columns:1.2fr 1fr;
    align-items:center;
    gap:40px;
}

/* ----- LEFT CONTENT ----- */
.hero-content h1{
    font-size:36px;
    line-height:1.25;
    color:#111827;
    font-weight:800;
    margin-bottom:12px;
}

.hero-content p{
    color:#374151;
    font-size:15px;
    line-height:1.7;
    margin-bottom:18px;
}

/* ----- BUTTONS ----- */
.hero-actions{
    display:flex;
    gap:14px;
    margin-bottom:14px;
}

.primary-btn{
    padding:12px 18px;
    background:#ca8a04;
    color:#fff;
    border-radius:12px;
    font-weight:600;
    text-decoration:none;
    transition:.25s;
}

.primary-btn:hover{
    background:#92400e;
}

.outline-btn{
    padding:11px 18px;
    border-radius:12px;
    border:2px solid #ca8a04;
    color:#92400e;
    text-decoration:none;
    font-weight:600;
    background:#fff;
    transition:.25s;
}

.outline-btn:hover{
    background:#fef3c7;
}

/* ----- TRUST BADGES ----- */
.trust-box{
    display:flex;
    flex-wrap:wrap;
    gap:10px 16px;
    margin-top:6px;
    color:#065f46;
    font-size:13px;
    font-weight:600;
}

/* ----- RIGHT IMAGE ----- */
.hero-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 10px 28px rgba(0,0,0,.12);
    object-fit:cover;
}

/* ===== RESPONSIVE ===== */

/* Tablets */
@media(max-width:900px){

    .hero-wrapper{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-actions{
        justify-content:center;
    }

    .trust-box{
        justify-content:center;
    }
}

/* Mobile */
@media(max-width:520px){

    .hero-content h1{
        font-size:28px;
    }

    .hero-section{
        padding:55px 0;
    }
}


/* ===== SERVICES SECTION ===== */
.services-section{
    background:#fff7ec;
    padding:70px 0;
}

.services-container{
    max-width:1200px;
    margin:auto;
    padding:0 18px;
}

/* ----- HEADER ----- */
.services-header{
    text-align:center;
    max-width:780px;
    margin:auto;
    margin-bottom:28px;
}

.services-header h2{
    font-size:30px;
    font-weight:800;
    color:#111827;
    margin-bottom:6px;
}

.services-header p{
    color:#4b5563;
    font-size:15px;
    line-height:1.7;
}

/* ----- GRID LAYOUT ----- */
.services-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

/* ----- SERVICE CARD ----- */
.service-card{
    background:#ffffff;
    border-radius:18px;
    border:1px solid #fcd34d;
    box-shadow:0 10px 26px rgba(0,0,0,.06);
    padding:14px 14px 18px;
    display:flex;
    flex-direction:column;
}

/* Image */
.service-image img{
    width:100%;
    height:210px;
    object-fit:cover;
    border-radius:14px;
    margin-bottom:10px;
}

.service-card h3{
    font-size:20px;
    color:#92400e;
    margin-bottom:6px;
}

.service-card p{
    font-size:14px;
    color:#4b5563;
    line-height:1.6;
    margin-bottom:10px;
}

/* List */
.service-list{
    list-style:none;
    padding-left:0;
    margin-bottom:12px;
}

.service-list li{
    font-size:13px;
    margin-bottom:4px;
    color:#065f46;
    font-weight:600;
}

/* Button */
.service-btn{
    margin-top:auto;
    display:inline-block;
    padding:10px 16px;
    border-radius:12px;
    text-decoration:none;
    color:#ffffff;
    background:#ca8a04;
    font-weight:600;
    transition:.25s;
}

.service-btn:hover{
    background:#92400e;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:980px){
    .services-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* Mobile */
@media(max-width:600px){

    .services-section{
        padding:55px 0;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .services-header h2{
        font-size:26px;
    }
}



/* ===== ABOUT SECTION ===== */
.about-section{
    background:#ffffff;
    padding:70px 0;
}

.about-wrapper{
    max-width:1200px;
    margin:auto;
    padding:0 18px;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:40px;
    align-items:center;
}

/* ----- CONTENT ----- */
.about-content h2{
    font-size:30px;
    color:#111827;
    font-weight:800;
    margin-bottom:8px;
}

.about-intro{
    font-weight:600;
    color:#374151;
    margin-bottom:6px;
}

.about-content p{
    color:#4b5563;
    line-height:1.7;
    font-size:15px;
    margin-bottom:10px;
}

/* ----- STATS ----- */
.about-stats{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin:12px 0 10px;
}

.stat-box{
    background:#fff7ec;
    border:1px solid #fcd34d;
    border-radius:14px;
    padding:12px 16px;
    min-width:140px;
}

.stat-box h3{
    font-size:22px;
    color:#92400e;
    margin-bottom:2px;
}

.stat-box span{
    font-size:12px;
    color:#6b7280;
    font-weight:600;
}

/* ----- BULLET LIST ----- */
.about-list{
    margin:8px 0 12px;
    padding-left:12px;
    list-style:none;
}

.about-list li{
    font-size:14px;
    color:#065f46;
    margin-bottom:4px;
    font-weight:600;
}

/* ----- CTA BUTTON ----- */
.about-btn{
    display:inline-block;
    margin-top:6px;
    padding:11px 18px;
    border-radius:12px;
    background:#ca8a04;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.25s;
}

.about-btn:hover{
    background:#92400e;
}

/* ----- IMAGE ----- */
.about-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 10px 28px rgba(0,0,0,.12);
    object-fit:cover;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:900px){
    .about-wrapper{
        grid-template-columns:1fr;
        text-align:center;
    }

    .about-stats{
        justify-content:center;
    }

    .about-list{
        text-align:left;
        margin:auto;
        max-width:420px;
    }
}

/* Mobile */
@media(max-width:520px){
    .about-section{
        padding:55px 0;
    }

    .about-content h2{
        font-size:26px;
    }
}


/* ===== MENU SECTION ===== */
.menu-section{
    background:#ffffff;
    padding:70px 0;
}

.menu-container{
    max-width:1200px;
    margin:auto;
    padding:0 18px;
}

/* ----- HEADER ----- */
.menu-header{
    text-align:center;
    max-width:780px;
    margin:auto;
    margin-bottom:28px;
}

.menu-header h2{
    font-size:30px;
    font-weight:800;
    color:#111827;
    margin-bottom:6px;
}

.menu-header p{
    color:#4b5563;
    font-size:15px;
    line-height:1.7;
}

/* ----- GRID ----- */
.menu-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

/* ----- CARD ----- */
.menu-card{
    background:#fff7ec;
    border:1px solid #fcd34d;
    border-radius:18px;
    box-shadow:0 10px 26px rgba(0,0,0,.06);
    padding:14px 14px 18px;
    display:flex;
    flex-direction:column;
}

.menu-image img{
    width:100%;
    height:210px;
    object-fit:cover;
    border-radius:14px;
    margin-bottom:10px;
}

.menu-card h3{
    font-size:20px;
    color:#92400e;
    margin-bottom:6px;
}

.menu-card p{
    font-size:14px;
    color:#4b5563;
    line-height:1.6;
    margin-bottom:10px;
}

/* ----- LIST ----- */
.menu-list{
    list-style:none;
    padding-left:0;
    margin-bottom:10px;
}

.menu-list li{
    font-size:13px;
    color:#374151;
    margin-bottom:4px;
}

/* ----- TAG ----- */
.menu-tag{
    font-size:12px;
    color:#065f46;
    font-weight:700;
    margin-top:auto;
}

/* ----- CTA BUTTON ----- */
.menu-cta{
    margin-top:26px;
    text-align:center;
}

.menu-btn{
    display:inline-block;
    padding:11px 18px;
    border-radius:12px;
    background:#ca8a04;
    color:#ffffff;
    font-weight:600;
    text-decoration:none;
    transition:.25s;
}

.menu-btn:hover{
    background:#92400e;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:980px){
    .menu-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* Mobile */
@media(max-width:600px){

    .menu-section{
        padding:55px 0;
    }

    .menu-grid{
        grid-template-columns:1fr;
    }

    .menu-header h2{
        font-size:26px;
    }
}


/* ===== LOCATION SECTION ===== */
.location-section{
    background:#fff7ec;
    padding:70px 0;
}

.location-container{
    max-width:1200px;
    margin:auto;
    padding:0 18px;
}

/* ----- HEADER ----- */
.location-header{
    text-align:center;
    max-width:820px;
    margin:auto;
    margin-bottom:28px;
}

.location-header h2{
    font-size:30px;
    font-weight:800;
    color:#111827;
    margin-bottom:6px;
}

.location-header p{
    color:#4b5563;
    font-size:15px;
    line-height:1.7;
}

/* ----- GRID ----- */
.location-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
}

/* ----- CARD ----- */
.location-card{
    background:#ffffff;
    border:1px solid #fcd34d;
    border-radius:18px;
    padding:14px 16px 16px;
    box-shadow:0 10px 26px rgba(0,0,0,.06);
    display:flex;
    flex-direction:column;
}

.location-card h3{
    font-size:18px;
    color:#92400e;
    margin-bottom:6px;
}

.location-card ul{
    list-style:none;
    padding-left:0;
    margin-bottom:10px;
}

.location-card ul li{
    font-size:13px;
    color:#374151;
    margin-bottom:3px;
}

/* ----- BADGE ----- */
.loc-badge{
    margin-top:auto;
    font-size:12px;
    color:#065f46;
    font-weight:700;
}

/* ----- CTA BUTTON ----- */
.location-cta{
    text-align:center;
    margin-top:26px;
}

.location-btn{
    display:inline-block;
    padding:11px 18px;
    border-radius:12px;
    background:#ca8a04;
    color:#ffffff;
    text-decoration:none;
    font-weight:600;
    transition:.25s;
}

.location-btn:hover{
    background:#92400e;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:980px){
    .location-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* Mobile */
@media(max-width:600px){

    .location-section{
        padding:55px 0;
    }

    .location-grid{
        grid-template-columns:1fr;
    }

    .location-header h2{
        font-size:26px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */

.testimonials-section {
  padding: 70px 0;
  background: #f7f9fb;
  font-family: "Poppins", sans-serif;
}

.testimonials-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 8px;
  color: #222;
}

.section-header p {
  color: #555;
  font-size: 15px;
}

/* Grid Layout */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Testimonial Card */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

/* Top Profile Section */
.testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial-top img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #ddd;
}

.testimonial-top h3 {
  margin: 0;
  font-size: 16px;
  color: #111;
}

.testimonial-top span {
  font-size: 13px;
  color: #777;
}

/* Review Text */
.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-top: 6px;
}

/* Star Rating */
.rating {
  margin-top: 12px;
  color: #ffb703;
  font-size: 18px;
  letter-spacing: 1px;
}

/* ===== Responsive Design ===== */

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 26px;
  }
}



/* ===== PRICING SECTION ===== */

.pricing-section {
  padding: 70px 0;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.pricing-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.section-header h2 {
  font-size: 32px;
  color: #111;
  margin-bottom: 8px;
}

.section-header p {
  color: #555;
  font-size: 15px;
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Price Card */
.price-card {
  background: #f8fafc;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-4px);
}

.price-card h3 {
  margin: 0;
  font-size: 20px;
  color: #111;
}

.package-tag {
  font-size: 13px;
  color: #777;
  margin: 6px 0 12px;
}

/* Price Style */
.price {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.price span {
  font-size: 13px;
  color: #666;
}

/* Feature List */
.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.package-features li {
  font-size: 14px;
  color: #333;
  padding: 6px 0;
  border-bottom: 1px dashed #ddd;
}

/* Buttons */
.price-btn {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  background: #111827;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.price-btn:hover {
  opacity: 0.9;
}

.highlight {
  background: #2563eb;
}

/* Featured (Middle Card) */
.featured {
  background: #ffffff;
  border: 2px solid #2563eb;
}

.badge {
  position: absolute;
  top: -10px;
  right: 14px;
  padding: 6px 10px;
  background: #2563eb;
  color: white;
  border-radius: 8px;
  font-size: 11px;
}

/* Note */
.pricing-note {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: #666;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 26px;
  }
}


/* ===== QUOTE FORM SECTION ===== */

.quote-section {
  padding: 70px 0;
  background: #f7f9fb;
  font-family: "Poppins", sans-serif;
}

.quote-section .container {
  max-width: 1100px;
  margin: auto;
  padding: 0 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 35px;
}

.section-header h2 {
  font-size: 30px;
  color: #111;
  margin-bottom: 6px;
}

.section-header p {
  color: #555;
  font-size: 14px;
}

.quote-wrapper {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

/* Form Layout */
.quote-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 10px;
}

.form-group label {
  font-size: 13px;
  color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  font-size: 14px;
  outline: none;
}

.form-group textarea {
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
}

/* Button */
.submit-btn {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border-radius: 10px;
  border: none;
  background: #111827;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  opacity: 0.9;
}

/* Success Message */
.success-msg {
  margin-top: 10px;
  font-size: 13px;
  color: #0a7a27;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 24px;
  }
}


/* ===== SITE FOOTER ===== */
.site-footer {
  background: #111827;
  color: #d1d5db;
  font-family: "Poppins", sans-serif;
  padding: 50px 16px 25px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 28px;
  flex-wrap: wrap;
}

/* Branding */
.footer-logo {
  font-size: 26px;
  font-weight: 800;
  color: #fcd34d;
  margin-bottom: 10px;
}

.footer-logo span {
  color: #fff;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #d1d5db;
}

/* Quick Links */
.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
  font-size: 16px;
  color: #fcd34d;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #fcd34d;
}

/* Contact Info */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 6px;
}

.footer-contact a {
  color: #d1d5db;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #fcd34d;
}

/* Newsletter */
.footer-newsletter form {
  display: flex;
  flex-direction: column;
}

.footer-newsletter input[type="email"] {
  padding: 10px;
  border-radius: 10px;
  border: none;
  margin-bottom: 8px;
  outline: none;
}

.footer-newsletter button {
  padding: 10px;
  border-radius: 10px;
  border: none;
  background: #fcd34d;
  color: #111827;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.footer-newsletter button:hover {
  background: #fff176;
}

.success-msg {
  margin-top: 6px;
  font-size: 13px;
  color: #22c55e;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #374151;
  padding-top: 15px;
  margin-top: 25px;
  font-size: 13px;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-newsletter form {
    align-items: center;
  }

  .footer-newsletter input[type="email"] {
    width: 80%;
  }

  .footer-newsletter button {
    width: 50%;
  }
}

