:root {
    --black: #000000;
    --white: #ffffff;
    --blue: #0db8ec;
}

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

body {
    font-family: Arial, sans-serif;
    color: var(--white);
    background: var(--black);
}

.background {
    position: fixed;
    inset: 0;
    background: url("../images/background.jpg");
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    transform: scale(1.05);
    z-index: -2;
}

.background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

.wrapper {
    width: 80%;
    margin: auto;
}

header {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo img {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
}

nav a {
    color: var(--white);
    text-decoration: none;
    margin-left: 25px;
}

nav a:hover {
    color: var(--blue);
}

.hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
    margin-top: 30px;
}

.slider {
    width: 100%;
    height: 70%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 1s;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 70%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    z-index: 10;
    left: 30px;
    bottom: 230px;
    background: rgba(0,0,0,0.65);
    padding: 35px;
    border-left: 5px solid var(--blue);
}

.section {
    background: rgba(20,20,20,0.9);
    padding: 60px;
    margin-top: -150px;
}

.section1 {
    background: rgba(20,20,20,0.9);
    padding: 60px;
    margin-top: 0px;
}

footer {
    background: rgba(0,0,0,0.90);
    backdrop-filter: blur(15px);
    margin-top: 70px;
    border-top: 2px solid #0db8ec;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    border: 0px solid transparent;
}

.footer-box {
    border-left: 0px solid #0db8ec;
}

.footer-box p,
.footer-box li,
.footer-box a {
    color: #ffffff;
    text-decoration: none;
    line-height: 1.9;
}

.footer-box ul {
    list-style: none;
}

.footer-box a:hover {
    color: #0db8ec;
}

.footer-logo {
    max-height: 150px;
    width: auto;
    margin-bottom: 10px;
	margin-top: 10px;
}

.social-box {
    text-align: right;
}

.socials {
    display: flex;
    gap: 20px;
}

.social-link {

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

    width: 32px;
    height: 32px;

    color: #ffffff;

    transition:
        color .3s,
        transform .3s;
}

.social-link svg {

    width: 32px;
    height: 32px;

    fill: currentColor;
}

.social-link:hover {

    color: #0db8ec;
    transform: translateY(-3px);
}

.footer-box.social-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
	right: 10px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #aaa;
    font-size: 0.85rem;
	
}

.footer-contact i { width: 22px; color: #0099ff; }

.footer-bottom {
    border-top: 1px solid #222;
    text-align: center;
    padding: 25px;
    color: #888;
    font-size: 14px;
}

.album-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;
    margin-top: 50px;
}

.album-card {
    background: rgba(20,20,20,0.95);
    border: 1px solid #222;
    overflow: hidden;
    text-decoration: none;
    color: #fff;

    transition: .3s;
}

.album-card:hover {
    transform: translateY(-8px);
    border-color: #0db8ec;
}

.album-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.album-info {
    padding: 25px;
}

.album-info h3 {
    color: #0db8ec;
    margin-bottom: 10px;
}

.photo-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit,
        minmax(250px,1fr));

    gap: 20px;
    margin-top: 40px;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    transition: .3s;
}

.gallery-image:hover {
    transform: scale(1.03);
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;

    background: rgba(0,0,0,0.95);

    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 75vh;
    object-fit: contain;
}

.close,
.prev,
.next {

    position: absolute;

    color: white;
    font-size: 50px;
    cursor: pointer;

    user-select: none;
}

.close {
    top: 25px;
    right: 40px;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.lightbox-thumbs {

    display: flex;
    gap: 10px;

    margin-top: 30px;

    overflow-x: auto;
    max-width: 90%;
}

.lightbox-thumbs img {

    width: 80px;
    height: 80px;

    object-fit: cover;

    cursor: pointer;

    opacity: .6;

    border: 2px solid transparent;
}

.lightbox-thumbs img.active {

    opacity: 1;
    border-color: #0db8ec;
}

.album-grid {

    display: grid;

    grid-template-columns:
    repeat(
        auto-fit,
        minmax(300px, 1fr)
    );

    gap: 30px;
    margin-top: 50px;
}

.album-card {

    background:
    rgba(20,20,20,.9);

    border:
    1px solid #222;

    text-decoration: none;
    color: white;

    overflow: hidden;

    transition:
    .3s;
}

.album-card:hover {

    transform:
    translateY(-8px);

    border-color:
    #0db8ec;
}

.album-card img {

    width: 100%;
    height: 250px;

    object-fit: cover;
}

.album-info {

    padding: 25px;
}

.album-info h3 {

    color:
    #0db8ec;

    margin-bottom: 10px;
}

.photo-grid {

    display: grid;

    grid-template-columns:
    repeat(
        auto-fit,
        minmax(250px,1fr)
    );

    gap: 20px;

    margin-top: 40px;
}

.gallery-image {

    width: 100%;
    height: 250px;

    object-fit: cover;

    cursor: pointer;

    transition: .3s;
}

.gallery-image:hover {

    transform:
    scale(1.03);
}

.back-button {

    display: inline-block;

    margin:
        20px 0
        40px;

    padding:
        12px 25px;

    background:
        rgba(20,20,20,.9);

    color:
        #ffffff;

    text-decoration:
        none;

    border:
        1px solid
        #0db8ec;

    transition:
        .3s;
}

.back-button:hover {

    background:
        #0db8ec;

    color:
        #000000;
}

.gallery-title {

    margin-top: 80px;
}

.video-cover {

    height: 250px;

    display: flex;

    justify-content:
        center;

    align-items:
        center;

    font-size:
        80px;

    color:
        #0db8ec;

    background:
        #111111;
}

#video-lightbox {

    display: none;
    position: fixed;

    inset: 0;

    background:
        rgba(0,0,0,.95);

    z-index: 99999;

    justify-content: center;
    align-items: center;
}

#video-lightbox.active {
    display: flex;
}

#fullscreen-video {

    width: 90%;
    max-width: 1200px;
    max-height: 85vh;
}

.close-video {

    position: absolute;

    top: 25px;
    right: 40px;

    font-size: 50px;
    color: white;

    cursor: pointer;
}

.play-icon {
    position: absolute;
    inset: 0;

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

    font-size: 80px;
    color: white;

    background: rgba(0,0,0,.25);

    pointer-events: none;
}

.prev-video,
.next-video {

    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    font-size: 50px;
    color: white;

    cursor: pointer;
    user-select: none;
}

.prev-video {
    left: 30px;
}

.next-video {
    right: 30px;
}

.video-thumb {
    width: 120px;
    height: 70px;

    object-fit: cover;

    cursor: pointer;

    opacity: .6;

    border:
        2px solid transparent;
}

.video-thumb.active {
    opacity: 1;
    border-color: #0db8ec;
}

.video-thumb {

    width: 120px;
    height: 70px;

    background: #111;

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

    font-size: 30px;

    cursor: pointer;

    opacity: .6;

    border:
        2px solid transparent;
}

.video-thumb.active {

    opacity: 1;

    border-color:
        #0db8ec;
}

.play-icon {

    position: absolute;
    inset: 0;

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

    font-size: 80px;

    color: white;

    background:
        rgba(
            0,
            0,
            0,
            .25
        );

    pointer-events: none;
}

.video-thumb {

    width: 120px;
    height: 70px;

    background:
        #111;

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

    font-size: 28px;

    color: white;

    cursor: pointer;

    border:
        2px solid
        transparent;

    opacity: .6;

    flex-shrink: 0;
}

.video-thumb.active {

    border-color:
        #0db8ec;

    opacity: 1;
}

.prev-video,
.next-video {

    position: absolute;

    top: 50%;
    transform:
        translateY(-50%);

    font-size: 50px;
    color: white;

    cursor: pointer;

    user-select: none;
}

.prev-video {
    left: 30px;
}

.next-video {
    right: 30px;
}

.close-video {

    position: absolute;

    top: 20px;
    right: 40px;

    font-size: 50px;
    color: white;

    cursor: pointer;
}

.video-grid {

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(
                350px,
                1fr
            )
        );

    gap: 30px;
}

.video-box {

    position: relative;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #111;

    cursor: pointer;

    border:
        1px solid #222;

    transition: .3s;
}

.video-box:hover {

    border-color:
        #0db8ec;

    transform:
        translateY(-5px);
}

.video-box img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.play-icon {

    position: absolute;

    inset: 0;

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

    font-size: 80px;

    color: white;

    background:
        rgba(
            0,
            0,
            0,
            .25
        );

    pointer-events: none;
}

.video-thumb {

    width: 120px;
    height: 70px;

    object-fit: cover;

    border:
        2px solid
        transparent;

    cursor: pointer;

    opacity: .6;

    flex-shrink: 0;

    transition: .3s;
}

.video-thumb.active {

    border-color:
        #0db8ec;

    opacity: 1;
}

.video-thumb:hover {

    opacity: 1;
}

.product-section1 {

    margin-top: -150px;
    
    padding-bottom: 0px;
    border-bottom: 2px solid #0db8ec;
}

.product-section {
	
    margin: 1px 0;
    padding-bottom: 1px;
    border-bottom: 2px solid #0db8ec;
	
}

.product-section2 {

    border-bottom: none;
    padding-bottom: 0;
}

.product-content { 
	display: flex; 
	align-items: center; 
	gap: 60px; 
	background: rgba(20,20,20,.9); 
	padding: 50px; 
	border-left: 0px solid #0db8ec; 
}

.product-content.reverse {

    flex-direction:
        row-reverse;
}

.product-text {

    flex: 1;
}

.product-text h2 {

    color:
        #0db8ec;

    font-size:
        36px;

    margin-bottom:
        25px;
}

.product-text p {

    line-height:
        1.9;

    font-size:
        18px;
}

.product-image {

    flex: 1;
}

.product-image img {

    width: 30%;
    display: block;

    border-radius: 10px;

    object-fit: cover;
}

.contact-section {

    margin: 80px 0;
	margin-top: -150px;
}

.contact-section h1 {

    color: #0db8ec;
    margin-bottom: 50px;
}

.contact-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 50px;

    background:
        rgba(20,20,20,.9);

    padding: 50px;
}

.contact-info p {

    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-info strong {

    color: #0db8ec;
}

.contact-map iframe {

    width: 100%;
    height: 100%;

    min-height: 450px;

    border: 0;
}

.offer-section {

    margin: 80px 0;

    background:
        rgba(20,20,20,.9);

    padding: 50px;
}

.offer-section h2 {

    color: #0db8ec;

    margin-bottom: 40px;
}

.offer-form {

    display: flex;
    flex-direction: column;

    gap: 20px;
}

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

    background:
        rgba(0,0,0,.6);

    border:
        1px solid #333;

    padding: 18px;

    color: #ffffff;

    font-size: 16px;

    outline: none;
}

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

    border-color:
        #0db8ec;
}

.offer-form button {

    background:
        #0db8ec;

    color:
        #000000;

    border: 0;

    padding: 18px;

    font-size: 16px;

    cursor: pointer;

    font-weight: bold;

    transition: .3s;
}

.offer-form button:hover {

    background:
        #ffffff;
}

#form-message {

    margin-top: 25px;

    font-size: 16px;

    display: none;
}

#form-message.success {

    display: block;
    color: #0db8ec;
}

#form-message.error {

    display: block;
    color: #ff5555;
}