﻿/*
Theme Name: Takaful Emarat Complete Design
Author: Antigravity
Description: 100% Complete Landing Page Theme for Takaful Emarat
Version: 1.4.0
Text Domain: te-complete
*/

/* Foundational CSS and Tokens */
:root {
    --primary: #9C1F75;
    --primary-dark: #7A175B;
    --primary-gradient: linear-gradient(90deg, #E62272 0%, #9C1F75 100%);
    --bg-light: #F0F6FA;
    --bg-white: #FFFFFF;
    --text-main: #1D1D1F;
    --text-muted: #6E6E73;
    --border-color: #E5E5EA;
    --font-stack: 'Outfit', sans-serif;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(156, 31, 117, 0.15);
    --border-radius-lg: 24px;
    --border-radius-xl: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-stack);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.primary-color {
    color: var(--primary);
}

h1,
h2,
h3,
h4 {
    color: var(--text-main);
    line-height: 1.2;
    font-weight: 600;
}

p {
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    border: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-small {
    padding: 10px 24px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
    padding: 16px;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

/* Header Navbar */
.navbar {
    padding: 24px 0;
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h2 {
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--primary);
    line-height: 1;
    text-transform: lowercase;
}

.logo h2 span {
    font-weight: 600;
}

.logo-white h2 {
    color: white;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    color: var(--primary);
    font-weight: 400;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-cta .btn-primary {
    background: var(--primary-gradient);
    box-shadow: 0 4px 14px rgba(230, 34, 114, 0.3);
    border: none;
}

.header-logo {
    height: 48px;
    object-fit: contain;
}

.nav-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-cta .header-contact {
    font-size: 20px;
    gap: 8px;
}

.nav-cta .header-contact .phone-icon {
    width: 36px;
    height: 36px;
}

.nav-cta .header-contact .phone-icon svg {
    width: 18px;
    height: 18px;
}

.nav-cta .header-wa {
    padding: 10px 24px 10px 28px;
    gap: 10px;
    font-size: 14px;
}

.nav-cta .header-wa .wa-icon {
    width: 24px;
    height: 24px;
}

.nav-cta .header-wa .wa-icon svg {
    width: 50px;
    height: 25px;
}

/* Hero Section */
.hero-wrapper {
    margin-top: 10px;
    margin-bottom: 80px;
    position: relative;
}

.hero-image-box {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%), linear-gradient(to top, #9C1F75 -10%, rgba(0, 0, 0, 0.1) 40%), url('assets/hero_img.png') center/cover no-repeat;
    border-radius: 30px;
    padding: 60px 80px 160px;
    /* Vertically center content */
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden;
    min-height: 800px;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content .highlight {
    color: var(--primary);
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
    line-height: 1.4;
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    top: 60px;
    right: 60px;
    background: white;
    padding: 12px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow-md);
    z-index: 2;
    /*transform: rotate(3deg);*/
}

.badge-img {
    width: 200px;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
}

.badge-text {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.badge-icon {
    background: var(--primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Overlapping Form */
.hero-form-box {
    background-color: #E2F2FF;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    padding: 60px;
    margin: -100px 40px 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 -15px 40px rgba(156, 31, 117, 0.15);
    /* primary color shadow bottom to top */
    display: flex;
    align-items: center;
    gap: 32px;
}

.form-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background-color: rgba(154, 22, 106, 0.05);
    /* very soft pink */
    border-radius: 50%;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote-form .btn-primary {
    background: var(--primary-gradient);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(230, 34, 114, 0.3);
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row>* {
    flex: 1;
}

/* Contact Form 7 Compatibility Fixes */
.wpcf7-form-control-wrap {
    display: block;
    flex: 1;
}

.form-row br {
    display: none;
}

.quote-form p {
    margin: 0;
    display: contents;
    /* Allows flex children of P to be treated as children of form-row */
}

.wpcf7-spinner {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.form-input {
    flex: 1;
    padding: 18px 20px;
    border: 1px solid #D1D1D6;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    color: var(--text-main);
    background: #F8F9FA;
    outline: none;
    transition: all 0.2s ease;
    width: 100%;
}

.form-input:focus {
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(156, 31, 117, 0.1);
}

.select-wrapper {
    flex: 1;
    position: relative;
}

.select-wrapper::after {
    content: "â–¼";
    font-size: 12px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
}

select.form-input {
    appearance: none;
    cursor: pointer;
}

.form-disclaimer {
    font-size: 12px;
    /*text-align: center;*/
    color: var(--text-muted);
    margin-top: 16px;
}

.form-disclaimer strong {
    color: var(--text-main);
}


.section-title {
    font-size: 48px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    max-width: 750px;
    margin: 0 auto 60px;
}

/* Offer Section */
.offer-section {
    padding: 100px 0;
    background-color: #fff;
}

.offer-card {
    display: flex;
    background: #F9F9FB;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 50px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    margin: 0 auto;
}

.offer-left {
    flex: 1;
    background: linear-gradient(135deg, #E62272 0%, #9C1F75 100%);
    padding: 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-left h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
}

.offer-left p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.offer-right {
    flex: 1.2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FDFBFF;
}

.offer-right h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 600;
}

.timer-container {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.timer-box {
    background: #EBE8F0;
    width: 70px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.timer-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: capitalize;
}

.offer-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 400px;
}

.btn-offer-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 18px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-offer-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 34, 114, 0.2);
}

.btn-offer-secondary {
    background: #EBE8F0;
    color: var(--primary);
    padding: 18px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-offer-secondary:hover {
    background: #E2DFE8;
}

@media (max-width: 992px) {
    .offer-card {
        flex-direction: column;
        margin: 0 20px;
    }

    .offer-left,
    .offer-right {
        padding: 40px 30px;
    }

    .offer-left h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .timer-container {
        gap: 8px;
    }

    .timer-box {
        width: 60px;
        height: 70px;
        font-size: 24px;
    }
}


/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    /* Subtle cream gradient background *matching image */
    background: linear-gradient(180deg, #FDFCF8 0%, #F5F7F8 100%);
}

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

.comparison-section .section-title {
    font-weight: 800;
    /* Bolder as per image */
    font-size: 42px;
    margin-bottom: 16px;
    color: #000;
}

.comparison-section .section-subtitle {
    color: #793482 !important;
    /* Specific purple for subtitle */
    font-weight: 400 !important;
    font-size: 16px;
    margin-bottom: 60px;
    line-height: 1.5;
}

.table-wrapper {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    /* Wrapper handles border-radius */
}

.comparison-table th,
.comparison-table td {
    padding: 24px 30px;
    text-align: left;
    border-bottom: 1px solid #EAE3ED;
    font-size: 15px;
    color: #4A1E53;
    /* Text color is dark purple */
}

.comparison-table th {
    background: #EBE4F0;
    color: #6C2B7A;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table th.col-highlight {
    background: #DECDE8;
    color: #8A1E65;
    border-left: 4px solid #8A1E65;
    /* Thick purple line on header */
}

/* Base column styles */
.comparison-table .col-label {
    width: 25%;
    font-weight: 500;
}

.comparison-table .col-highlight {
    width: 35%;
    border-left: 1px solid #EAE3ED;
    border-right: 1px solid #EAE3ED;
}

.comparison-table .col-other {
    width: 40%;
    color: #795B82;
    /* slightly faded */
}

/* Striped Rows */
.comparison-table tbody tr:nth-child(odd) td {
    background-color: #FAF5FB;
}

.comparison-table tbody tr:nth-child(odd) td.col-highlight {
    background-color: #F0E6F3;
}

.comparison-table tbody tr:nth-child(even) td {
    background-color: #FFFFFF;
}

.comparison-table tbody tr:nth-child(even) td.col-highlight {
    background-color: #F8F1FA;
}

/* Remove bottom border on last row before footer */
.comparison-table tbody tr:last-child td {
    border-bottom: 1px solid #EAE3ED;
}

/* Icons */
.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1.5px solid #28A745;
    color: #28A745;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 12px;
}

.cross-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1.5px solid #DC3545;
    color: #DC3545;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 10px;
}

/* Footer & Button */
.comparison-table .comparison-footer {
    padding: 30px;
    text-align: center;
    background: #EBE4F0;
}

.btn-choose-plan {
    background: #8A1E65;
    color: white;
    padding: 16px 80px;
    border-radius: 8px;
    /* Slightly squarer than main buttons */
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-choose-plan:hover {
    background: #6D164F;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(138, 30, 101, 0.3);
}

@media (max-width: 992px) {
    .table-wrapper {
        overflow-x: auto;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 16px;
        min-width: 150px;
    }

    .comparison-table .col-label {
        min-width: 180px;
    }

    .comparison-table .col-highlight {
        min-width: 250px;
    }

    .comparison-table .col-other {
        min-width: 250px;
    }
}

/* Trusted By Thousands / Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #EEF4F8;
    /* Light blue/gray background */
    overflow: hidden;
}

.testimonials-section .section-title {
    color: var(--primary);
    /* Deep purple */
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 16px;
}

.testimonials-section .section-subtitle {
    color: #5A6A75;
    /* Slate gray */
    font-weight: 400;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

.testimonials-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 20px 0 40px 0;
}

.testimonial-card {
    background: #ffffff;
    /* Distinct card shape: rounded corners except for heavily rounded bottom-right */
    border-radius: 20px 20px 20px 50px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    flex: 1 1 220px;
    max-width: 450px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    font-size: 15px;
    color: #212529;
    /* Black/Dark Gray */
    margin: 0 0 4px 0;
}

.testimonial-time {
    font-size: 13px;
    color: #8C98A4;
    /* Muted gray */
    margin: 0;
}

.testimonial-stars {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4A5568;
    flex-grow: 1;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    color: #8C98A4;
}

.testimonial-footer span {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: color 0.2s;
}

.testimonial-footer span:hover {
    color: var(--primary);
}

.testimonial-footer svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Bottom Form Section */
.bottom-form-section {
    background: linear-gradient(to bottom, #FAFCFD, #f9f6ee);
    padding: 80px 0;
}

.badge-text-small {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: inline-block;
}

.bottom-form-text h2 {
    font-size: 48px;
    margin-bottom: 8px;
}

.bottom-form-text p {
    font-size: 20px;
    margin-bottom: 40px;
}

.bottom-form-box {
    background-color: #E2F2FF;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Contact Header (Confused About Plans) */
.confused-header .section-subtitle {
    color: #1a1a1a !important;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}

.contact-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background-color: var(--primary);
    color: white;
    padding: 12px 24px 12px 32px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(154, 22, 106, 0.2);
    color: white;
}

.wa-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    /*border: 2px solid white;*/
    border-radius: 50%;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.contact-phone:hover {
    opacity: 0.8;
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    border-radius: 50%;
}

/* Licensed By Section */
.licensed-by-section {
    padding: 80px 24px;
    background-color: #EBF3F8;
    /* Light blue matching the provided image */
    text-align: center;
}

.licensed-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logos-flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    /* Assures mobile wrapping */
    margin-bottom: 50px;
}

.logo-item {
    display: flex;
    align-items: center;
}

.logo-item img {
    height: 70px;
    /* General height for logos */
    object-fit: contain;
}

/* Specific separator matching the design */
.logo-separator {
    width: 1px;
    height: 80px;
    background-color: #A0B0C0;
    /* Muted gray line */
    margin: 0 10px;
}

.shariah-compliant {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .logos-flex-container {
        gap: 30px;
    }

    .logo-item img {
        height: 50px;
    }

    .logo-separator {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .logos-flex-container {
        flex-direction: column;
        gap: 40px;
    }

    .logo-separator {
        display: none;
        /* Hide vertical separator on small screens */
    }
}

/* Footer */
.footer {
    background: #8A1E65;
    /* Dark magenta */
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: end;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-links a {
    color: white;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.footer-right h3 {
    color: white;
    font-size: 24px;
    font-weight: 400;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    padding-top: 20px;
}

.footer-bottom p {
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-content h1 {
        font-size: 36px;
    }

    .floating-badge {
        display: none;
        /* Hide floating badge on smaller screens */
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }

    .nav-links {
        display: none;
    }

    .header-logo {
        height: 36px;
    }

    .nav-cta {
        gap: 8px;
    }

    .nav-cta .phone-text,
    .nav-cta .btn-text {
        display: none;
    }

    .nav-cta .header-contact .phone-icon {
        width: 40px;
        height: 40px;
    }

    .nav-cta .header-wa {
        padding: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        gap: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image-box {
        padding: 60px 40px 120px;
        align-items: flex-start;
        /* Revert to top alignment on smaller screens */
        min-height: 600px;
        background-position: 60% center;
    }

    .form-row {
        flex-direction: column;
    }

    .container {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .hero-form-box {
        margin: -40px 0 0;
        padding: 30px 16px;
        border-radius: 40px;
        flex-direction: column;
    }

    .bottom-form-box {
        flex-direction: column;
    }

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

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


    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
}

/* Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 31, 117, 0.3);
}

.scroll-top-btn:active {
    transform: translateY(-2px);
}

/* Thank You Page Styles */
.thank-you-page {
    background-color: var(--bg-light);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.thank-you-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow-md);
}

.success-icon {
    color: var(--primary);
    margin-bottom: 24px;
    animation: scale-up 0.5s ease-out;
}

.thank-you-card h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--primary);
}

.thank-you-card p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.thank-you-actions {
    margin-bottom: 40px;
}

.thank-you-contact {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.thank-you-contact p {
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-link {
    font-weight: 600;
    color: var(--primary);
    font-size: 16px;
}

@keyframes scale-up {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .thank-you-card {
        padding: 40px 24px;
    }
    
    .thank-you-card h1 {
        font-size: 32px;
    }
}