/* Placeholder Colour Palette */
:root {
    --primary-color: #2c3e50;    /* A professional, deep blue/grey */
    --secondary-color: #34495e;  /* A slightly darker tone */
    --accent-color: #7f8c8d;     /* A calm, neutral grey */
    --background-color: #ecf0f1; /* A very light grey for the background */
    --text-color: #333;
    --light-text-color: #f4f4f4;
}

/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

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

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

h1 { font-size: 3em; }
h2 { font-size: 2.5em; }
h3 { font-size: 1.5em; }

/* Header & Navigation */
header {
    background-color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.8em;
    font-weight: 600;
    color: var(--primary-color);
}

.logo img {
    max-height: 80px;
    margin-left: 8px;
}

nav a {
    text-decoration: none;
    color: var(--primary-color);
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-color);
}

.contact-cta {
    background-color: var(--primary-color);
    color: var(--light-text-color) !important;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-cta:hover {
    background-color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    background-image: url('https://via.placeholder.com/1920x800.png?text=Placeholder+Image');
    background-size: cover;
    background-position: center;
    color: var(--light-text-color);
    text-align: center;
    padding: 150px 20px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    color: var(--light-text-color);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--light-text-color);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #6c7a89;
}

/* Section Styles */
section {
    padding: 60px 0;
}

.approach-section, .services-section {
    text-align: center;
}

.approach-grid, .services-grid {
    display: grid;
    gap: 30px;
    padding: 0 20px;
}

.approach-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.approach-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Pre-Paid Section */
.prepaid-section {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
}

.prepaid-section h2 {
    color: var(--light-text-color);
}

.prepaid-section .cta-button {
    background-color: var(--light-text-color);
    color: var(--primary-color);
}

.prepaid-section .cta-button:hover {
    background-color: #d1d8e0;
}

/* About Section */
.about-section {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
}

.about-section h2 {
    color: var(--light-text-color);
}

.about-section .cta-button {
    background-color: var(--light-text-color);
    color: var(--primary-color);
}

.about-section .cta-button:hover {
    background-color: #d1d8e0;
}


/* FAQ Section (Accordion) */
.faq-section {
    background-color: #f9f9f9;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--primary-color);
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #eee;
}

.accordion-content {
    padding: 0 20px 20px;
    display: none; /* Initially hidden */
}

/* Contact Section */
.contact-section {
    background-color: var(--secondary-color);
    color: var(--light-text-color);
    padding: 60px 0;
}

.contact-section h2 {
    color: var(--light-text-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info p a {
    color: var(--light-text-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form button {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--light-text-color);
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #6c7a89;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

footer a {
    color: var(--light-text-color);
    text-decoration: none;
    margin: 0 10px;
}

/* About Us Section - (Existing, no changes here unless you want to update overall padding/margins) */
.about-section {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.about-section h2 {
    color: var(--light-text-color);
}

.about-content {
    display: flex;
    flex-direction: column; /* Stacks columns by default for mobile-first design */
    gap: 30px;
}

.about-text-column {
    width: 100%; /* Full width on small screens */
    text-align: left; /* Ensure text is left-aligned */
}


/* Slideshow Container */
.slideshow-container {
    position: relative;
    width: 100%;
    /* Maintain aspect ratio - 66.66% for a 600x400 image (400/600 * 100) */
    padding-bottom: 66.66%;
    overflow: hidden;
    border-radius: 8px; /* Optional: adds a nice rounded corner */
    vertical-align: center;
}

.fade-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the container without distortion */
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* Fade transition */
    border-radius: 8px; /* Keep corners consistent */
}

.fade-slide.active {
    opacity: 1;
}

/* Medium to Extra Large Viewports (Existing media query, ensure these rules are within or after it) */

/* Medium to Extra Large Viewports */
@media (min-width: 768px) {
    .about-content {
        flex-direction: row; /* Arranges columns side-by-side */
    }

    .about-text-column {
        width: 60%;
        text-align: left;
    }

    .about-image-column {
        width: 40%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    nav {
        margin-top: 15px;
    }

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

.icon-image {
    width: 70px;
}

.honeypot {
    display: none;
}


/* Pop-up container styles */
.popup-container {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-box {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    text-align: center;
    transition: background-color 0.3s ease;
}

/* Color variations based on success or failure */
.success {
    background-color: #b9e9c8; /* Pastel green */
}

.failure {
    background-color: #f7baba; /* Pastel red */
}

.terms {
    font-family: 'Montserrat', sans-serif;
}

.terms p {
    text-align: left;
    padding-top: 4px;
    padding-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
}

.terms h2 {
    font-size: 1.5em;
    font-weight: bold;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.terms h3 {
    font-size: 1.2em;
    font-weight: bold;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.terms ul {
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    list-style: none;
    margin: 1em;
    padding: 0;

    li {

        padding-left: 1.5em;
        position: relative;

        &:after {
            content: '';
            height: .4em;
            width: .4em;
            background: #D2153A;
            display: block;
            position: absolute;
            transform: rotate(45deg);
            top: .25em;
            left: 0;
        }

    }



}

span.indent {
    padding-left: 1.5em !important;
    padding-right: 1.5em !important;
    display: inline-block !important;
}


p.micro_text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8em;
}

p.border {
    border-top: 1px solid white;
}

p.hidden {
    font-size: 0.2em;
    color: white;
}

span.highlight {
    font-weight: bold;
}