:root {
    --bg-color: #030305;
    --bg-surface: #0a0a0f;
    --text-color: #ffffff;
    --text-secondary: #94a3b8;
    --accent-color: #3b82f6;
    --accent-light: #60a5fa;
    --accent-glow: rgba(59, 130, 246, 0.4);
    --glass-bg: rgba(18, 18, 27, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Ambient Lighting with Moving Orbs */
.ambient-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.ambient-light::before,
.ambient-light::after {
    content: '';
    position: absolute;
    width: 60vmax;
    height: 60vmax;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: floatOrb 20s infinite alternate ease-in-out;
}

.ambient-light::before {
    background: #3b82f6;
    top: -20%;
    left: -10%;
    transform-origin: center right;
}

.ambient-light::after {
    background: #8b5cf6;
    bottom: -20%;
    right: -10%;
    transform-origin: center left;
    animation-delay: -10s;
}

@keyframes floatOrb {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(5%, 5%);
    }

    100% {
        transform: scale(0.9) translate(-5%, -5%);
    }
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    background: linear-gradient(to bottom, rgba(3, 3, 5, 0.4) 0%, rgba(3, 3, 5, 0.7) 70%, var(--bg-color) 100%),
        url('photos/1.jpg') center top / cover no-repeat;
}

.hero .logo-container {
    margin-bottom: 2rem;
    z-index: 1;
    animation: fadeInDown 1.2s ease-out;
}

.hero .logo {
    max-width: 500px;
    width: 80vw;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.3));
    transition: transform 0.5s ease, filter 0.5s ease;
}

.hero .logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.5));
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
    animation: fadeInUp 1.5s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: #e0e0e0;
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-text {
    font-size: 1rem;
    font-weight: 300;
    color: #cccccc;
    margin: 0 auto 3rem auto;
    max-width: 600px;
    line-height: 1.8;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem 3rem;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.5);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    text-transform: uppercase;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
}

.btn-primary:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    animation: bounce 2s infinite ease-in-out;
}

.scroll-indicator .line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent-light), transparent);
    border-radius: 2px;
}

/* Sections Common */
section {
    padding: clamp(3.5rem, 8vw, 8rem) clamp(1rem, 5vw, 2rem);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(1.75rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    background: linear-gradient(to bottom, #fff, #555);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-glow);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: clamp(2rem, 6vw, 4rem);
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services */
.services {
    background: var(--bg-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 650px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.2));
    padding: clamp(2rem, 6vw, 3.5rem) clamp(1.5rem, 5vw, 2.5rem);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.1) inset;
}

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

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 0.05em;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.contact-action {
    text-align: center;
    margin-top: clamp(2.5rem, 6vw, 5rem);
    position: relative;
    z-index: 2;
}

/* About Module */
.about-module {
    background: var(--bg-color);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 8vw, 4rem);
    align-items: center;
}

@media (min-width: 900px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text-content {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.4));
    padding: clamp(1.5rem, 5vw, 3.5rem);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.about-text-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-light);
    box-shadow: 0 0 20px var(--accent-glow);
}

.module-title {
    font-size: clamp(1.4rem, 6vw, 2.5rem);
    margin-bottom: clamp(1rem, 3vw, 2rem);
    text-transform: uppercase;
    word-break: break-word;
    hyphens: auto;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.1em;
}

.about-text-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text-content p:last-child {
    margin-bottom: 0;
}

.checklist-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    color: #fff;
    letter-spacing: 0.1em;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.about-checklist .why-us-list {
    margin: 0;
    max-width: 100%;
}

.why-us-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.why-us-list li {
    font-size: 1.1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--glass-bg);
    padding: clamp(1rem, 4vw, 1.5rem) clamp(1.2rem, 5vw, 2rem);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.why-us-list li:hover {
    transform: translateX(10px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(30, 41, 59, 0.8);
    box-shadow: -5px 10px 25px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(59, 130, 246, 0.1);
}

.why-us-list .check {
    color: var(--accent-light);
    font-weight: bold;
    font-size: 1.3rem;
    text-shadow: 0 0 10px var(--accent-glow);
}

/* Gallery Section */
.gallery {
    background: var(--bg-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    background: var(--glass-bg);
    aspect-ratio: 16/10;
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(3, 3, 5, 0.85), rgba(10, 10, 15, 0.9)),
        url('photos/2.jpg') center center / cover fixed no-repeat;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 15vw, 10rem) clamp(1rem, 5vw, 2rem);
    /* More vertical space to show off the parallax image */
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, rgba(59, 130, 246, 0.15) 0deg, transparent 60deg, transparent 300deg, rgba(59, 130, 246, 0.15) 360deg);
    animation: rotate 30s linear infinite;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: screen;
}

.cta-section>* {
    position: relative;
    z-index: 1;
}

.cta-text {
    color: var(--text-secondary);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--bg-color);
}

.contact-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.4));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-20deg);
    animation: shine 6s infinite;
}

.contact-card .name {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-card .title {
    color: var(--accent-light);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    margin-bottom: 2.5rem;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    width: 100%;
    margin: 2.5rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-item .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.15em;
}

.info-item .value {
    font-size: 1.1rem;
    font-weight: 400;
    color: #fff;
    transition: color 0.3s ease;
}

.info-item .link {
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.info-item .link:hover {
    color: var(--accent-light);
    border-color: var(--accent-light);
}

/* Footer */
footer {
    padding: 3rem 2rem;
    text-align: center;
    background: #030303;
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    opacity: 0.4;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.footer-credit {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: -0.5rem;
}

.footer-credit a {
    color: var(--accent-light);
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-credit a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--accent-glow);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-15px) translateX(-50%);
    }

    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

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

    to {
        transform: rotate(360deg);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* Media Queries */
@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero .logo {
        max-width: 600px;
    }
}