/* ==========================================================================
   CYNKO - Main Stylesheet (Compiled from SASS)
   ========================================================================== */

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #1f2937;
    background-color: #f9fafb;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: #111827;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.875rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 300ms ease-in-out;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Typography Utilities */
.brand-font {
    font-family: 'Montserrat', sans-serif;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #5eead4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.font-bold {
    font-weight: 700;
}

strong {
    font-weight: 700;
    color: #111827;
}

/* Animations & Reveal Enchancements */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1) translateX(0);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-scale {
    transform: scale(0.9);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-500 {
    transition-delay: 500ms;
}

.delay-600 {
    transition-delay: 600ms;
}

.delay-700 {
    transition-delay: 700ms;
}

.delay-800 {
    transition-delay: 800ms;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

/* Navbar - Glassmorphism Update */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    /* Glass effect base */
    backdrop-filter: blur(12px);
    /* Blur magic */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    z-index: 1030;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    transition: height 0.4s ease;
}

.navbar__brand .brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.navbar__brand .brand__icon {
    font-size: 1.875rem;
    color: #0056b3;
}

.navbar__brand .brand__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #111827;
    letter-spacing: -0.025em;
}

.navbar__menu {
    display: none;
    gap: 3rem;
}

@media (min-width: 768px) {
    .navbar__menu {
        display: flex;
        align-items: center;
    }
}

.navbar__link {
    color: #4b5563;
    font-weight: 400;
    transition: color 300ms ease-in-out;
}

.navbar__link:hover {
    color: #0056b3;
}

.navbar__link--cta {
    padding: 0.5rem 1.5rem;
    background-color: #0056b3;
    color: #ffffff;
    border-radius: 0.375rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.navbar__link--cta:hover {
    background-color: #003d82;
    color: #ffffff;
}

.navbar__toggle {
    display: block;
    font-size: 1.5rem;
    color: #4b5563;
    transition: color 300ms ease-in-out;
}

.navbar__toggle:hover {
    color: #111827;
}

@media (min-width: 768px) {
    .navbar__toggle {
        display: none;
    }
}

.navbar__mobile {
    display: none;
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.navbar__mobile.active {
    display: block;
}

@media (min-width: 768px) {
    .navbar__mobile {
        display: none !important;
    }
}

.navbar__mobile-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #374151;
    transition: background-color 300ms ease-in-out;
}

.navbar__mobile-link:hover {
    background-color: #f3f4f6;
}

.navbar__mobile-link--cta {
    color: #0056b3;
    font-weight: 700;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.navbar.scrolled .navbar__wrapper {
    height: 4rem;
    /* Compress on scroll */
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0, 30, 60, 0.8), rgba(0, 30, 60, 0.7)), url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 5rem;
}

.hero__content {
    text-align: center;
    padding: 0 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
    margin-top: 3.75rem;
}

.hero__badge {
    display: inline-block;
    color: #60a5fa;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero__title {
    font-size: 2.25rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 3.75rem;
    }
}

.hero__description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero__actions {
        flex-direction: row;
    }
}

.hero__cta {
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 0.5rem;
    transition: all 300ms ease-in-out;
}

.hero__cta--primary {
    background-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero__cta--primary:hover {
    background-color: #1d4ed8;
    transform: scale(1.05);
}

.hero__cta--secondary {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.hero__cta--secondary:hover {
    background-color: #ffffff;
    color: #1e3a8a;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    opacity: 0.7;
    animation: bounce 1s infinite;
    display: none;
}

@media (min-width: 768px) {
    .hero__scroll {
        display: block;
    }
}

.hero__scroll:hover {
    opacity: 1;
}

.hero__scroll i {
    font-size: 1.5rem;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header__title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header__title {
        font-size: 2.25rem;
    }
}

.section-header__divider {
    width: 5rem;
    height: 0.25rem;
    background-color: #0056b3;
    margin: 0 auto;
    border-radius: 9999px;
}

.section-header__description {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.services-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .services-section__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Service Card */
.service-card {
    padding: 3rem;
    border: 1px solid #f3f4f6;
    border-radius: 0.75rem;
    background-color: #f9fafb;
    text-align: center;
    transition: all 300ms ease-in-out;
}

.service-card:hover {
    background-color: #ffffff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-card__icon-wrapper {
    background-color: #0056b3;
}

.service-card:hover .service-card__icon {
    color: #ffffff;
}

.service-card__icon-wrapper {
    width: 4rem;
    height: 4rem;
    background-color: #dbeafe;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: background-color 300ms ease-in-out;
}

.service-card__icon {
    font-size: 1.5rem;
    color: #0056b3;
    transition: color 300ms ease-in-out;
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card__description {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.75;
}

/* Projects Section */
.projects-section {
    padding: 6rem 0;
    background-color: #f3f4f6;
}

.projects-section__header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .projects-section__header {
        flex-direction: row;
        align-items: flex-end;
    }
}

.projects-section__title-wrapper {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .projects-section__title-wrapper {
        margin-bottom: 0;
    }
}

.projects-section__title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
}

@media (min-width: 768px) {
    .projects-section__title {
        font-size: 2.25rem;
    }
}

.projects-section__subtitle {
    margin-top: 0.5rem;
    color: #4b5563;
}

.projects-section__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0056b3;
    font-weight: 700;
    transition: color 300ms ease-in-out;
}

.projects-section__link:hover {
    color: #003d82;
}

.projects-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .projects-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-section__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card */
.card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 300ms ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card__image {
    position: relative;
    height: 14rem;
    background-color: #e5e7eb;
    overflow: hidden;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease-in-out;
}

.card__image:hover img {
    transform: scale(1.1);
}

.card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.card__badge--blue {
    background-color: #0056b3;
}

.card__badge--red {
    background-color: #dc2626;
}

.card__badge--green {
    background-color: #16a34a;
}

.card__badge--yellow {
    background-color: #ca8a04;
}

.card__badge--cyan {
    background-color: #0891b2;
}

.card__badge--orange {
    background-color: #ea580c;
}

.card__content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.card__description {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.card__footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.card__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 400;
}

.card__tag--blue {
    background-color: #dbeafe;
    color: #1e40af;
}

.card__tag--red {
    background-color: #fee2e2;
    color: #991b1b;
}

.card__tag--green {
    background-color: #dcfce7;
    color: #166534;
}

.card__tag--yellow {
    background-color: #fef3c7;
    color: #854d0e;
}

.card__tag--cyan {
    background-color: #cffafe;
    color: #155e75;
}

.card__tag--orange {
    background-color: #ffedd5;
    color: #9a3412;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background-color: #0056b3;
    color: #ffffff;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url('https://www.transparenttextures.com/patterns/circuit-board.png');
}

.cta-section__content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.cta-section__title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-section__title {
        font-size: 3rem;
    }
}

.cta-section__description {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 3rem;
}

.cta-section__description br {
    display: none;
}

@media (min-width: 768px) {
    .cta-section__description br {
        display: block;
    }
}

.cta-section__button {
    display: inline-block;
    background-color: #ffffff;
    color: #0056b3;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 300ms ease-in-out;
}

.cta-section__button:hover {
    background-color: #f3f4f6;
    transform: scale(1.05);
}

/* Hover Wiggle Effect for CTA */
.hover-wiggle:hover {
    animation: wiggle 0.5s ease-in-out;
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg) scale(1.05);
    }

    25% {
        transform: rotate(-3deg) scale(1.05);
    }

    75% {
        transform: rotate(3deg) scale(1.05);
    }
}

/* Footer */
.footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 5rem 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer__col--main {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .footer__col--main {
        grid-column: span 2;
    }
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer__brand-icon {
    font-size: 1.5rem;
    color: #3b82f6;
}

.footer__brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.025em;
}

.footer__description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    max-width: 28rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    color: #9ca3af;
    font-size: 1.5rem;
    transition: color 300ms ease-in-out;
}

.footer__social-link:hover {
    color: #ffffff;
}

.footer__title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer__icon {
    color: #3b82f6;
    margin-top: 0.25rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__link {
    color: #d1d5db;
    transition: color 300ms ease-in-out;
}

.footer__link:hover {
    color: #3b82f6;
}

.footer__bottom {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #1f2937;
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Utilities */
.hidden {
    display: none !important;
}

/* ==========================================================================
   NEW PAGES STYLES (Portfolio & Contact)
   ========================================================================== */

/* Page Header */
.page-header {
    background-color: #111827;
    color: #fff;
    padding: 8rem 0 4rem;
    text-align: center;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.page-header__title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.page-header__subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

/* Portfolio Filters */
.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    background: #fff;
    color: #4b5563;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0056b3;
    color: #fff;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 56, 179, 0.2);
}

/* Portfolio Grid HUD Style */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding-bottom: 4rem;
}

.portfolio-item {
    perspective: 1000px;
}

.portfolio-item__inner {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-item__inner {
    transform: translateY(-10px);
}

.portfolio-item__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-item__image img {
    transform: scale(1.1);
}

/* HUD Overlay */
.portfolio-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 10, 30, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.portfolio-item:hover .portfolio-item__overlay {
    opacity: 1;
}

.tech-lines {
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    pointer-events: none;
}

.tech-lines::before,
.tech-lines::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #00ffff;
    transition: all 0.3s ease;
}

.tech-lines::before {
    top: 0;
    left: 0;
    border-right: 0;
    border-bottom: 0;
}

.tech-lines::after {
    bottom: 0;
    right: 0;
    border-left: 0;
    border-top: 0;
}

.tech-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: #fff;
    font-family: monospace;
}

.stat-label {
    color: #00ffff;
    margin-bottom: 0.25rem;
}

.text-green {
    color: #00ff00;
}

.view-project-btn {
    border: 1px solid #fff;
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.view-project-btn:hover {
    background: #fff;
    color: #000;
}

.portfolio-item__content {
    padding: 1.5rem;
}

.portfolio-item__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.portfolio-item__badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #0056b3;
}

.portfolio-item__id {
    font-family: monospace;
    color: #9ca3af;
    font-size: 0.875rem;
}

.portfolio-item__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.portfolio-item__desc {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-page {
    padding: 4rem 0;
    background: #f3f4f6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media(min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.info-list {
    margin-top: 2rem;
}

.info-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: #dbeafe;
    color: #0056b3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-placeholder {
    height: 200px;
    background: #e5e7eb;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    margin-top: 2rem;
}

/* Glass Form */
.glass-form {
    background: #fff;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
}

.tech-line {
    width: 60px;
    height: 3px;
    background: #0056b3;
    margin-top: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media(min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #0056b3;
    color: #fff;
    font-weight: 700;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #003d82;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    width: 90%;
    max-width: 900px;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.close-modal:hover {
    color: #000;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media(min-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.modal-image-col {
    height: 300px;
    background: #000;
}

@media(min-width: 768px) {
    .modal-image-col {
        height: auto;
    }
}

.modal-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info-col {
    padding: 2rem;
}