/* Custom properties */
:root {
    --black-bg: #030303;
    --dark-grey: #0a0a0b;
    --light-grey: #121212;
    --text-primary: #ffffff;
    --text-secondary: #a5a9b4;
    --accent-color: #00c3e3;
    --accent-hover: #00e0ff;
    --glass-bg: rgba(20, 20, 20, 0.7);
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    background-color: var(--black-bg);
    color: var(--text-secondary);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    color: var(--text-primary);
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 100px 0;
}

.text-center { text-align: center; }
.dark-bg { background-color: var(--dark-grey); }

/* --- Top Banner --- */
.top-banner {
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2000;
}

.top-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.top-banner a {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.top-banner a:hover {
    color: var(--accent-color);
}

.top-banner-separator {
    color: rgba(255,255,255,0.3);
}

/* --- Header / Nav --- */
header {
    position: fixed;
    top: 40px; /* offset by top banner */
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: linear-gradient(rgba(0,0,0,0.8), transparent);
}

header.scrolled {
    top: 0;
    background: rgba(3, 3, 3, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-integrated {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:not(.bubble-btn) {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

.nav-links a:not(.bubble-btn):hover {
    color: var(--accent-color);
}

.logo img {
    height: 70px;
}

/* --- Buttons --- */
.bubble-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.bubble-btn .btn-text {
    position: relative;
    z-index: 2;
}

.accent-btn {
    background-color: var(--accent-color);
    color: #000;
    border: none;
}

.outline-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-hover-circle {
    position: absolute;
    width: 0;
    height: 0;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 0;
}

.btn-hover-circle.dark {
    background: #000;
}

.bubble-btn:hover .btn-hover-circle {
    width: 300px;
    height: 300px;
}

.accent-btn:hover {
    color: #fff;
}

.outline-btn:hover {
    color: #000;
    border-color: #fff;
}

.large-btn {
    padding: 18px 45px;
    font-size: 1rem;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(0.2);
    transform: scale(1.05);
}

.hero-slide.active .hero-bg-image {
    animation: zoomOut 20s infinite alternate linear;
}

.blur-bg {
    filter: grayscale(0.4) blur(30px) brightness(0.3);
    transform: scale(1.1);
}

.hero-bg-image.portrait-focus {
    object-fit: contain;
    filter: none;
    box-shadow: 0 0 100px rgba(0,0,0,0.9);
}

@keyframes zoomOut {
    0% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%);
}

.hero-content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 50px;
}

.hero-content {
    max-width: 800px;
}

.hero-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.split-text-container {
    margin-bottom: 20px;
}

.split-text {
    font-family: 'Anton', sans-serif;
    font-size: 6rem;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.split-text.in-view {
    opacity: 1;
    transform: translateY(0);
}

.split-text-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.split-text-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}


.hero-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    text-transform: none;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
}


/* --- Services Section --- */
.services-section {
    background-color: var(--black-bg);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: center;
}

.service-header .service-card-title {
    font-size: 4rem;
    color: rgba(255,255,255,0.05);
    line-height: 0.9;
    margin-bottom: 10px;
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
}

.service-header .service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
}

.service-image-container {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
}

.service-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    filter: brightness(0.6);
}

.service-image-container:hover .service-bg-img {
    transform: scale(1.05);
}

.service-info-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0.9;
    transition: var(--transition);
}

.service-image-container:hover .service-info-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,195,227,0.2) 0%, rgba(0,0,0,0.8) 40%, transparent 100%);
}

.service-desc {
    font-size: 1.1rem;
    color: #fff;
    max-width: 600px;
    margin-bottom: 30px;
}

.protects-against em {
    display: block;
    font-style: normal;
    color: #ccc;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.icons-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.icon-item span {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.service-buttons {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.service-image-container:hover .service-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* --- Combo Section --- */
.combo-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-grey) 0%, var(--black-bg) 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.combo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.combo-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.combo-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
}

.combo-img {
    width: 100%;
    display: block;
    filter: brightness(0.8);
}

.section-heading {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.combo-paragraph {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

/* --- Testimonials --- */
.testimonials-section {
    padding: 100px 0;
    overflow: hidden;
    background-color: var(--dark-grey);
}

.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-slider::before,
.testimonial-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.testimonial-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--dark-grey), transparent);
}

.testimonial-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--dark-grey), transparent);
}


.testimonial-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.testimonial-card {
    background: var(--light-grey);
    padding: 40px;
    border-radius: 12px;
    width: 400px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.quote {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.9rem;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Footer --- */
footer {
    background-color: #000;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 300px;
    color: var(--text-secondary);
}

.footer-links h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-bottom: 20px;
    color: #fff;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-cta {
    text-align: right;
}

.footer-cta .bubble-btn {
    margin-bottom: 20px;
}

.footer-cta .address, .footer-cta .phone {
    font-size: 0.9rem;
}

.footer-cta .phone {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-top: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
}

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

.socials a {
    font-weight: 600;
}

.socials a:hover {
    color: var(--accent-color);
}

/* Animations & Utilities */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.5s; }
.delay-4 { transition-delay: 0.7s; }
.delay-5 { transition-delay: 0.9s; }

/* Responsive */
@media (max-width: 1024px) {
    .split-text { font-size: 4rem; }
    .service-wrapper { grid-template-columns: 1fr; }
    .service-header .service-card-title { font-size: 3rem; margin-bottom: 0; }
    .service-image-container { height: 400px; }
    .combo-container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-cta { text-align: left; }
}

@media (max-width: 768px) {
    header { top: 0; } /* Remove offset if top banner wraps or is hidden */
    .top-banner { display: none; } /* Hide on mobile for simplicity, or keep small */
    .nav-links { display: none; }
    .split-text { font-size: 3rem; }
    .hero-heading { font-size: 0.8rem; }
    .hero-subheading { font-size: 1.2rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .service-image-container { height: 350px; }
    .icons-grid { flex-direction: column; gap: 10px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-cta { text-align: center; }
    .footer-bottom { flex-direction: column; gap: 20px; }
}

/* --- Modal & Form Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--dark-grey);
    border: 1px solid rgba(0, 195, 227, 0.2);
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

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

.modal-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.modal-header p {
    font-size: 0.95rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.lux-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.lux-form input[type="text"],
.lux-form input[type="email"],
.lux-form input[type="tel"],
.lux-form select {
    width: 100%;
    padding: 12px 15px;
    background: var(--light-grey);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.lux-form input:focus,
.lux-form select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(0, 195, 227, 0.2);
}

.lux-form select:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: rgba(255,255,255,0.05);
}

.checkbox-group > label:first-child {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

/* Custom Checkbox */
.custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
    color: #ccc;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: var(--light-grey);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: var(--transition);
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--accent-color);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.full-width {
    width: 100%;
}

/* Modal scrollbar */
.modal-content::-webkit-scrollbar {
    width: 8px;
}
.modal-content::-webkit-scrollbar-track {
    background: var(--dark-grey);
}
.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Info Modal Content Styling */
.text-content {
    color: #e0e0e0;
    line-height: 1.6;
}

.text-content h3 {
    color: #fff;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.text-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.text-content ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.text-content ul li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.modal-alert {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent-color);
    padding: 15px;
    border-radius: 0 4px 4px 0;
    margin-top: 30px;
}

/* --- Credit Badge --- */
.credit-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
}

.credit-badge span {
    color: var(--text-secondary);
}

.eeteck-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 16px;
    border: 1px solid rgba(240, 180, 80, 0.6);
    border-radius: 20px;
    color: #f0b450;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    background: transparent;
}

.eeteck-btn:hover {
    background: rgba(240, 180, 80, 0.1);
}

/* --- Mobile Optimization --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    .top-banner-separator {
        display: none;
    }
    header nav.container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .nav-links {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        order: 3;
    }
    .nav-links a {
        font-size: 0.75rem;
    }
    .logo {
        order: 1;
    }
    .logo img {
        height: 50px;
    }
    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }
    .hero-sub {
        font-size: 1rem;
    }
    .section-heading {
        font-size: 2.2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .combo-container {
        flex-direction: column;
    }
    .combo-image-wrapper {
        flex: 1 1 auto;
        min-height: 300px;
    }
    .combo-content {
        padding: 40px 20px;
        text-align: center;
    }
    .button-wrapper {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .footer-brand {
        align-items: center;
    }
    .modal-content {
        width: 95%;
        padding: 30px 20px;
    }
    .modal-layout {
        flex-direction: column;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}
