/* :root {
    --primary-color: #00D1C1;
    --background-dark: #0D1A24;
    --accent-violet: #915EFF;
    --accent-gray: #1E1E1E;
    --neutral-white: #F5F8FA;
    --text-light: #B8BCC8;
    --gradient-primary: linear-gradient(135deg, #00D1C1 0%, #915EFF 100%);
    --gradient-dark: linear-gradient(135deg, #0D1A24 0%, #1E1E1E 100%);

    --card-border: rgba(255, 255, 255, 0.1);

    Fonts and Responsive Font Sizing
    --font-size-base: clamp(1rem, 1vw + 0.7rem, 1.1rem);
    --font-size-lg: clamp(1.8rem, 3.5vw + 0.9rem, 3rem);
    --font-size-xl: clamp(1.5rem, 3vw + 0.8rem, 2.5rem);
    --font-size-md: clamp(1.1rem, 1.8vw + 0.7rem, 1.8rem);
    --font-size-sm: clamp(0.85rem, 1vw + 0.5rem, 1rem);
    --font-size-xs: clamp(0.75rem, 0.8vw + 0.4rem, 0.9rem);

    --font-family: 'Space Grotesk', sans-serif;
    --font-family-heading: 'Orbitron', monospace;

} */

/* *,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
} */

/* body {
    font-family: var(--font-family);
    background-color: var(--background-dark);
    color: var(--neutral-white);
    line-height: 1.6;
    font-size: var(--font-size-base);
    overflow-x: hidden;
} */

/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: hidden;
} */

/* option {
    color: var(--accent-gray);
} */



/* Global Styles */
/* a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-violet);
} */

/* h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: var(--font-size-xl);
    font-weight: 900;
}

h2 {
    font-size: var(--font-size-lg);
    font-weight: 800;
}

h3 {
    font-size: var(--font-size-md);
    font-weight: 700;
}

h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
}

h5 {
    font-size: var(--font-size-sm);
    font-weight: 500;
}

p {
    font-size: var(--font-size-base);
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
} */

/* Promo Announcement */
.promo-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 26, 36, 0.95);
    color: var(--neutral-white);
    padding: var(--spacing-md) 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

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

.promo-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 90%;
}

.promo-content span {
    font-size: var(--font-size-base);
}

.promo-content i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.promo-button {
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.promo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 209, 193, 0.3);
}

.promo-close {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    align-self: flex-start;
    border-radius: var(--radius-full);
}

.promo-close:hover {
    color: var(--primary-color);
}

@media (max-width: 480px) {
    .promo-content {
        flex-direction: column;
        text-align: center;
    }
}



/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    width: 100%;
    background: var(--background-dark-color);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.logo {
    max-width: 250px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .logo {
        max-width: 200px;
    }
}

.logo img {
    width: 100%;
    height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(0, 209, 193, 0.1);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Nav Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        position: relative;

    }

    .nav-menu {
        /* display: none; */
        transform: translateY(-200%);
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--background-dark-color);
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        z-index: 1000;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: left;
        border-radius: 0;
    }

    .mobile-menu {
        display: flex;
    }

    .mobile-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6.8px, 6px);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6.8px, -6px);
    }
}


/* Hero Section */

/* Parallax Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--background-dark-color);
    opacity: 0.8;
    backdrop-filter: blur(1px);
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: linear-gradient(135deg,
            rgba(13, 26, 36, 0.8) 0%,
            rgba(13, 26, 36, 0.6) 50%,
            rgba(13, 26, 36, 0.9) 100%),
        url('../images/launch-nest.png');
    background-size: 40% auto;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: var(--spacing-xl);
    max-width: 1200px;
    width: 100%;
    text-align: left;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(0, 209, 193, 0.1);
    border: 1px solid rgba(0, 209, 193, 0.3);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.hero-badge:hover {
    background: rgba(0, 209, 193, 0.2);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.hero-title {
    line-height: var(--line-height-tight);
    /* color: var(--color); */
    margin-bottom: var(--spacing-lg);
    /* background: linear-gradient(
                135deg,
                var(--color-neutral-light) 0%,
                var(--color-primary-light) 50%,
                var(--color-accent-1-light) 100%
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text; */
}

.hero-subtitle {
    /* font-size: var(--font-size-xl); */
    /* font-weight: var(--font-weight-normal); */
    /* color: var(--color-text-secondary); */
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
    /* margin-left: auto;
            margin-right: auto; */
    line-height: var(--line-height-relaxed);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    /* justify-content: center; */
    align-items: center;
    margin-bottom: var(--spacing-3xl);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--spacing-3xl);
}

.stat-item {
    padding: var(--spacing-md);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 209, 193, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-md);
}

.stat-number {
    font-size: var(--font-size-md);
    color: var(--primary-color);
    font-weight: 700;
}

.stat-label {
    font-size: var(--font-size-sm);
}

@media (max-width: 800px) {
    .hero {
        background-size: 70% auto;
    }

    .hero-stats {
        gap: var(--spacing-lg);
    }

    .stat-item {
        padding: var(--spacing-sm);
        gap: var(--spacing-sm);
    }
}




/* Section Styles */
.section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    font-family: var(--font-family);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    /* background-color: blue; */
}

.about-image {
    width: 100%;
    position: relative;
    margin-bottom: 4rem;
    /* background-color: red; */
}

.about-image::before {
    content: '';
    width: 100%;
    height: 100%;
    top: 30px;
    right: 30px;
    display: block;
    z-index: -1;
    position: absolute;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,209,193,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.about-image img {
    /* border-radius: 20px; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 800px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        /* width: 0%; */
        margin: auto;
        order: -1;
    }

    .about-image::before {
        top: 15px;
        right: 15px;
    }
}



/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.service-list {
    display: flex;
    flex-direction: column;
    /* border: 1px solid #eee; */
    gap: var(--spacing-lg);
    padding: var(--spacing-md);
}

.service-list .list-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    justify-content: space-between;
    cursor: pointer;

    h4 {
        margin: 0;
        /* color: var(--neutral-white); */
    }

    &.active .list-toggle i {
        transition: var(--transition-slow);
        transform: rotate(90deg);
    }
}

.service-list > .list-header .list-toggle{
    display: none;
}
@media (max-width: 500px) {
    .service-list > .list-header .list-toggle {
        display: block;
    }
}


.service-list .list,
.service-list .sub-list {
    transform: translateX(0);
    display: none;
    opacity: 0;
    transition: var(--transition-slow);
    transition-behavior: allow-discrete;
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-md);

    &.active {
        /* transform: translateX(10px); */
        opacity: 1;
        display: block;
        padding-right: 20px;

        @starting-style {
            transform: translateX(0);
            opacity: 0;
        }
    }
}

.service-list .sub-list.active {
    transform: translate(0);
    padding: 0;
}

/* Custom Luxury List Marker */
.list li {
    position: relative;
    padding-left: var(--spacing-lg);
    margin: 0.3rem 0;
    line-height: 1.6;
    list-style: none;
    /* word-break: break-all; */

    div {
        font-weight: var(--font-weight-semibold);
    }
}

.list li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--accent-1-dark-color);
    font-size: var(--font-size-sm);
}

.list li ul li::before {
    color: var(--accent-1-light-color);
}


.package-header, .service-action {
    max-width: 600px;
    margin: var(--spacing-xl) auto;
    text-align: center;

    a {
        display: inline-block;
        margin-bottom: var(--spacing-md);
    }
}


.service-card {
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    border: 1px solid rgba(0, 209, 193, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* display: none; */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 209, 193, 0.3);
    box-shadow: 0 20px 40px rgba(0, 209, 193, 0.1);
}

.service-icon {
    font-size: var(--font-size-lg);
    color: var(--primary-color);
    /* margin-bottom: 1rem; */
}

.service-card h4 {
    color: var(--neutral-white);
    /* margin-bottom: 1rem; */
}

.service-card p {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    /* margin-bottom: 2rem; */
    line-height: 1.7;
}

/* .service-price {
    font-family: 'Orbitron', monospace;
    font-size: var(--font-size-base);
    color: var(--accent-violet);
    margin-bottom: 1.5rem;
} */

.service-buttons {
    display: flex;
    gap: 1rem;
}

/* .btn-primary,
.btn-secondary {
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: var(--font-size-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
} */



/* Swiper Container */
.swiper {
    width: 100%;
    height: auto;
    padding: 40px 0 80px;
    overflow: visible;
}

.swiper-wrapper {
    align-items: center;
}

/* Project Cards */
.project-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-luxury);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(100, 255, 218, 0.3);
}

.project-card:hover::before {
    opacity: 1;
}

/* Project Content */
.project-content {
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.project-tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 300;
}

/* Company Logo */
.company-logo {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 0% 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* .company-logo::after {
    content: attr(data-company);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-color);
    letter-spacing: 1px;
} */

.project-card:hover .company-logo {
    transform: scale(1.05);
    background: rgba(100, 255, 218, 0.1);
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.cta-button:hover {
    color: var(--primary-gradient);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
}

.cta-button:hover::before {
    left: 0;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    margin-top: -25px;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    border: 1px solid var(--card-border);
    transition: all 0.4s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(100, 255, 218, 0.1);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.4s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-slide {
    opacity: 0;
    animation: slideInScale 0.8s ease-out forwards;
}

.swiper-slide:nth-child(1) {
    animation-delay: 0.2s;
}

.swiper-slide:nth-child(2) {
    animation-delay: 0.4s;
}

.swiper-slide:nth-child(3) {
    animation-delay: 0.6s;
}

.swiper-slide:nth-child(4) {
    animation-delay: 0.8s;
}

.swiper-slide:nth-child(5) {
    animation-delay: 1s;
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-card {
        padding: 40px 30px;
        height: 400px;
    }

    .company-logo {
        width: 100px;
        height: 70px;
    }

    .project-title {
        font-size: 1.3rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    /* .container {
        padding: 0 15px;
    } */
}

@media (max-width: 480px) {
    .project-card {
        padding: 30px 20px;
        height: 380px;
    }

    .company-logo {
        width: 80px;
        height: 60px;
    }

    .company-logo::after {
        font-size: 12px;
    }

    .project-title {
        font-size: 1.2rem;
    }

    .project-tagline {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid rgba(100, 255, 218, 0.3);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




/* Testimonials Section */
.testimonials {
    background: var(--primary-bg);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,209,193,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.testimonials-container {
    position: relative;
    z-index: 1;
}

/* .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
} */

.testimonial-card {
    background: rgba(30, 30, 30, 0.8);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(145, 94, 255, 0.3);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 60ch;
    width: 100%;
    margin: auto;
    /* opacity: 0; */
}

.testimonial-card.active {
    /* opacity: 1; */
    animation: fadeInUp 0.5s ease-out forwards;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: var(--accent-color);
    font-family: var(--font-family-heading);
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(145, 94, 255, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    /* background-color: red; */
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-2-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-bg);
    font-weight: bold;
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-secondary);
    font-size: var(--font-size-xs);
    margin-bottom: 0;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: var(--font-size-md);
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gradient-dark);
    border-radius: 15px;
    border: 1px solid rgba(0, 209, 193, 0.1);
}

.contact-item:has(.social-links) {
    gap: 1rem;
    background: transparent;
    border: none;
    padding: 0;
    flex-direction: column;
    margin-bottom: 0;
    margin-top: 4rem;

    .social-links {
        gap: 2rem
    }

    .social-links a i{
        /* background: var(--gradient-primary); */
        font-size: var(--font-size-xl);
    }
}

.contact-item i {
    font-size: var(--font-size-base);
    color: var(--primary-color);
    margin-right: 1rem;
    width: 30px;
}

.contact-form {
    background: var(--gradient-dark);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 209, 193, 0.2);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-size-base);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 209, 193, 0.2);
    border-radius: 10px;
    background: transparent;
    color: var(--neutral-white);
    font-family: inherit;
    transition: border-color 0.3s ease;
    font-size: var(--font-size-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Footer */
.footer {
    background: var(--accent-gray);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: left;
}

.footer-section p,
.footer-section a {
    font-size: var(--font-size-base);
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.8rem;
    display: block;
    text-align: left;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
    font-size: var(--font-size-base);
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 209, 193, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .service-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 500px) {
    .contact-form {
        padding: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

body:has(.modal.active) {
    overflow: hidden;
}

.modal.active {
    display: block;
}

.modal-content {
    background: var(--gradient-dark);
    /* background-color: red; */
    margin: 5vh auto;
    padding: 3rem;
    height: 90vh;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    border: 1px solid rgba(0, 209, 193, 0.3);
    position: relative;
    overflow: auto;

    &::-webkit-scrollbar {
        display: none;
    }
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

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

#modalContent {
    overflow-y: auto;

    /* background-color: green; */
    ul {
        list-style: none;
    }
}


#chatButton {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--background-dark-color);
    color: white;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 209, 193, 0.3);
    font-size: var(--font-size-lg);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;

    i {
        font-size: 2rem;
    }

    &:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 209, 193, 0.4);
        text-decoration: none;
    }
}

/* @media (max-width: 768px) {
    #chatButton {
        bottom: 20px;
        right: 20px;
        height: 40px;
        width: 40px;

        i {
            font-size: 1.5rem;
        }
    }
} */