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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-blue: #00A8E8;
    --light-blue: #87CEEB;
    --dark-grey: #2C2C2C;
    --darker-grey: #1A1A1A;
    --white: #FFFFFF;
    --text-light: #F5F5F5;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-grey);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--darker-grey) 0%, var(--dark-grey) 50%, #252525 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    box-shadow: inset 0 -2px 30px rgba(0, 0, 0, 0.3);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 168, 232, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    padding: 0 40px;
}

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

.logo {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 168, 232, 0.4), 0 0 40px rgba(0, 168, 232, 0.2);
    background: linear-gradient(135deg, var(--primary-blue) 0%, #00C4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.tagline {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.description {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

/* Hexagon Decorations */
.hexagon-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hexagon {
    position: absolute;
    width: 80px;
    height: 80px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Blue filled hexagons */
.hexagon-1,
.hexagon-3,
.hexagon-5,
.hexagon-7,
.hexagon-9 {
    background: var(--primary-blue);
    opacity: 0.6;
}

/* White filled hexagons */
.hexagon-2,
.hexagon-4,
.hexagon-6,
.hexagon-8 {
    background: var(--white);
    opacity: 0.8;
}

.hexagon-1 {
    top: 10%;
    right: 15%;
    animation: float1 6s ease-in-out infinite;
    --rotation: 15deg;
}

.hexagon-2 {
    top: 30%;
    right: 25%;
    width: 60px;
    height: 60px;
    animation: float2 8s ease-in-out infinite reverse;
    --rotation: -10deg;
}

.hexagon-3 {
    top: 50%;
    right: 10%;
    animation: float3 7s ease-in-out infinite;
    --rotation: 25deg;
}

.hexagon-4 {
    top: 70%;
    right: 20%;
    width: 50px;
    height: 50px;
    animation: float4 9s ease-in-out infinite reverse;
    --rotation: -20deg;
}

.hexagon-5 {
    top: 20%;
    right: 2%;
    animation: float5 5s ease-in-out infinite;
    --rotation: 10deg;
}

.hexagon-6 {
    top: 15%;
    right: 35%;
    width: 45px;
    height: 45px;
    animation: float6 6.5s ease-in-out infinite reverse;
    --rotation: -15deg;
}

.hexagon-7 {
    top: 40%;
    right: 2%;
    width: 70px;
    height: 70px;
    animation: float7 7.5s ease-in-out infinite;
    --rotation: 20deg;
}

.hexagon-8 {
    top: 60%;
    right: 30%;
    width: 55px;
    height: 55px;
    animation: float8 8.5s ease-in-out infinite reverse;
    --rotation: -25deg;
}

.hexagon-9 {
    top: 75%;
    right: 2%;
    width: 55px;
    height: 55px;
    animation: float9 6s ease-in-out infinite;
    --rotation: 12deg;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(15deg); }
    50% { transform: translateY(-20px) rotate(15deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(-10deg); }
    50% { transform: translateY(-20px) rotate(-10deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(25deg); }
    50% { transform: translateY(-20px) rotate(25deg); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) rotate(-20deg); }
    50% { transform: translateY(-20px) rotate(-20deg); }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) rotate(10deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) rotate(-15deg); }
    50% { transform: translateY(-20px) rotate(-15deg); }
}

@keyframes float7 {
    0%, 100% { transform: translateY(0px) rotate(20deg); }
    50% { transform: translateY(-20px) rotate(20deg); }
}

@keyframes float8 {
    0%, 100% { transform: translateY(0px) rotate(-25deg); }
    50% { transform: translateY(-20px) rotate(-25deg); }
}

@keyframes float9 {
    0%, 100% { transform: translateY(0px) rotate(12deg); }
    50% { transform: translateY(-20px) rotate(12deg); }
}

/* Services Section */
.services {
    background: linear-gradient(135deg, var(--light-blue) 0%, #6BB6D6 50%, #5AB5D5 100%);
    padding: 100px 0;
    color: var(--darker-grey);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    border-radius: 2px;
}

.services .section-title {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.service-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 168, 232, 0.2);
    background: rgba(255, 255, 255, 1);
}

.checkmark {
    color: var(--primary-blue);
    font-size: 1.6rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 168, 232, 0.3);
    transition: transform 0.3s ease;
}

.service-item:hover .checkmark {
    transform: scale(1.2);
}

.services-note {
    text-align: center;
    font-size: 1.15rem;
    color: var(--white);
    max-width: 900px;
    margin: 50px auto 0;
    line-height: 1.9;
    padding: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Gallery Section */
.gallery {
    background: linear-gradient(180deg, var(--darker-grey) 0%, #1F1F1F 100%);
    padding: 100px 0;
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 168, 232, 0.3), transparent);
}

.gallery .section-title {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0) 0%, rgba(0, 168, 232, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 168, 232, 0.5), 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 168, 232, 0.5);
}

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

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

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

/* Lightbox Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 30px;
    right: 50px;
    width: 50px;
    height: 50px;
    color: var(--white);
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    z-index: 1001;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 3px;
}

.close:hover {
    color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    font-size: 32px;
    font-weight: 300;
    padding: 20px 16px;
    cursor: pointer;
    z-index: 1001;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav-left {
    left: 30px;
}

.modal-nav-right {
    right: 30px;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--light-blue) 0%, #6BB6D6 50%, #5AB5D5 100%);
    padding: 80px 0;
    color: var(--darker-grey);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.contact .section-title {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.contact-item {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    font-size: 1.3rem;
    color: var(--darker-grey);
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-item .icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--darker-grey);
    text-decoration: underline;
}

.contact-item div div {
    margin-bottom: 6px;
}

.contact-item div div:last-child {
    margin-bottom: 0;
}

.contact-item div strong {
    font-size: 0.95rem;
    margin-right: 6px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 40vh;
        padding: 40px 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .logo {
        font-size: 3.2rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    /* Hide hexagons on mobile to prevent overlap */
    .hexagon-decoration {
        display: none;
    }

    .contact-info {
        padding: 30px 25px;
    }

    .contact-item {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .contact-item strong {
        font-size: 1.2rem;
    }

    .close {
        top: 20px;
        right: 20px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }

    .modal-nav {
        font-size: 24px;
        padding: 16px 12px;
    }

    .modal-nav-left {
        left: 10px;
    }

    .modal-nav-right {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 35vh;
        padding: 30px 20px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .logo {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .contact-info {
        padding: 25px 20px;
    }

    .contact-item {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }

    .contact-item strong {
        font-size: 1.1rem;
    }

    .contact-item .icon {
        font-size: 1.2rem;
    }
}

