@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Color Scheme - World Heart Day (Navy & Red) */
:root {
    --primary-green: #16225a;
    --primary-green-light: #2d4694;
    --primary-green-dark: #0b1538;
    --gold-accent: #f29774;
    --orange-accent: #f29774;
    --teal-accent: #2d4694;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #eef2fb;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-down {
    animation: fadeInDown 0.6s ease-out forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 0.6s ease-out forwards;
}

/* Header/Navigation */
header {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgb(0 0 0 / 13%);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo i {
    font-size: 1.8rem;
}

.header-phone {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: max-content;
    float: right;
}

.header-phone:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--white);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 193, 7, 0.2);
    color: var(--gold-accent);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--gold-accent);
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.offer-box {
    background: rgba(255, 255, 255, 0.12);
    border-left: 4px solid var(--gold-accent);
    padding: 1.2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    backdrop-filter: blur(10px);
}

.offer-box-item {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 24px;
    line-height: 32px;
}

.offer-box-item:last-child {
    margin-bottom: 0;
}

.offer-box-item i {
    color: var(--gold-accent);
    min-width: 25px;
    margin-top: 7px;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-accent);
    margin: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .price-display {
        font-size: 2rem;
    }
}

/* Booking Form */
.booking-form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.booking-form-card .gform_heading{
    display: none;
}

.booking-form-card .gform_wrapper.gravity-theme .gform-field-label .gform-field-label__text{
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.booking-form-card .gform_wrapper.gravity-theme .gfield input.large, .booking-form-card .gform_wrapper.gravity-theme .gfield select.large{
    width: 100%;
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.booking-form-card .gform_wrapper.gravity-theme .gfield input.large:focus-visible, .booking-form-card .gform_wrapper.gravity-theme .gfield select.large:focus-visible{
    outline: none;
}

.booking-form-card .ginput_container.ginput_container_consent{
    display: flex;
    align-items: self-start;
    gap: 10px;
}

.booking-form-card .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent  .gform-field-label__text{
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
}

.booking-form-card .gform_wrapper.gravity-theme .gform_footer, .booking-form-card .gform_wrapper.gravity-theme .gform_page_footer{
    margin: 20px 0 0;
    padding: 0;
}

.booking-form-card #gform_submit_button_50{
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-bottom: 0px;
}

.booking-form-card #gform_confirmation_message_50 .book-an-appointment-thank-you{
    color: #000;
    margin-bottom: 0px;
    font-size: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control, .form-select {
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(26, 122, 90, 0.1);
}

.form-control::placeholder {
    color: #999;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input {
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
}

.btn-book {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(26, 122, 90, 0.3);
    color: var(--white);
}

.btn-book:active {
    transform: translateY(0);
}

/* Sections */
.section-spacing {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 3rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
}

/* What's Included Cards */
.included-section {
    background: var(--white);
}

.test-card {
    background: var(--white);
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    animation: fadeInUp 0.6s ease-out forwards;
}

.test-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(26, 122, 90, 0.12);
}

.test-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.test-card:hover .test-icon {
    transform: scale(1.1) rotate(5deg);
}

.test-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.test-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Section */
.why-section {
    background: var(--bg-light);
}

.why-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    border-top: 4px solid;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    height: 100%;
}

.why-card:nth-child(1) {
    border-top-color: var(--primary-green);
}

.why-card:nth-child(2) {
    border-top-color: var(--orange-accent);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.why-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.why-title i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.why-card:nth-child(2) .why-title i {
    color: var(--orange-accent);
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list-item {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.why-list-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.why-card:nth-child(2) .why-list-item::before {
    color: var(--orange-accent);
}

/* Plan Your Visit Section */
.visit-section {
    background: var(--white);
}

.visit-card {
    background: var(--white);
    border-radius: 12px;
    border-top: 4px solid;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    height: 100%;
}

.visit-card:nth-child(1) {
    border-top-color: var(--primary-green);
}

.visit-card:nth-child(2) {
    border-top-color: var(--orange-accent);
}

.visit-card:nth-child(3) {
    border-top-color: var(--teal-accent);
}

.visit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.visit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.visit-card:nth-child(1) .visit-icon {
    background: rgba(26, 122, 90, 0.1);
    color: var(--primary-green);
}

.visit-card:nth-child(2) .visit-icon {
    background: rgba(255, 149, 0, 0.1);
    color: var(--orange-accent);
}

.visit-card:nth-child(3) .visit-icon {
    background: rgba(23, 162, 184, 0.1);
    color: var(--teal-accent);
}

.visit-card:hover .visit-icon {
    transform: scale(1.1);
}

.visit-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.visit-details {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid var(--white);
}

.btn-cta-primary {
    background: var(--white);
    color: var(--primary-green);
}

.btn-cta-primary:hover {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    transform: translateY(-2px);
    color: var(--text-dark);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    color: var(--white);
}

/* Contact/Info Section */
.contact-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.info-content p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

.info-content a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.info-content a:hover {
    color: var(--primary-green-dark);
}

/* FAQ Section */
.faq-section {
    background: var(--white);
    padding: 4rem 0;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 1.2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-question:hover {
    background: #efefef;
    border-left-color: var(--primary-green);
    padding-left: 2rem;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
footer {
    background: var(--primary-green-dark);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.95rem;
}

.footer-text {
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    opacity: 0.8;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .price-display {
        font-size: 1.8rem;
    }
    
    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
    
    .booking-form-card {
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Stagger animations */
.test-card:nth-child(1) { animation-delay: 0.1s; }
.test-card:nth-child(2) { animation-delay: 0.2s; }
.test-card:nth-child(3) { animation-delay: 0.3s; }
.test-card:nth-child(4) { animation-delay: 0.4s; }
.test-card:nth-child(5) { animation-delay: 0.5s; }
.test-card:nth-child(6) { animation-delay: 0.6s; }
.test-card:nth-child(7) { animation-delay: 0.7s; }
.test-card:nth-child(8) { animation-delay: 0.8s; }

.why-card:nth-child(1) { animation-delay: 0.1s; }
.why-card:nth-child(2) { animation-delay: 0.3s; }

.visit-card:nth-child(1) { animation-delay: 0.1s; }
.visit-card:nth-child(2) { animation-delay: 0.2s; }
.visit-card:nth-child(3) { animation-delay: 0.3s; }