/* Global Styles */
:root {
    --primary-color: #024b80;
    --primary-dark: #01375e;
    --secondary-color: #202729;
    --accent-color: #2a8bf2;
    --accent-light: rgba(42, 139, 242, 0.1);
    --text-dark: #202729;
    --text-light: #5a646c;
    --bg-light: #f6f8fa;
    --bg-card: #ffffff;
    --white: #ffffff;
    --max-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
}

/* Section Common Styling */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.sub-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.header-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.header-line-left {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 0 20px 0;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(2, 75, 128, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 75, 128, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar .container {
    max-width: 100%;
    padding: 0 50px;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.logo img {
    height: 38px;
    width: auto;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a:not(.btn-primary) {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:not(.btn-primary):hover {
    color: var(--accent-color);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    padding: 140px 0 100px;
    background-color: var(--secondary-color);
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(42, 139, 242, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(2, 75, 128, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-badge i {
    color: var(--accent-color);
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero h1 span {
    background: linear-gradient(135deg, #a5d3ff 0%, #2a8bf2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-btns {
    margin-bottom: 40px;
}

.hero-trust {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.hero-trust span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.trust-icons {
    display: flex;
    gap: 30px;
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-icons div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-icons i {
    color: var(--accent-color);
}

/* Hero Image Stack */
.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-image-card {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-main-img {
    border-radius: 24px;
    width: 100%;
    height: 480px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
}

.badge-top {
    top: 40px;
    left: -30px;
}

.badge-bottom {
    bottom: 40px;
    right: -30px;
}

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

.floating-badge h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.floating-badge p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* Trust Bar / Partners */
.trust-bar {
    background-color: var(--bg-light);
    border-bottom: 1px solid rgba(32, 39, 41, 0.06);
    padding: 30px 0;
}

.trust-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-bar p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-logos {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.partner-logos span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    opacity: 0.55;
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner-logos i {
    color: var(--primary-color);
}

/* Services Grid & Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(32, 39, 41, 0.05);
    box-shadow: 0 10px 30px -10px rgba(32, 39, 41, 0.06);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -15px rgba(2, 75, 128, 0.12);
    border-color: rgba(42, 139, 242, 0.25);
}

.card-image {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.card-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.card-features {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-features li {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-features li i {
    color: var(--accent-color);
    font-size: 1rem;
}

.card-link {
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link:hover {
    gap: 12px;
}

/* Conditions Section */
.conditions {
    background-color: #f0f4f8;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.condition-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid rgba(32, 39, 41, 0.05);
    box-shadow: 0 10px 30px -10px rgba(32, 39, 41, 0.04);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.condition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(2, 75, 128, 0.1);
    border-color: rgba(42, 139, 242, 0.2);
}

.condition-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    height: 60px;
    width: 60px;
    background: var(--accent-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.condition-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.condition-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.condition-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.condition-list li {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding-left: 15px;
}

.condition-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
    line-height: 1;
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text .section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.features-list li i {
    font-size: 1.4rem;
    color: var(--accent-color);
    background: var(--accent-light);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.features-list li h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.features-list li p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* About Image Wrapper */
.about-image-wrapper {
    position: relative;
    width: 100%;
}

.about-image {
    position: relative;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.about-image img {
    border-radius: 24px;
    border: 2px solid rgba(32, 39, 41, 0.05);
    width: 100%;
    height: 520px;
    object-fit: cover;
}

/* Decorative dot overlay */
.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    width: 120px;
    height: 120px;
    background: radial-gradient(var(--accent-color) 20%, transparent 20%);
    background-size: 12px 12px;
    opacity: 0.25;
    z-index: 1;
}

/* Decorative blur background glow */
.about-glow {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 250px;
    height: 250px;
    background-color: var(--accent-light);
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
}

/* FAQ Section */
.faq {
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(32, 39, 41, 0.03);
    transition: var(--transition);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 15px;
}

.faq-toggle {
    font-size: 1.1rem;
    color: var(--accent-color);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
    padding: 0 30px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-bottom: 24px;
}

/* Active FAQ styling */
.faq-item.active {
    background-color: var(--white);
    border-color: rgba(42, 139, 242, 0.25);
    box-shadow: 0 10px 25px -10px rgba(2, 75, 128, 0.08);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust according to contents size */
    padding: 0 30px 10px;
}

/* Contact Section & Form */
.contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(42, 139, 242, 0.15) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
}

.white-text h2,
.white-text p {
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: stretch;
}

.contact-sidebar {
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 55px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.contact-sidebar h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.contact-info-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(42, 139, 242, 0.3);
    transform: translateX(5px);
}

.info-card .icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card .icon-box i {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.card-details span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.card-details a,
.card-details p {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.card-details a:hover {
    color: var(--accent-color);
}

.contact-socials {
    display: flex;
    gap: 15px;
    margin-top: auto;
    padding-top: 10px;
}

.contact-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.contact-socials a:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 139, 242, 0.3);
}

/* Glassmorphic Contact Form */
.contact-form-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 55px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    color: var(--white);
}

.contact-form-glass h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 30px;
}

/* Base form field styling */
.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.optional-tag {
    font-weight: 400;
    opacity: 0.6;
    font-size: 0.85em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.field-error {
    display: block;
    min-height: 18px;
    margin-top: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #ff8a8a;
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #e63946;
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.15);
}

/* Honeypot field - hidden from real users, left for bots to fill */
.form-honey {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    margin: 0;
}

.contact-form-glass .form-group label {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-glass .form-group input,
.contact-form-glass .form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.contact-form-glass .form-group input::placeholder,
.contact-form-glass .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact-form-glass .form-group input:focus,
.contact-form-glass .form-group textarea:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(42, 139, 242, 0.2);
    outline: none;
}

.contact-form-glass .btn-primary {
    margin-top: 10px;
}

.contact-form-glass .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.65);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand .logo span {
    color: #a5d3ff;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 350px;
}

.footer-brand-logo {
    height: 34px;
    width: auto;
}

footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

footer ul a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

footer ul a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 0;
    text-align: center;
}

.disclaimer {
    font-size: 0.8rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 20px;
    color: rgba(255, 255, 255, 0.4);
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.hidden-modal {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 440px;
    width: 90%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hidden-modal .modal-content {
    transform: scale(0.85);
}

.modal-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.modal-success .modal-icon {
    color: #2ec4b6;
}

.modal-error .modal-icon {
    color: #e63946;
}

.modal-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-main-img {
        height: 380px;
    }

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

    .about-image img {
        height: 400px;
    }

    .about-image-wrapper {
        max-width: 550px;
        margin: 0 auto;
    }

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

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

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

    .section-header h2 {
        font-size: 2rem;
    }

    .navbar .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 30px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        gap: 25px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .nav-links .btn-primary {
        margin: 0;
        width: 80%;
    }

    .btn-secondary {
        margin: 15px 0 0 0;
        display: block;
        width: 100%;
    }
    
    .hero-btns .btn-primary {
        display: block;
        width: 100%;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .floating-badge {
        padding: 10px 15px;
        gap: 10px;
    }

    .badge-top {
        left: -15px;
        top: 20px;
    }

    .badge-bottom {
        right: -15px;
        bottom: 20px;
    }

    .trust-container {
        flex-direction: column;
        text-align: center;
    }

    .partner-logos {
        justify-content: center;
    }

    .services-grid,
    .conditions-grid {
        grid-template-columns: 1fr;
    }

    .card-content {
        padding: 28px;
    }

    .condition-card {
        padding: 32px 25px;
    }

    .about-image img {
        height: 320px;
    }

    .features-list {
        gap: 22px;
    }

    .contact-sidebar,
    .contact-form-glass {
        padding: 35px 25px;
    }

    .contact-form-glass h3,
    .contact-sidebar h3 {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo img {
        height: 30px;
    }

    .hero {
        padding: 110px 0 60px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-secondary {
        width: 100%;
        margin-left: 0;
    }

    .trust-icons {
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    .hero-main-img {
        height: 260px;
    }

    /* Floating badges become a simple stacked row instead of overlapping the image */
    .hero-image-card {
        overflow: hidden;
    }

    .floating-badge {
        position: static;
        width: 100%;
        margin-top: 12px;
        justify-content: center;
    }

    .card-content {
        padding: 22px;
    }

    .card-content h3 {
        font-size: 1.25rem;
    }

    .condition-card {
        padding: 28px 20px;
    }

    .about-image img {
        height: 260px;
    }

    .features-list li i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .contact-sidebar,
    .contact-form-glass {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .info-card {
        padding: 16px 18px;
        gap: 14px;
    }

    .card-details a,
    .card-details p {
        font-size: 0.95rem;
    }

    .faq-question {
        padding: 16px;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .disclaimer {
        font-size: 0.75rem;
    }
}