 /* Global Font Styles */
body {
      font-family: "Geologica", sans-serif;

}

h1, h2, h3, h4, h5, h6, .call-btn {
      font-family: "Geologica", sans-serif;
    }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
}
.logo span {
    color: #2c7df0;
}
.logo .tagline {
    font-size: 0.75rem;
    color: #666;
}

.main-nav ul {
    display: flex;
    list-style: none;
}
.main-nav li {
    margin-left: 20px;
}
.main-nav a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.main-nav a:hover {
    color: #2c7df0;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    max-width: 1100px;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #f1f5ff;
    padding: 30px;
    border-radius: 10px;
}

.hero-content {
    flex: 1;
    padding: 20px;
}
.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #222;
}
.hero-content p {
    margin-bottom: 15px;
    color: #444;
}
.hero-content ul {
    margin-bottom: 15px;
    list-style: none;
}
.hero-content li {
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}
.hero-content li::before {
    content: "✔";
    color: #2c7df0;
    position: absolute;
    left: 0;
}

.cta-btn {
    display: inline-block;
    background: #ff6a00;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}
.cta-btn:hover {
    background: #e25a00;
}

.hero-image {
    flex: 1;
    text-align: center;
}
.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .step {
    flex: 1 1 0px!important;
}
    .main-nav {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 75px;
        right: 20px;
        border: 1px solid #ddd;
        padding: 10px;
    }
    .main-nav.show {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .hero {
        flex-direction: column;
        text-align: center;
    }
}


/* Availability Section */
.availability {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
}

.availability h2 {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 20px auto;
    color: #222;
    line-height: 1.4;
}
/* Services Section */
.services {
    padding: 50px 20px;
    background: #f9faff;
}

.services-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.text-side {
    flex: 1;
    min-width: 280px;
}

.service-title {
    color: #2c7df0;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.text-side p {
    margin-bottom: 20px;
    color: #333;
    line-height: 1.5;
}

.image-side {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.image-side img {
    max-width: 100%;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .services-content {
        flex-direction: column;
        text-align: center;
    }
    .text-side, .image-side {
        width: 100%;
    }
}

/* Highlights Section */
.highlights {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
}

.highlights h2 {
    font-size: 1.6rem;
    margin-bottom: 40px;
    color: #111;
}

.highlight-circles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-weight: bold;
    padding: 20px;
}

.circle.blue {
    background: #2c7df0;
}

.circle.orange {
    background: #ff6a00;
}

@media (max-width: 768px) {
    .circle {
        width: 160px;
        height: 160px;
        font-size: 0.9rem;
    }
}
/* Steps Section */
.steps-section {
    background: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.steps-section h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #111;
}

.steps-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    background: #fff;
    padding: 20px;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.step-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    color: #2c7df0;
    margin-bottom: 15px;
}

.step p {
    font-size: 1rem;
    color: #333;
}

.call-button {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 25px;
    background: #ff6a00;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s;
}

.call-button:hover {
    background: #e65c00;
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
}

  .package-section {
        text-align: center;
        padding: 40px 20px;
    }
    .package-section h2 {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 20px;
    }
    .package-section h3 {
        font-size: 26px;
        font-weight: bold;
        margin-bottom: 40px;
    }
    .package-content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        max-width: 1100px;
        margin: auto;
        gap: 30px;
    }
    .package-content img {
        max-width: 450px;
        width: 100%;
        border-radius: 5px;
    }
    .package-text {
        flex: 1;
        min-width: 300px;
        text-align: left;
    }
    .package-text p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .call-btn {
        background-color: orange;
        color: white;
        padding: 10px 20px;
        border-radius: 20px;
        font-weight: bold;
        text-decoration: none;
        display: inline-block;
    }

       .faq-section {
        max-width: 900px;
        margin: auto;
        padding: 40px 20px;
    }
    .faq-section h2 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 30px;
        font-weight: bold;
    }
    .faq-item {
        border-bottom: 1px solid #ccc;
        padding: 15px 0;
    }
    .faq-question {
        display: flex;
        justify-content: space-between;
        cursor: pointer;
        font-weight: bold;
        font-size: 16px;
    }
    .faq-answer {
        display: none;
        margin-top: 10px;
        font-size: 15px;
        line-height: 1.6;
    }
    .faq-toggle {
        font-size: 18px;
        font-weight: bold;
    }
    .call-btn {
        background-color: orange;
        color: white;
        padding: 10px 20px;
        border-radius: 20px;
        font-weight: bold;
        text-decoration: none;
        display: block;
        width: fit-content;
        margin: 30px auto 0;
    }
        /* Full width black background section */
    .steps-section {
        /*background-color: #000;*/
        color: white;
        padding: 50px 20px;
    }

    .steps-container {
        max-width: 1100px;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
        text-align: center;
    }

    .step {
        flex: 1 1 300px;
    }

    .step-number {
        font-size: 2.5rem;
        color: #1e6eff;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .step-text {
        font-size: 1.1rem;
        font-weight: 500;
    }

    /* Call button */
    .call-btn {
        display: block;
        background-color: orange;
        color: white;
        padding: 12px 25px;
        border-radius: 20px;
        margin: 30px auto 0;
        font-weight: bold;
        text-decoration: none;
        transition: background 0.3s;
    }

    .call-btn:hover {
        background-color: #e69500;
    }

    /* Disclaimer (not full width) */
    .disclaimer {
        max-width: 900px;
        margin: 30px auto;
        font-size: 0.9rem;
        color: #555;
        padding: 0 15px;
        text-align: center;
    }

    @media (max-width: 768px) {
        .steps-container {
            flex-direction: column;
            text-align: center;
        }
    }

/* Full-width black background */
.footer-section {
    background-color: #000;
    color: #fff;
    padding-top: 20px;
}

/* Disclaimer centered with limited width */
.disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.disclaimer-heading {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
    padding: 30px 0px;
}

.disclaimer-text {
    font-size: 1.2rem;
    line-height: 2;
    color: #ccc;
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
    padding: 15px;
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #222;
}

.footer-bottom p {
    margin: 0 0 10px 0;
}

/* Footer links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}
