/* Import Google Font */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f9fbfc;
    color: #333;
    scroll-behavior: smooth;
}

/* Color Palette */
:root {
    --primary-color: #35abf7;       /* Teal/Green */
    --secondary-color: #005782;     /* Dark Blue/Gray */
    --accent-color: #188af4;        /* Deep Teal */
    --light-color: #ecf0f1;         /* Light Gray */
    --dark-color: #023a56;          /* Navy Gray */
    --danger-color: #f69125;        /* Red */
    --white: #fff;
}

/* Reset */
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* Header */
.header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

/* Logo */
.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo i {
    font-size: 1.5rem;
}

/* Menu */
.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color);
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color);
}

/* Buttons */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.6rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--light-color);
    color: var(--dark-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hamburger for mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .nav-buttons {
        gap: 0.5rem;
    }
}

/* Animation */
.nav-link::after {
    content: "";
    display: block;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/********Hero and About************/

/* Hero Section */
.hero {
    position: relative;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f0fdf9 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1 1 500px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    min-width: 120px;
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.95rem;
    color: #555;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary.large,
.btn-outline.large {
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
    border-radius: 6px;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.hero-image {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Background decorative circles */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background-color: var(--primary-color);
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -5%;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: -5%;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 10%;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.about-text {
    flex: 1 1 500px;
}

.section-header {
    margin-bottom: 1rem;
}

.section-tag {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0.5rem 0;
}

.about-description {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #444;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* About Visual Cards */
.about-visual {
    flex: 1 1 400px;
    position: relative;
}

.about-image-container {
    position: relative;
    padding: 1rem;
}

.about-card {
    background-color: #fff;
    border: 2px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.progress-bar {
    height: 10px;
    background-color: #e0f7f4;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress {
    height: 100%;
    background-color: var(--primary-color);
    transition: width 1s ease-in-out;
}

.progress-text {
    font-size: 0.9rem;
    color: #444;
    font-weight: 500;
}

.floating-elements {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
}

.floating-card {
    background: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content,
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-text,
    .about-visual {
        text-align: center;
    }

    .floating-elements {
        position: static;
        margin-top: 1rem;
    }
}

/************Services*************/

/* Services Section */
.services {
    padding: 5rem 2rem;
    background-color: #f8fdfc;
}

.section-header.center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-description {
    color: #555;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Service Card */
.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 6px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Icon */
.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Titles */
.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.service-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Features List */
.service-features {
    margin: 0 0 1.5rem 0;
    padding-left: 1rem;
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 0.5rem;
}

.service-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Button */
.service-btn {
    align-self: flex-start;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-btn:hover {
    background-color: var(--accent-color);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-btn {
        align-self: center;
    }
}

/**************Why Choose Us***************/

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.why-choose-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
}

.why-choose-text {
    flex: 1 1 500px;
}

.section-description {
    margin: 1rem 0 2rem;
    color: #555;
    line-height: 1.6;
    font-size: 1.05rem;
}

.why-choose-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.why-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.why-content h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.why-content p {
    margin: 0.25rem 0 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Visual Stats */
.why-choose-visual {
    flex: 1 1 450px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background-color: #f0fdf9;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-content {
        flex-direction: column;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

/**************Healthcare Plan****************/

/* Healthcare Plans Section */
.healthcare-plans {
    padding: 5rem 2rem;
    background-color: #f9fdfc;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Plan Card */
.plan-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--primary-color);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--dark-color);
}

.plan-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.2rem;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.plan-price .currency {
    font-size: 1.2rem;
}

.plan-price .period {
    font-size: 0.9rem;
    color: #666;
}

.plan-description {
    font-size: 0.95rem;
    color: #555;
    margin-top: 0.5rem;
}

/* Features */
.plan-features {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: #444;
}

.feature-item i.fa-check {
    color: var(--primary-color);
}

.feature-item i.fa-times {
    color: #ccc;
}

/* Buttons */
.plan-btn {
    margin-top: auto;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1rem;
}

.plan-btn:hover {
    background-color: var(--accent-color);
}

/* Most Popular Badge */
.popular {
    border-top-color: #ff9800;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff9800;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .plan-header {
        text-align: left;
    }
    .plans-grid {
        grid-template-columns: 1fr;
    }
}


.plan-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.plan-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/**************Testimonial**************/

/* Testimonials Section */
.testimonials {
    background-color: #f3f6f9;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
}

.testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s ease;
    background-color: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    display: none;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card.active {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.testimonial-content {
    text-align: left;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.rating {
    color: #fbbf24; /* gold stars */
    font-size: 1rem;
}

/* Author Info */
.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.author-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    margin-left: 1rem;
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

/* Navigation */
.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.5rem;
    gap: 1.5rem;
}

.nav-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1rem;
}

.nav-btn:hover {
    background-color: var(--accent-color);
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-text {
        font-size: 1rem;
    }

    .author-name {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}


/*********Contact************/

.contact-appointment {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.contact-info, .appointment-form {
    flex: 1 1 45%;
}

.contact-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.contact-text h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.contact-text p {
    margin: 0.3rem 0 0;
    color: #555;
}

.appointment-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: var(--accent-color);
}

.confirmation-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border: 1px solid var(--primary-color);
    background-color: #e6fffa;
    color: #065f46;
    border-radius: 6px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
}

/* Footer Styles */
.site-footer {
  background-color: var(--dark-color);
  color: #fff;
  padding: 2.5rem 1rem;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand i {
  font-size: 1.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-legal {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-btn {
  background: transparent;
  color: #eee;
  border: 1px solid #eee;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.footer-btn:hover {
  background: #fff;
  color: var(--dark-color);
}

.footer-copy {
  width: 100%;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #ccc;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

/* Modal Base */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 500px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1001;
}

.modal.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

/* Modal Header & Close */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #eee;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--dark-color);
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--dark-color);
}

/* Modal Body */
.modal-body {
  padding: 50px;
  max-height: 70vh;
  overflow-y: auto;
}

.modal-body p {
  color: #444;
  line-height: 1.6;
  margin: 0;
}

/* Form inside modal */
.modal-body form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-body .form-group {
  display: flex;
  flex-direction: column;
}

.modal-body .form-group label {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
  color: #333;
}

.modal-body .form-group input,
.modal-body .form-group textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

.modal-body .form-group.form-checkbox {
  flex-direction: row;
  align-items: center;
}

.modal-body .form-group.form-checkbox input[type="checkbox"] {
  margin-right: 0.5rem;
}

.modal-confirmation {
  margin-top: 1rem;
  padding: 1rem;
  background: #e6fffa;
  border: 1px solid var(--primary-color);
  color: #065f46;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
}

/* Responsive for modals & footer */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-legal {
    justify-content: center;
  }
}
