/* --- Global Styles & Variables --- */
:root {
    --primary-color: #00A79D; /* A sophisticated teal/aqua */
    --secondary-color: #F4F8F7; /* A very light, complementary grey-green */
    --dark-text: #333333;
    --light-text: #FFFFFF;
    --body-font: 'Poppins', sans-serif;
}

body {
    font-family: var(--body-font);
    margin: 0;
    color: var(--dark-text);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    color: var(--primary-color);
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

p {
    margin-bottom: 20px;
}

section {
    padding: 80px 0;
}

/* --- Hero Section --- */
.hero {
    background-color: var(--light-text);
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex-basis: 400px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 50%;
    border: 8px solid var(--secondary-color);
}

.subtitle {
    font-size: 1.2rem;
    margin: 20px 0 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.credibility p {
    font-size: 0.9rem;
    color: #777;
    margin-top: 20px;
}

/* --- Pain Points Section --- */
.pain-points {
    background-color: var(--secondary-color);
}

.pain-points h2 {
    color: var(--primary-color);
}

.pain-points ul {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto 30px;
}

.pain-points li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.check-mark {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 15px;
}

.reassurance {
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
}


/* --- About Section --- */
.about {
    background-color: #fff;
}
.about-container {
    max-width: 800px;
    text-align: center;
}
.about-container h2 {
    margin-bottom: 20px;
}

/* --- Services Section --- */
.services {
    background-color: var(--secondary-color);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

.card h3 {
    margin-top: 0;
    color: var(--primary-color);
}

/* --- Final CTA Section --- */
.final-cta {
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
}

.final-cta h2 {
    color: var(--light-text);
}

.final-cta p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .btn-primary {
    background-color: var(--light-text);
    color: var(--primary-color);
    margin-top: 20px;
}

/* --- Footer --- */
footer {
    background-color: var(--dark-text);
    color: #ccc;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}
footer p {
    margin: 5px 0;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    .hero-image {
        margin-bottom: 30px;
    }
    .cta-buttons {
        justify-content: center;
    }
}

/* FAQ Section Styles */
.faq-question {
    background-color: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9fafb; /* Tailwind gray-50 */
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    padding-left: 1.5rem; /* Equivalent to p-6, but only for left padding */
    padding-right: 1.5rem; /* Equivalent to p-6, but only for right padding */
    padding-bottom: 1.5rem; /* Equivalent to p-6, but only for bottom padding */
    padding-top: 0; /* Override default padding-top from p-6 */
}

/* Request Call Back Pop-up Styles */
#callback-popup {
    transition: opacity 0.3s ease-in-out;
}

#callback-popup.hidden {
    opacity: 0;
    pointer-events: none;
}

#callback-popup:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

/* Styles moved from index.html */
:where([class^="ri-"])::before { content: "\f3c2"; }
body {
    font-family: 'Inter', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
	color: white;
}
.hero-section {
    /* background-image: linear-gradient(to right, rgba(0, 70, 150, 0.95) 45%, rgba(255, 255, 255, 0.7) 60%, rgba(255, 255, 255, 0.2) 100%), url('images/img-couple-banner-landscape.jpg'); */
	/* background-image: linear-gradient(to right, rgba(0, 70, 150, 0.95) 45%, rgba(255, 255, 255, 0.2) 60%, rgba(255, 255, 255, 0) 100%), url('images/img-couple-banner-landscape.jpg'); */
    
	 background-image: 
		/* Red fade from top-right */
		linear-gradient(to bottom right, rgba(25, 41, 94, 0.9) 15%, rgba(215, 25, 25, 0) 30% ),
		/* Blue fade from bottom-right */
		 linear-gradient(to right, rgba(25, 41, 94, 1) 15%, rgba(30, 80, 200, 0) 70%), 
		/* Background image */
		/*url('images/img-couple-banner-landscape.jpg');*/
        url('images/crown-landscape.jpeg');

	background-size: cover;
    background-position: center right;
    position: relative; /* Enables absolute positioning of callback button within hero */
    min-height: 450px; /* Reduced height */
}
.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #1E88E5;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
}
.custom-checkbox:checked {
    background-color: #1E88E5;
}
.custom-checkbox:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.custom-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}
.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}
.switch-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .switch-slider {
    background-color: #1E88E5;
}
input:checked + .switch-slider:before {
    transform: translateX(26px);
}
.testimonial-card {
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}
input:focus, textarea:focus {
    outline: none;
    border-color: #1E88E5;
}

/* Callback button wrapper - adjust here to fine-tune placement */
.callback-btn-wrap {
    position: absolute;
    right: 8rem;   /* move left/right: increase to move further left, decrease for closer to edge */
    bottom: 1.5rem;  /* moved further DOWN (closer to bottom). Increase to move up, decrease to move down */
    padding: 12px; /* padding around the circular image button */
}

/* Optional: responsive tweak for small screens */
@media (max-width: 768px) {
    .callback-btn-wrap {
        right: 1rem;
        bottom: 1rem;
        padding: 8px;
    }
}
