:root {
    /* Colors */
    --color-primary: #1a1a1a;
    --color-accent: #2c5946;
    --color-accent-light: #3d7960;
    --color-background: #ffffff;
    --color-surface: #f7f9fa;
    --color-text: #333333;
    --color-text-muted: #666666;
    --color-border: #e2e8f0;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    --transition-fast: all 0.2s ease;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.text-sm {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.text-muted {
    color: var(--color-text-muted);
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.bg-light {
    background-color: var(--color-surface);
}

.section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
}

.section-header {
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}

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

/* Buttons with Press States */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: none;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background-color: white;
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-outline:active {
    transform: translateY(1px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent);
    transition: var(--transition-fast);
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 100px;
}

.hero-bg,
.parallax-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Reverted to parallax moving effect */
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
}

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

.hero-overlay {
    display: none;
    /* Removed as requested to keep photo crisp */
}

.hero-content {
    color: white;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2.5rem;
    max-width: 650px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Parallax Divider */
.parallax-divider {
    position: relative;
    height: 400px;
}

/* Removed dimming overlay to keep background photos perfectly clear */

/* Brands & Cards */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.brand-card,
.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Hover & Press effects for Cards */
.hover-raise:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-accent-light);
}

.hover-raise:active {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.brand-logo-wrapper {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.brand-logo-wrapper img {
    width: 100%;
    max-width: 500px;
    max-height: 160px;
    object-fit: contain;
    object-position: left center;
}

.brand-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: auto;
    padding-top: 2.5rem;
}

.brand-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: var(--transition-fast);
}

.brand-icon:hover {
    transform: scale(1.15) rotate(5deg);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.feature-card ul {
    padding-left: 1.25rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.feature-card li {
    margin-bottom: 0.5rem;
}

/* Swiper Gallery */
.swiper {
    width: 100%;
    padding: 2rem 1rem 4rem !important;
}

.swiper-slide {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 350px;
    transition: var(--transition);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.swiper-slide:hover img {
    transform: scale(1.08);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.slide-overlay i {
    color: white;
    width: 48px;
    height: 48px;
    transform: scale(0.5);
    transition: var(--transition);
}

.swiper-slide:hover .slide-overlay {
    opacity: 1;
}

.swiper-slide:hover .slide-overlay i {
    transform: scale(1);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-primary) !important;
    background: white;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

/* Contact Section */
.contact-box {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    display: inline-block;
    text-align: left;
    box-shadow: var(--shadow-md);
    margin-top: 1rem;
    transition: var(--transition);
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent-light);
}

.contact-box h3 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-box p {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
}

.contact-box a {
    color: var(--color-accent);
    font-weight: 500;
}

.contact-box a:hover {
    color: var(--color-primary);
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 48px;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links p,
.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
}

/* Progressive Animation Classes */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.fade-in.visible {
    opacity: 1;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.slide-in.visible {
    opacity: 1;
    transform: translateX(0);
}

.pop-in {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pop-in.visible {
    opacity: 1;
    transform: scale(1);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

/* Tooltip (Basic CSS) */
.tooltip {
    position: relative;
    cursor: help;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-links {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .parallax-divider {
        background-attachment: scroll;
        height: 250px;
    }

    .brand-logo-wrapper {
        justify-content: center;
    }

    .brand-icons {
        justify-content: center;
    }

    .contact-box {
        padding: 2rem;
        width: 100%;
    }
}

/* Downloads Section */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.download-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.download-card h4 {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-surface);
}

.download-list {
    list-style: none;
    padding: 0;
}

.download-list li {
    margin-bottom: 1rem;
}

.download-list li:last-child {
    margin-bottom: 0;
}

.download-link {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.download-link:hover {
    background: white;
    box-shadow: var(--shadow-md);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.download-link i {
    color: var(--color-accent);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Lightbox Maximized View */
.goverlay {
    background: rgba(0, 0, 0, 0.95) !important;
}

.glightbox-clean .gslide-inner-content {
    max-width: 100vw !important;
    margin: 0 !important;
}

.glightbox-clean .ginner-container {
    padding: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
}

.gslide-image img {
    width: 100vw !important;
    height: 100vh !important;
    max-height: none !important;
    max-width: none !important;
    object-fit: contain !important;
    border-radius: 0 !important;
}

.gnext,
.gprev,
.gclose {
    z-index: 99999 !important;
}