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

:root {

    --primary: #0F4C81;
    --secondary: #00B4D8;
    --light-blue: #EAF6FF;
    --green: #2ECC71;
    --white: #ffffff;
    --dark: #1A1A1A;
    --gray: #6b7280;

}

html{
    scroll-behavior: smooth;
}

body {

    font-family: 'Poppins', sans-serif;
    background: #f8fbff;
    color: var(--dark);
    overflow-x: hidden;

}

.container {

    width: 90%;
    max-width: 1300px;
    margin: auto;

}

.section-padding {

    padding: 100px 0;

}

/* =========================================
HEADER
========================================= */

.header {

    width: 100%;
    position: fixed;

    top: 0;
    left: 0;

    z-index: 1000;

    background: rgba(255,255,255,0.8);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(255,255,255,0.2);

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;

}

/* SCROLLED NAVBAR */

.header.scrolled {

    background: rgba(255,255,255,0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

}

/* HIDE NAVBAR */

.hide-navbar {

    transform: translateY(-100%);

}

.navbar {

    height: 85px;

    display: flex;
    align-items: center;
    justify-content: space-between;

}

.logo h2 {

    color: var(--primary);
    font-size: 42px;
    font-weight: 700;

}

/* NAV MENU */

.nav-links {

    display: flex;
    align-items: center;

    gap: 30px;

    list-style: none;

}

.nav-links a {

    text-decoration: none;

    color: var(--dark);

    font-weight: 500;

    transition: 0.3s ease;

}

.nav-links a:hover {

    color: var(--secondary);

}

/* NAV BUTTONS */

.nav-buttons {

    display: flex;
    align-items: center;

    gap: 15px;

}

.theme-toggle {

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    cursor: pointer;

    background: var(--light-blue);

    transition: 0.3s ease;

}

.theme-toggle:hover {

    transform: rotate(15deg);

}

.menu-toggle {

    display: none;

}

/* =========================================
BUTTONS
========================================= */

.btn-primary {

    background: linear-gradient(135deg, var(--primary), var(--secondary));

    color: white;

    padding: 14px 30px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.4s ease;

    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

}

.btn-primary:hover {

    transform: translateY(-4px);

}

.btn-secondary {

    border: 2px solid var(--secondary);

    color: var(--secondary);

    padding: 14px 30px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;

}

.btn-secondary:hover {

    background: var(--secondary);
    color: white;

}

/* =========================================
HERO SECTION
========================================= */

.hero {

    padding-top: 140px;

    min-height: 100vh;

    display: flex;
    align-items: center;

}

.hero-container {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    align-items: center;

    gap: 60px;

}

.hero-badge {

    background: rgba(0,180,216,0.1);

    color: var(--secondary);

    padding: 10px 20px;

    border-radius: 50px;

    display: inline-block;

    margin-bottom: 25px;

    font-weight: 600;

}

.hero-content h1 {

    font-size: 62px;

    line-height: 1.2;

    margin-bottom: 25px;

}

.hero-content p {

    font-size: 18px;

    color: var(--gray);

    margin-bottom: 35px;

    line-height: 1.8;

}

/* HERO BUTTONS */

.hero-buttons {

    display: flex;

    gap: 20px;

    margin-bottom: 40px;

}

/* HERO FEATURES */

.hero-features {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 20px;

}

.feature-card {

    background: rgba(255,255,255,0.7);

    backdrop-filter: blur(15px);

    border-radius: 20px;

    padding: 20px;

    display: flex;

    gap: 15px;

    align-items: center;

    box-shadow: 0 15px 40px rgba(0,0,0,0.06);

    transition: 0.4s ease;

}

.feature-card:hover {

    transform: translateY(-8px);

}

.feature-card i {

    color: var(--secondary);

    font-size: 22px;

}

.hero-image img {

    width: 100%;

    border-radius: 40px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.1);

    transition: 0.4s ease;

}

.hero-image img:hover {

    transform: scale(1.02);

}

/* =========================================
ABOUT SECTION
========================================= */

.about {

    background: white;

}

.about-container {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 60px;

    align-items: center;

}

.about-image img {

    width: 100%;

    border-radius: 35px;

}

.section-subtitle {

    color: var(--secondary);

    font-weight: 600;

    margin-bottom: 15px;

    display: inline-block;

}

.about-content h2 {

    font-size: 48px;

    margin-bottom: 25px;

}

.about-content p {

    color: var(--gray);

    line-height: 1.8;

    margin-bottom: 40px;

}

/* STATS */

.stats-grid {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 25px;

}

.stat-card {

    background: var(--light-blue);

    padding: 30px;

    border-radius: 25px;

    text-align: center;

    transition: 0.4s ease;

}

.stat-card:hover {

    transform: translateY(-8px);

}

.stat-card h3 {

    font-size: 38px;

    color: var(--primary);

    margin-bottom: 10px;

}

/* =========================================
DARK MODE
========================================= */

.dark-mode {

    background: #0f172a;
    color: white;

}

/* NAVBAR */

.dark-mode .header {

    background: rgba(15,23,42,0.9);

}

.dark-mode .header.scrolled {

    background: rgba(15,23,42,0.95);

}

.dark-mode .nav-links a {

    color: white;

}

/* SECTIONS */

.dark-mode .hero,
.dark-mode .about {

    background: #0f172a;

}

.dark-mode .hero-content p,
.dark-mode .about-content p {

    color: #cbd5e1;

}

/* CARDS */

.dark-mode .feature-card,
.dark-mode .stat-card {

    background: rgba(30,41,59,0.9);

    color: white;

}

/* BUTTONS */

.dark-mode .theme-toggle {

    background: #1e293b;
    color: white;

}

.dark-mode .btn-secondary {

    color: white;
    border-color: white;

}

.dark-mode .btn-secondary:hover {

    background: white;
    color: #0f172a;

}

/* =========================================
SERVICES SECTION
========================================= */

.services {

    background: #f8fbff;

}

/* SECTION HEADER */

.section-header {

    text-align: center;

    max-width: 700px;

    margin: auto auto 70px;

}

.section-header h2 {

    font-size: 48px;

    margin-bottom: 20px;

    line-height: 1.3;

}

.section-header p {

    color: var(--gray);

    line-height: 1.8;

    font-size: 17px;

}

/* SERVICES GRID */

.services-grid {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;

}

/* SERVICE CARD */

.service-card {

    background: rgba(255,255,255,0.8);

    backdrop-filter: blur(15px);

    border-radius: 30px;

    padding: 40px 30px;

    transition: 0.4s ease;

    box-shadow: 0 15px 40px rgba(0,0,0,0.05);

    position: relative;

    overflow: hidden;

}

.service-card::before {

    content: '';

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

}

.service-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 50px rgba(0,0,0,0.08);

}

/* ICON */

.service-icon {

    width: 80px;
    height: 80px;

    border-radius: 20px;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

}

.service-icon i {

    color: white;

    font-size: 32px;

}

/* CONTENT */

.service-card h3 {

    font-size: 28px;

    margin-bottom: 15px;

    line-height: 1.4;

}

.service-card p {

    color: var(--gray);

    line-height: 1.8;

    margin-bottom: 25px;

}

/* LINK */

.service-card a {

    color: var(--secondary);

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;

}

.service-card a:hover {

    letter-spacing: 1px;

}

/* DARK MODE */

.dark-mode .services {

    background: #0f172a;

}

.dark-mode .service-card {

    background: rgba(30,41,59,0.9);

}

.dark-mode .section-header p,
.dark-mode .service-card p {

    color: #cbd5e1;

}

/* =========================================
HEALTH PACKAGES SECTION
========================================= */

.packages {

    background: white;

}

/* GRID */

.packages-grid {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 35px;

}

/* CARD */

.package-card {

    background: rgba(255,255,255,0.9);

    border-radius: 35px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0,0,0,0.06);

    transition: 0.4s ease;

    position: relative;

}

.package-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 60px rgba(0,0,0,0.1);

}

/* FEATURED CARD */

.featured-package {

    border: 2px solid var(--secondary);

    transform: scale(1.03);

}

/* BADGE */

.package-badge {

    position: absolute;

    top: 20px;
    right: 20px;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color: white;

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 600;

    z-index: 10;

}

/* IMAGE */

.package-image img {

    width: 100%;
    height: 240px;

    object-fit: cover;

}

/* CONTENT */

.package-content {

    padding: 35px 30px;

}

.package-content h3 {

    font-size: 30px;

    margin-bottom: 15px;

}

.package-content p {

    color: var(--gray);

    line-height: 1.8;

    margin-bottom: 25px;

}

/* LIST */

.package-content ul {

    margin-bottom: 30px;

}

.package-content ul li {

    list-style: none;

    margin-bottom: 12px;

    color: var(--dark);

    position: relative;

    padding-left: 25px;

}

.package-content ul li::before {

    content: '✓';

    position: absolute;

    left: 0;

    color: var(--green);

    font-weight: bold;

}

/* PRICE */

.package-price {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 30px;

}

.old-price {

    color: #999;

    text-decoration: line-through;

    font-size: 18px;

}

.new-price {

    color: var(--primary);

    font-size: 34px;

    font-weight: 700;

}

/* DARK MODE */

.dark-mode .packages {

    background: #111827;

}

.dark-mode .package-card {

    background: rgba(30,41,59,0.95);

}

.dark-mode .package-content p,
.dark-mode .package-content ul li {

    color: #cbd5e1;

}

/* =========================================
WHY CHOOSE US SECTION
========================================= */

.why-choose {

    background: #f8fbff;

}

/* GRID */

.why-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 30px;

}

/* CARD */

.why-card {

    background: rgba(255,255,255,0.8);

    backdrop-filter: blur(15px);

    border-radius: 30px;

    padding: 40px 30px;

    transition: 0.4s ease;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0,0,0,0.05);

    position: relative;

    overflow: hidden;

}

.why-card::before {

    content: '';

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

}

.why-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 50px rgba(0,0,0,0.08);

}

/* ICON */

.why-icon {

    width: 90px;
    height: 90px;

    border-radius: 25px;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto auto 25px;

}

.why-icon i {

    color: white;

    font-size: 36px;

}

/* CONTENT */

.why-card h3 {

    font-size: 26px;

    margin-bottom: 15px;

}

.why-card p {

    color: var(--gray);

    line-height: 1.8;

}

/* DARK MODE */

.dark-mode .why-choose {

    background: #0f172a;

}

.dark-mode .why-card {

    background: rgba(30,41,59,0.9);

}

.dark-mode .why-card p {

    color: #cbd5e1;

}

/* =========================================
ONLINE REPORT SECTION
========================================= */

.reports {

    background: white;

}

/* CONTAINER */

.reports-container {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 60px;

    align-items: center;

}

/* CONTENT */

.reports-content h2 {

    font-size: 52px;

    margin-bottom: 25px;

    line-height: 1.3;

}

.reports-content p {

    color: var(--gray);

    line-height: 1.8;

    margin-bottom: 40px;

}

/* FEATURES */

.report-features {

    display: flex;

    flex-direction: column;

    gap: 25px;

}

.report-feature {

    display: flex;

    align-items: center;

    gap: 20px;

}

.report-feature i {

    width: 60px;
    height: 60px;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 24px;

}

.report-feature span {

    font-size: 20px;

    font-weight: 600;

}

/* REPORT CARD */

.reports-card {

    background: rgba(255,255,255,0.85);

    backdrop-filter: blur(15px);

    border-radius: 35px;

    padding: 45px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.06);

}

.reports-card h3 {

    font-size: 34px;

    margin-bottom: 35px;

}

/* INPUT */

.report-input {

    margin-bottom: 25px;

}

.report-input label {

    display: block;

    margin-bottom: 12px;

    font-weight: 600;

}

.report-input input {

    width: 100%;

    padding: 18px 20px;

    border-radius: 18px;

    border: 1px solid #ddd;

    font-size: 16px;

    outline: none;

    transition: 0.3s ease;

}

.report-input input:focus {

    border-color: var(--secondary);

}

/* BUTTON */

.report-btn {

    width: 100%;

    border: none;

    cursor: pointer;

    margin-top: 10px;

}

/* STATUS */

.report-status {

    margin-top: 40px;

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.status-card {

    background: var(--light-blue);

    border-radius: 20px;

    padding: 20px;

    display: flex;

    align-items: center;

    gap: 18px;

}

.status-card i {

    width: 55px;
    height: 55px;

    border-radius: 16px;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 22px;

}

.status-card h4 {

    margin-bottom: 5px;

}

.status-card p {

    color: var(--gray);

}

/* DARK MODE */

.dark-mode .reports {

    background: #111827;

}

.dark-mode .reports-content p,
.dark-mode .status-card p {

    color: #cbd5e1;

}

.dark-mode .reports-card {

    background: rgba(30,41,59,0.92);

}

.dark-mode .report-input input {

    background: rgba(15,23,42,0.9);

    border: 1px solid #334155;

    color: white;

}

.dark-mode .status-card {

    background: rgba(15,23,42,0.9);

}

/* =========================================
APPOINTMENT SECTION
========================================= */

.appointment {

    background: #f8fbff;

}

/* CONTAINER */

.appointment-container {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 60px;

    align-items: center;

}

/* IMAGE */

.appointment-image img {

    width: 100%;

    border-radius: 40px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.08);

}

/* CONTENT */

.appointment-form-wrapper h2 {

    font-size: 52px;

    margin-bottom: 20px;

    line-height: 1.3;

}

.appointment-form-wrapper p {

    color: var(--gray);

    line-height: 1.8;

    margin-bottom: 40px;

}

/* FORM */

.appointment-form {

    background: rgba(255,255,255,0.85);

    backdrop-filter: blur(15px);

    padding: 40px;

    border-radius: 35px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.05);

}

/* ROW */

.form-row {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 20px;

}

/* GROUP */

.form-group {

    margin-bottom: 25px;

}

.form-group label {

    display: block;

    margin-bottom: 12px;

    font-weight: 600;

}

/* INPUTS */

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 18px 20px;

    border-radius: 18px;

    border: 1px solid #ddd;

    outline: none;

    font-size: 16px;

    transition: 0.3s ease;

    font-family: inherit;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--secondary);

}

/* CHECKBOX */

.checkbox-group {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 30px;

}

.checkbox-group label {

    font-weight: 500;

}

/* BUTTON */

.appointment-btn {

    width: 100%;

    border: none;

    cursor: pointer;

}

/* DARK MODE */

.dark-mode .appointment {

    background: #0f172a;

}

.dark-mode .appointment-form {

    background: rgba(30,41,59,0.92);

}

.dark-mode .appointment-form-wrapper p {

    color: #cbd5e1;

}

.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {

    background: rgba(15,23,42,0.95);

    border: 1px solid #334155;

    color: white;

}

.dark-mode .checkbox-group label {

    color: white;

}
/* =========================================
HOME COLLECTION SECTION
========================================= */

.home-collection {

    background: white;

}

/* CONTAINER */

.collection-container {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 60px;

    align-items: center;

}

/* CONTENT */

.collection-content h2 {

    font-size: 52px;

    margin-bottom: 25px;

    line-height: 1.3;

}

.collection-content p {

    color: var(--gray);

    line-height: 1.8;

    margin-bottom: 40px;

}

/* FEATURES */

.collection-features {

    display: flex;

    flex-direction: column;

    gap: 30px;

    margin-bottom: 40px;

}

/* FEATURE */

.collection-feature {

    display: flex;

    gap: 20px;

    align-items: flex-start;

}

/* ICON */

.collection-icon {

    width: 70px;
    height: 70px;

    min-width: 70px;

    border-radius: 22px;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    display: flex;
    align-items: center;
    justify-content: center;

}

.collection-icon i {

    color: white;

    font-size: 28px;

}

/* TEXT */

.collection-feature h3 {

    font-size: 24px;

    margin-bottom: 10px;

}

.collection-feature p {

    margin-bottom: 0;

}

/* IMAGE */

.collection-image {

    position: relative;

}

.collection-image img {

    width: 100%;

    border-radius: 40px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.08);

}

/* FLOATING CARD */

.floating-card {

    position: absolute;

    bottom: 30px;
    left: -30px;

    background: rgba(255,255,255,0.92);

    backdrop-filter: blur(15px);

    padding: 22px 28px;

    border-radius: 25px;

    display: flex;

    align-items: center;

    gap: 18px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

}

.floating-card i {

    width: 60px;
    height: 60px;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 24px;

}

.floating-card h4 {

    font-size: 20px;

    margin-bottom: 5px;

}

.floating-card p {

    margin: 0;

    color: var(--gray);

}

/* DARK MODE */

.dark-mode .home-collection {

    background: #111827;

}

.dark-mode .collection-content p,
.dark-mode .floating-card p {

    color: #cbd5e1;

}

.dark-mode .floating-card {

    background: rgba(30,41,59,0.92);

}

/* =========================================
TESTIMONIAL SECTION
========================================= */

.testimonials {

    background: #f8fbff;

}

/* GRID */

.testimonial-grid {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;

}

/* CARD */

.testimonial-card {

    background: rgba(255,255,255,0.85);

    backdrop-filter: blur(15px);

    border-radius: 30px;

    padding: 35px;

    transition: 0.4s ease;

    box-shadow: 0 15px 40px rgba(0,0,0,0.05);

}

.testimonial-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 50px rgba(0,0,0,0.08);

}

/* TOP */

.testimonial-top {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 25px;

}

.testimonial-top img {

    width: 75px;
    height: 75px;

    border-radius: 50%;

    object-fit: cover;

}

.testimonial-top h3 {

    font-size: 22px;

    margin-bottom: 5px;

}

.testimonial-top span {

    color: var(--gray);

}

/* STARS */

.stars {

    display: flex;

    gap: 5px;

    margin-bottom: 20px;

}

.stars i {

    color: #facc15;

    font-size: 18px;

}

/* TEXT */

.testimonial-card p {

    color: var(--gray);

    line-height: 1.9;

}

/* DARK MODE */

.dark-mode .testimonials {

    background: #0f172a;

}

.dark-mode .testimonial-card {

    background: rgba(30,41,59,0.92);

}

.dark-mode .testimonial-card p,
.dark-mode .testimonial-top span {

    color: #cbd5e1;

}

/* =========================================
FAQ SECTION
========================================= */

.faq {

    background: white;

}

/* CONTAINER */

.faq-container {

    max-width: 900px;

    margin: auto;

}

/* ITEM */

.faq-item {

    background: rgba(255,255,255,0.9);

    border-radius: 25px;

    margin-bottom: 25px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0,0,0,0.05);

    transition: 0.3s ease;

}

.faq-item.active {

    box-shadow: 0 20px 50px rgba(0,0,0,0.08);

}

/* QUESTION */

.faq-question {

    padding: 28px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    cursor: pointer;

}

.faq-question h3 {

    font-size: 22px;

    line-height: 1.5;

}

.faq-question i {

    font-size: 20px;

    color: var(--secondary);

    transition: 0.3s ease;

}

/* ANSWER */

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;

}

.faq-answer p {

    padding: 0 30px 30px;

    color: var(--gray);

    line-height: 1.9;

}

/* ACTIVE */

.faq-item.active .faq-answer {

    max-height: 300px;

}

.faq-item.active .faq-question i {

    transform: rotate(45deg);

}

/* DARK MODE */

.dark-mode .faq {

    background: #111827;

}

.dark-mode .faq-item {

    background: rgba(30,41,59,0.92);

}

.dark-mode .faq-answer p {

    color: #cbd5e1;

}

/* =========================================
CONTACT SECTION
========================================= */

.contact {

    background: #f8fbff;

}

/* CONTAINER */

.contact-container {

    max-width: 900px;

    margin: auto;

}

/* INFO */

.contact-info {

    display: flex;

    flex-direction: column;

    gap: 25px;

}

/* CARD */

.contact-card {

    background: rgba(255,255,255,0.85);

    backdrop-filter: blur(15px);

    border-radius: 30px;

    padding: 35px;

    display: flex;

    align-items: center;

    gap: 25px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.05);

    transition: 0.4s ease;

}

.contact-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 50px rgba(0,0,0,0.08);

}

/* ICON */

.contact-card i {

    width: 80px;
    height: 80px;

    min-width: 80px;

    border-radius: 24px;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 32px;

}

/* CONTENT */

.contact-card h3 {

    font-size: 30px;

    margin-bottom: 10px;

}

.contact-card p {

    color: var(--gray);

    line-height: 1.8;

    font-size: 18px;

}

/* DARK MODE */

.dark-mode .contact {

    background: #111827;

}

.dark-mode .contact-card {

    background: rgba(30,41,59,0.92);

}

.dark-mode .contact-card p {

    color: #cbd5e1;

}

/* =========================================
FOOTER
========================================= */

.footer {

    background: #0f172a;

    color: white;

    padding-top: 100px;

    position: relative;

    overflow: hidden;

}

/* TOP */

.footer-top {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.3fr;

    gap: 50px;

    padding-bottom: 70px;

    border-bottom: 1px solid rgba(255,255,255,0.08);

}

/* ABOUT */

.footer-about h2 {

    font-size: 42px;

    margin-bottom: 25px;

}

.footer-about p {

    color: #cbd5e1;

    line-height: 1.9;

    margin-bottom: 30px;

}

/* SOCIAL */

.social-links {

    display: flex;

    gap: 15px;

}

.social-links a {

    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    text-decoration: none;

    transition: 0.4s ease;

}

.social-links a:hover {

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    transform: translateY(-6px);

}

/* LINKS */

.footer-links h3,
.footer-contact h3 {

    font-size: 28px;

    margin-bottom: 28px;

}

.footer-links ul {

    list-style: none;

}

.footer-links ul li {

    margin-bottom: 16px;

}

.footer-links ul li a {

    color: #cbd5e1;

    text-decoration: none;

    transition: 0.3s ease;

}

.footer-links ul li a:hover {

    color: white;

    padding-left: 6px;

}

/* CONTACT */

.footer-contact-item {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 22px;

}

.footer-contact-item i {

    width: 45px;
    height: 45px;

    border-radius: 14px;

    background: rgba(255,255,255,0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--secondary);

}

/* NEWSLETTER */

.footer-newsletter {

    margin-top: 60px;

    background: rgba(255,255,255,0.05);

    border-radius: 35px;

    padding: 40px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

}

.footer-newsletter h3 {

    font-size: 34px;

    margin-bottom: 10px;

}

.footer-newsletter p {

    color: #cbd5e1;

}

/* FORM */

.footer-newsletter form {

    display: flex;

    gap: 15px;

    flex: 1;

    max-width: 500px;

}

.footer-newsletter input {

    flex: 1;

    padding: 18px 20px;

    border: none;

    outline: none;

    border-radius: 18px;

    font-size: 16px;

}

.footer-newsletter button {

    padding: 18px 30px;

    border: none;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color: white;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;

}

.footer-newsletter button:hover {

    transform: translateY(-3px);

}

/* BOTTOM */

.footer-bottom {

    text-align: center;

    padding: 35px 0;

}

.footer-bottom p {

    color: #94a3b8;

}