
:root {
    --primary: #0a2f5a;
    --secondary: #c19f67;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #28a745;
    --accent: #c19f67;
    --danger: #dc3545;
    --warning-bg: #fff3cd;
    --text-dark: #222;
    --text-light: #777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--primary);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--secondary);
}

.logo i {
    margin-right: 10px;
    font-size: 28px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 47, 90, 0.8), rgba(10, 47, 90, 0.8)), url('../images/background.jpg') no-repeat center center/cover;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    /*margin-bottom: 20px;*/
    font-weight: 700;
}

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

/* Booking Widget */
.booking-widget {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: -50px auto 50px;
    position: relative;
    z-index: 10;
}

.booking-widget h2 {
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.8rem;
}

.booking-form {
    display: grid;
    /*grid-template-columns: repeat(2, 1fr);*/
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.btn {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 14px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
    text-decoration: none;
}

.btn:hover {
    background: #a88552;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}
.btn-available{
    margin-top: 33px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.feature-card {
    background: var(--light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    padding: 30px 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f2f6fa;
}

.service-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 25px;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    color: var(--primary);
    border-bottom: 3px solid var(--secondary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.service-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.service-info ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-info ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.service-info ul li i {
    color: var(--secondary);
    margin-right: 10px;
    margin-top: 5px;
}

/* Testimonials Slider */
.testimonials {
    padding: 80px 0;
    background: white;
}

.glide__slide {
    text-align: center;
    padding: 30px;
}

.testimonial-card {
    background: var(--light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 10px #0a2f5a;
    margin: 0 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.rating {
    color: #ffc107;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f2f6fa;
}

.accordion {
    margin-top: 40px;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    background: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    background: white;
}

.accordion-content.active {
    padding: 20px;
    max-height: 300px;
}
/* Page Header */
.page-header {
    background: linear-gradient(rgba(10, 47, 90, 0.8), rgba(10, 47, 90, 0.8)), url('../images/background.jpg') no-repeat center center/cover;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
}

.breadcrumb li {
    margin: 0 10px;
}

.breadcrumb li a {
    color: var(--secondary);
    text-decoration: none;
}

.breadcrumb li::after {
    content: ">";
    margin-left: 10px;
    color: #ccc;
}

.breadcrumb li:last-child::after {
    content: "";
}

/* Service Selection */
.service-selection {
    padding: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 0px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /*grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card.recommended {
    border: 2px solid var(--secondary);
    transform: scale(1.03);
}

.service-card.recommended::before {
    content: "MOST POPULAR";
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--secondary);
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-price {
    color: var(--secondary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.service-features li i {
    color: var(--secondary);
    margin-right: 10px;
    margin-top: 5px;
}

.btn {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
    text-decoration: none;
    text-align: center;
}

.btn:hover {
    background: #a88552;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Comparison Table */
.comparison {
    padding: 80px 0;
    background: #f2f6fa;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .feature {
    font-weight: 600;
    color: var(--primary);
}

.comparison-table i.fa-check {
    color: var(--success);
}

.comparison-table i.fa-times {
    color: #dc3545;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(rgba(10, 47, 90, 0.9), rgba(10, 47, 90, 0.9)), url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}
/*Contact*/
.contact-section {padding:80px 0;}
.contact-grid {display:grid; grid-template-columns:repeat(auto-fit,minmax(350px,1fr)); gap:40px;}
.contact-info {background:white; border-radius:8px; padding:30px; box-shadow:0 5px 15px rgba(0,0,0,.05);}
.contact-info h3 {color:var(--primary); margin-bottom:20px;}
.contact-info ul {list-style:none;}
.contact-info li {margin-bottom:15px; display:flex; align-items:flex-start;}
.contact-info li i {color:var(--secondary); margin-right:15px; margin-top:5px;}
.contact-form {background:white; border-radius:8px; padding:30px; box-shadow:0 5px 15px rgba(0,0,0,.05);}
.contact-form h3 {color:var(--primary); margin-bottom:20px;}
.contact-form input, .contact-form textarea {width:100%; padding:12px; border:1px solid #ddd; border-radius:5px; margin-bottom:15px;}
.title-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.title-option {
  position: relative;
  cursor: pointer;
  font-weight: 500;
  color: var(--primary);
}

.title-option input {
  display: none;
}

.title-option span {
  display: inline-block;
  padding: 8px 18px;
  border: 2px solid var(--primary);
  border-radius: 25px;
  transition: all 0.3s ease;
  background: #fff;
}

.title-option input:checked + span {
  background: var(--primary);
  color: #fff;
  border-color: var(--secondary);
  box-shadow: 0 0 8px rgba(193,159,103,0.5);
}

.title-option:hover span {
  border-color: var(--secondary);
  color: var(--secondary);
}
.btn {background:var(--secondary); color:white; padding:12px 25px; border:none; border-radius:5px; cursor:pointer; font-size:16px; font-weight:600; text-decoration:none; transition:background .3s;}
.btn:hover {background:#a88552;}
/*Faq*/
.faq-section{padding:80px 0;}
.faq-item{background:white;margin-bottom:15px;border-radius:8px;box-shadow:0 5px 15px rgba(0,0,0,.05);}
.faq-question{padding:20px;cursor:pointer;display:flex;justify-content:space-between;align-items:center;color:var(--primary);font-weight:600;}
.faq-answer{display:none;padding:0 20px 20px;color:#555;}
.faq-item.active .faq-answer{display:block;}
.faq-item.active .faq-question i{transform:rotate(180deg);}
/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}
/*Provide details*/
 .provide-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 10px;
}
.provide-detail{
    background: white; 
    padding: 40px!important; 
    border-radius: 8px!important; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05)!important;
}
.provide-title{
    color: var(--primary); margin: 20px 0;
}
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}
.form-control:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(193,159,103,0.2);
}
/*confirmation*/
/* 🌐 Section Layout */
.confirm-booking {
  background: #f9f9f9;
  padding: 80px 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.confirm-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.confirm-title {
  text-align: center;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 50px;
}

.confirm-title span {
  color: var(--accent);
}

/* ⚙️ Grid Layout */
.confirm-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.payment-box, .summary-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* 🧾 Payment Options */
.payment-box h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.radio-option {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

.radio-option input {
  margin-right: 10px;
  transform: scale(1.2);
}

/* ⚠️ Alerts */
.alert {
  padding: 12px 15px;
  border-radius: 6px;
  margin: 15px 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.alert-danger {
  background: var(--danger);
  color: #fff;
}

.alert-warning {
  background: var(--warning-bg);
  border-left: 4px solid var(--accent);
  color: #856404;
}

/* 💳 Button */
.btn-primary {
  display: inline-block;
  background: #a88552;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-primary:hover {
  background: #a88552;
}

/* 📊 Summary Box */
.summary-box h3 {
  color: var(--primary);
  margin-bottom: 10px;
}
.divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 20px;
}

.summary-box p {
  color: var(--text-dark);
  margin: 8px 0;
}

.summary-box .green {
  color: #28a745;
}

.summary-box hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 15px 0;
}

.summary-box .total {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 10px;
}

.summary-box .total span {
  color: var(--accent);
}

.summary-box .terms {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 10px;
}

.summary-box .terms a {
  color: var(--accent);
  text-decoration: none;
}
.summary-box .terms a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        grid-template-columns: 1fr;
    }
    .confirm-content {
        grid-template-columns: 1fr;
      }
}
