/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --fresh-teal: #33C6C6;
    --deep-aqua: #2FAFB0;
    --leaf-green: #73B92D;
    --lime-green: #A9C91D;
    --soft-white: #F8FAFA;
    --industrial-dark: #2D3436;
    --text-light: #6b7280;
    --gradient-1: linear-gradient(135deg, #33C6C6, #2FAFB0);
    --gradient-2: linear-gradient(135deg, #73B92D, #33C6C6);
    --gradient-3: linear-gradient(135deg, #2FAFB0, #A9C91D);
    --shadow-teal: 0 10px 40px rgba(51, 198, 198, 0.2);
    --shadow-glow: 0 0 30px rgba(51, 198, 198, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--industrial-dark);
    background-color: var(--soft-white);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(51, 198, 198, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(115, 185, 45, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--industrial-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Glassmorphism Base */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(51, 198, 198, 0.1);
}

.glass-teal {
    background: rgba(51, 198, 198, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(51, 198, 198, 0.2);
}

/* Floating Background Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(51, 198, 198, 0.1), transparent);
    animation: float 20s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape:nth-child(3) {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(50px, 50px) scale(1.1);
        opacity: 0.6;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 8px 25px rgba(51, 198, 198, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(51, 198, 198, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--fresh-teal);
    border: 2px solid var(--fresh-teal);
}

.btn-outline:hover {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-teal);
}

.btn-small {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 17px;
    font-weight: 700;
}

/* Header */
.header {
    background: rgba(248, 250, 250, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(51, 198, 198, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(51, 198, 198, 0.1);
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.header:hover::before {
    opacity: 1;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 130px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(51, 198, 198, 0.3));
    transition: var(--transition);
}

.logo:hover img {
    filter: drop-shadow(0 6px 12px rgba(51, 198, 198, 0.5));
}

.nav-list {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-list a {
    color: var(--industrial-dark);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.nav-list a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transform: translateX(-50%);
    transition: var(--transition);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--fresh-teal);
    transition: var(--transition);
    opacity: 0;
}

.nav-list a:hover::before,
.nav-list a.active::before {
    width: 100%;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
    opacity: 1;
}

.nav-list a:hover {
    color: var(--fresh-teal);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gradient-2);
    transition: var(--transition);
}

/* Premium Hero Section */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1d1f 0%, #2D3436 50%, #1a1d1f 100%);
    overflow: hidden;
    padding: 60px 0 100px;
}

@media (min-height: 900px) {
    .hero-premium {
        padding: 60px 0 120px;
    }
}

@media (max-height: 700px) {
    .hero-premium {
        padding: 120px 0 80px;
        min-height: auto;
    }
}

/* Hero Background Layer */
.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(51, 198, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(115, 185, 45, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(47, 175, 176, 0.08) 0%, transparent 60%);
    animation: bgPulse 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes bgPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Floating Transparent Film Shapes */
.hero-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-film {
    position: absolute;
    background: linear-gradient(135deg, rgba(51, 198, 198, 0.1), rgba(115, 185, 45, 0.08));
    backdrop-filter: blur(40px);
    border-radius: 50%;
    border: 1px solid rgba(51, 198, 198, 0.2);
    box-shadow: 0 8px 32px rgba(51, 198, 198, 0.15);
}

.film-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: 10%;
    animation: floatFilm1 20s ease-in-out infinite;
}

.film-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: 5%;
    animation: floatFilm2 18s ease-in-out infinite;
}

.film-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: -50px;
    animation: floatFilm3 22s ease-in-out infinite;
}

.film-4 {
    width: 350px;
    height: 350px;
    top: 20%;
    left: -100px;
    animation: floatFilm4 25s ease-in-out infinite;
}

@keyframes floatFilm1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, 50px) rotate(10deg);
    }
}

@keyframes floatFilm2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-40px, -30px) rotate(-8deg);
    }
}

@keyframes floatFilm3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-25px, 40px) rotate(12deg);
    }
}

@keyframes floatFilm4 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(50px, -35px) rotate(-10deg);
    }
}

/* Animated Wave Container */
.hero-wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    z-index: 3;
    pointer-events: none;
}

.hero-wave {
    width: 100%;
    height: 100%;
}

.wave-path {
    animation: waveFlow 15s ease-in-out infinite;
    transform-origin: center;
}

.wave-1 {
    animation-delay: 0s;
}

.wave-2 {
    animation-delay: -5s;
}

@keyframes waveFlow {

    0%,
    100% {
        d: path("M0,200 Q300,100 600,200 T1200,200 L1200,600 L0,600 Z");
    }

    50% {
        d: path("M0,250 Q300,150 600,250 T1200,250 L1200,600 L0,600 Z");
    }
}

/* Particle System */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(51, 198, 198, 0.8), transparent);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: -3s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: -6s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: -9s;
}

.particle:nth-child(5) {
    left: 60%;
    animation-delay: -12s;
}

.particle:nth-child(6) {
    left: 70%;
    animation-delay: -15s;
}

.particle:nth-child(7) {
    left: 80%;
    animation-delay: -18s;
}

.particle:nth-child(8) {
    left: 90%;
    animation-delay: -21s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Hero Premium Wrapper */
.hero-premium-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
    position: relative;
    z-index: 5;
    max-width: 100%;
}

/* Hero Premium Visual */
.hero-premium-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: block;
}

.visual-glass-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

/* Hero Glass Card */
.hero-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 45px 40px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInLeft 1s ease-out;
    max-width: 100%;
    width: 100%;
    margin: 0;
}

@media (min-height: 900px) {
    .hero-glass-card {
        padding: 55px 50px;
    }
}

.hero-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(51, 198, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(51, 198, 198, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(51, 198, 198, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fresh-teal);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.badge-icon {
    font-size: 16px;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Hero Premium Title */
.hero-premium-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -1px;
}

@media (min-height: 900px) {
    .hero-premium-title {
        font-size: 56px;
        margin-bottom: 25px;
    }
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease-out both;
}

.title-line:nth-child(1) {
    animation-delay: 0.3s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.5s;
}

.title-highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Hero Premium Subtitle */
.hero-premium-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@media (min-height: 900px) {
    .hero-premium-subtitle {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 35px;
    }
}

/* Premium Buttons */
.hero-premium-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
}

@media (min-height: 900px) {
    .hero-premium-buttons {
        gap: 20px;
        margin-bottom: 40px;
    }
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-premium:hover::before {
    width: 400px;
    height: 400px;
}

.btn-premium-primary {
    background: var(--gradient-1);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(51, 198, 198, 0.4);
}

.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(51, 198, 198, 0.5);
}

.btn-premium-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-premium-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    font-size: 20px;
    transition: var(--transition);
}

.btn-premium:hover .btn-icon {
    transform: translateX(5px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-gray {
    background: linear-gradient(180deg, var(--soft-white) 0%, rgba(51, 198, 198, 0.03) 100%);
    position: relative;
}

.section-gray::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-1);
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--industrial-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    transition: var(--transition);
}

.section-header:hover .section-title::after {
    width: 100%;
}

.section-divider {
    width: 100px;
    height: 5px;
    background: var(--gradient-1);
    margin: 0 auto 25px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 20px rgba(51, 198, 198, 0.4);
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: var(--gradient-1);
    filter: blur(10px);
    opacity: 0.3;
    z-index: -1;
}

.section-description {
    font-size: 19px;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Preview */
.about-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(51, 198, 198, 0.2);
    box-shadow: 0 10px 40px rgba(51, 198, 198, 0.1);
}

.about-text {
    font-size: 19px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 35px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.product-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(51, 198, 198, 0.2);
    box-shadow: 0 8px 32px rgba(51, 198, 198, 0.15);
    transition: var(--transition-smooth);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.product-card:hover::before {
    opacity: 0.05;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(51, 198, 198, 0.3);
    border-color: var(--fresh-teal);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(51, 198, 198, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(2deg);
}

.product-info {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.product-title {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--industrial-dark);
    font-weight: 700;
}

.product-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 45px 35px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(51, 198, 198, 0.2);
    box-shadow: 0 8px 32px rgba(51, 198, 198, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(51, 198, 198, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover::before {
    opacity: 1;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(51, 198, 198, 0.25);
    border-color: var(--fresh-teal);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 50%;
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(51, 198, 198, 0.3);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(51, 198, 198, 0.5);
}

.feature-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--industrial-dark);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.industry-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(51, 198, 198, 0.2);
    box-shadow: 0 8px 32px rgba(51, 198, 198, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-1);
    transition: var(--transition);
    box-shadow: 0 0 15px var(--fresh-teal);
}

.industry-card:hover::before {
    height: 100%;
}

.industry-card:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 45px rgba(51, 198, 198, 0.25);
    border-color: var(--fresh-teal);
}

.industry-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--industrial-dark);
    font-weight: 700;
    transition: var(--transition);
}

.industry-card:hover h3 {
    color: var(--fresh-teal);
}

.industry-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(51, 198, 198, 0.2);
    box-shadow: 0 8px 32px rgba(51, 198, 198, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: var(--fresh-teal);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(51, 198, 198, 0.25);
    border-color: var(--fresh-teal);
}

.testimonial-content {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
}

.testimonial-author {
    position: relative;
    z-index: 1;
}

.testimonial-author h4 {
    font-size: 19px;
    margin-bottom: 6px;
    color: var(--industrial-dark);
    font-weight: 700;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--fresh-teal);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-2);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulseGlow 6s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100'%3E%3Cpath fill='%23F8FAFA' d='M0,50 Q300,0 600,50 T1200,50 L1200,100 L0,100 Z'/%3E%3C/svg%3E");
    background-size: cover;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: white;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 22px;
    margin-bottom: 50px;
    opacity: 0.95;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-contact {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-contact span {
    font-size: 17px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.cta-contact span:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--industrial-dark) 0%, #1a1d1f 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(51, 198, 198, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(115, 185, 45, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: white;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col h4 {
    font-size: 19px;
    margin-bottom: 25px;
    color: white;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-1);
}

.footer-col p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--fresh-teal);
    padding-left: 8px;
}

.contact-info li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 2;
}

.contact-info li a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info li a:hover {
    color: var(--fresh-teal);
    padding-left: 0 !important;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(51, 198, 198, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(51, 198, 198, 0.3);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(51, 198, 198, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Page Banner */
.page-banner {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    background-image: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(51, 198, 198, 0.85) 0%, rgba(115, 185, 45, 0.75) 100%);
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.banner-overlay::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 80px,
            rgba(255, 255, 255, 0.03) 80px,
            rgba(255, 255, 255, 0.03) 160px);
    animation: slidePattern 15s linear infinite;
}

.page-banner .container {
    position: relative;
    z-index: 3;
}

.banner-title {
    font-size: 58px;
    color: white;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.banner-subtitle {
    font-size: 22px;
    color: white;
    text-align: center;
    opacity: 0.95;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* About Page Styles */
.about-intro {
    padding: 100px 0;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-intro-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--industrial-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.about-intro-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.about-intro-text p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 25px;
}

.about-intro-image {
    position: relative;
}

.about-intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 24px;
    opacity: 0.1;
    z-index: 0;
}

.about-intro-image img {
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(51, 198, 198, 0.3);
    position: relative;
    z-index: 1;
}

/* Mission Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 45px;
    border-radius: 24px;
    border: 1px solid rgba(51, 198, 198, 0.2);
    box-shadow: 0 10px 40px rgba(51, 198, 198, 0.15);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: var(--transition);
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(51, 198, 198, 0.3);
}

.mv-icon {
    margin: 0 auto 35px;
    color: var(--fresh-teal);
    filter: drop-shadow(0 4px 15px rgba(51, 198, 198, 0.3));
}

.mission-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--industrial-dark);
    font-weight: 700;
}

.mission-card p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
}

/* Strengths */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.strength-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 45px 35px;
    border-radius: 24px;
    border: 1px solid rgba(51, 198, 198, 0.2);
    box-shadow: 0 8px 32px rgba(51, 198, 198, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.strength-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(51, 198, 198, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: var(--transition);
}

.strength-card:hover::before {
    transform: translate(30%, -30%) scale(1.5);
}

.strength-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(51, 198, 198, 0.25);
    border-color: var(--fresh-teal);
}

.strength-number {
    font-size: 80px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 25px;
    right: 25px;
    line-height: 1;
    opacity: 0.15;
    transition: var(--transition);
}

.strength-card:hover .strength-number {
    opacity: 0.25;
    transform: scale(1.1);
}

.strength-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--industrial-dark);
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.strength-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* Products Page */
.products-grid-large {
    display: grid;
    gap: 50px;
}

.product-card-large {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 50px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(51, 198, 198, 0.2);
    box-shadow: 0 10px 40px rgba(51, 198, 198, 0.15);
    transition: var(--transition-smooth);
    position: relative;
}

.product-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.product-card-large:hover::before {
    opacity: 0.03;
}

.product-card-large:hover {
    box-shadow: 0 25px 70px rgba(51, 198, 198, 0.3);
    border-color: var(--fresh-teal);
    transform: translateY(-5px);
}

.product-image-large {
    width: 100%;
    height: 100%;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.product-image-large::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(51, 198, 198, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.product-card-large:hover .product-image-large::after {
    opacity: 1;
}

.product-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card-large:hover .product-image-large img {
    transform: scale(1.08);
}

.product-details {
    padding: 25px 25px 25px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.product-title-large {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--industrial-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.product-title-large::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.product-description-large {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 18px;
}

.product-features {
    list-style: none;
    margin-bottom: 22px;
}

.product-features li {
    font-size: 14px;
    color: var(--text-light);
    padding: 7px 0;
    padding-left: 35px;
    position: relative;
    transition: var(--transition);
}

.product-features li:hover {
    color: var(--fresh-teal);
    padding-left: 40px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--fresh-teal);
    font-weight: 700;
    font-size: 20px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(51, 198, 198, 0.1);
    border-radius: 50%;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 70px;
}

.contact-form-container h2,
.contact-details-container h2 {
    font-size: 36px;
    margin-bottom: 35px;
    color: var(--industrial-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.contact-form-container h2::after,
.contact-details-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--industrial-dark);
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid rgba(51, 198, 198, 0.2);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--fresh-teal);
    box-shadow: 0 0 0 4px rgba(51, 198, 198, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 45px;
    border-radius: 24px;
    border: 1px solid rgba(51, 198, 198, 0.2);
    box-shadow: 0 10px 40px rgba(51, 198, 198, 0.15);
}

.contact-info-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(51, 198, 198, 0.3);
    transition: var(--transition);
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-info-item h4 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--industrial-dark);
    font-weight: 700;
}

.contact-info-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-info-item p a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-item p a:hover {
    color: var(--fresh-teal);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--soft-white) 0%, rgba(51, 198, 198, 0.03) 100%);
}

.map-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 42px;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(51, 198, 198, 0.2);
    border: 1px solid rgba(51, 198, 198, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-premium-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-premium-visual {
        min-height: 450px;
        height: 45vh;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .section-title {
        font-size: 40px;
    }

    .product-card-large {
        grid-template-columns: 1fr;
    }

    .product-image-large {
        min-height: 180px;
    }

    .product-details {
        padding: 40px 30px;
    }

    .about-intro-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .hero-premium-wrapper {
        gap: 30px;
    }

    .hero-premium-visual {
        min-height: 350px;
        height: 40vh;
    }

    .nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(248, 250, 250, 0.98);
        backdrop-filter: blur(20px);
        transition: var(--transition);
        box-shadow: 0 10px 40px rgba(51, 198, 198, 0.2);
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 50px 30px;
        gap: 25px;
    }

    .nav-list a {
        font-size: 18px;
        padding: 15px 0;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1000;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-wrapper .btn-primary {
        display: none;
    }

    .hero {
        height: 80vh;
        min-height: 550px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .section-description {
        font-size: 17px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-content p {
        font-size: 19px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 25px;
    }

    .cta-contact {
        flex-direction: column;
        gap: 18px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-banner {
        height: 350px;
    }

    .banner-title {
        font-size: 40px;
    }

    .banner-subtitle {
        font-size: 18px;
    }

    .about-intro-text h2 {
        font-size: 36px;
    }

    .about-content {
        padding: 40px 30px;
    }

    .mission-card {
        padding: 45px 35px;
    }

    .mission-card h2 {
        font-size: 32px;
    }

    .product-title-large {
        font-size: 32px;
    }

    .contact-form-container h2,
    .contact-details-container h2 {
        font-size: 32px;
    }

    .contact-info-card {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 50px;
        height: 50px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .section-divider {
        width: 70px;
    }

    .btn-lg {
        padding: 15px 32px;
        font-size: 16px;
    }

    .product-info {
        padding: 25px 20px;
    }

    .feature-card {
        padding: 35px 25px;
    }

    .feature-icon {
        width: 75px;
        height: 75px;
    }

    .industry-card {
        padding: 30px 25px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .cta-section {
        padding: 70px 0;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-content p {
        font-size: 17px;
    }

    .banner-title {
        font-size: 32px;
    }

    .mission-card {
        padding: 35px 25px;
    }

    .strength-card {
        padding: 35px 25px;
    }

    .strength-number {
        font-size: 64px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* Success Message */
.success-message {
    background: var(--gradient-1);
    color: white;
    padding: 18px 25px;
    border-radius: 12px;
    margin-top: 25px;
    display: none;
    font-size: 15px;
    box-shadow: 0 8px 25px rgba(51, 198, 198, 0.3);
}

.success-message strong {
    font-weight: 700;
    margin-right: 8px;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.6s ease;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    width: 20px;
    height: 20px;
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--soft-white);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-2);
}

/* Selection Color */
::selection {
    background: var(--fresh-teal);
    color: white;
}

::-moz-selection {
    background: var(--fresh-teal);
    color: white;
}

/* Image Fade In */
img {
    opacity: 0;
    transition: opacity 0.6s ease;
}

img.loaded,
img[src] {
    opacity: 1;
}

/* Noise Texture Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}

/* Print Styles */
@media print {

    .header,
    .footer,
    .floating-shapes,
    .cta-section {
        display: none;
    }

    body {
        background: white;
    }
}

/* Hero Premium Visual */
.hero-premium-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out 0.5s both;
    max-width: 100%;
    overflow: hidden;
}

@media (min-height: 900px) {
    .hero-premium-visual {
        height: 580px;
        display: none;
    }
}

@media (max-height: 700px) {
    .hero-premium-visual {
        height: 400px;

    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.visual-glass-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Glass Circles */
.glass-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(51, 198, 198, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(51, 198, 198, 0.2);
    box-shadow:
        0 8px 32px rgba(51, 198, 198, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.circle-1 {
    width: 500px;
    height: 500px;
    animation: rotateCircle1 20s linear infinite;
}

.circle-2 {
    width: 380px;
    height: 380px;
    animation: rotateCircle2 15s linear infinite reverse;
}

.circle-3 {
    width: 260px;
    height: 260px;
    animation: rotateCircle3 18s linear infinite;
}

@keyframes rotateCircle1 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateCircle2 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateCircle3 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Hero Center Icon */
.hero-center-icon {
    position: relative;
    z-index: 10;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(51, 198, 198, 0.5));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(51, 198, 198, 0.8));
    }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--fresh-teal));
    animation: scrollLineMove 2s ease-in-out infinite;
}

@keyframes scrollLineMove {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0;
    }

    50% {
        transform: translateY(20px);
        opacity: 1;
    }
}

.scroll-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive Hero Premium */
@media (max-width: 1200px) {
    .hero-premium {
        padding: 60px 0 90px;
    }

    .hero-premium-wrapper {
        gap: 0px;
    }

    .hero-glass-card {
        padding: 40px 35px;
    }

    .hero-premium-title {
        font-size: 46px;
        margin-bottom: 18px;
    }

    .hero-premium-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero-premium-buttons {
        margin-bottom: 30px;
    }

    .hero-premium-visual {
        height: 450px;
    }

    .circle-1 {
        width: 400px;
        height: 400px;
    }

    .circle-2 {
        width: 300px;
        height: 300px;
    }

    .circle-3 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 1024px) {
    .hero-premium {
        min-height: auto;
        padding: 60px 0 70px;
    }

    .hero-premium-wrapper {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .hero-glass-card {
        padding: 38px 32px;
        margin: 0 auto;
        max-width: 680px;
    }

    .hero-premium-title {
        font-size: 42px;
        margin-bottom: 16px;
    }

    .hero-premium-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-premium-buttons {
        margin-bottom: 28px;
        gap: 16px;
    }

    .hero-premium-visual {
        height: 360px;
        margin: 0 auto;
        max-width: 480px;
        display: none;
    }

    .circle-1 {
        width: 340px;
        height: 340px;
    }

    .circle-2 {
        width: 250px;
        height: 250px;
    }

    .circle-3 {
        width: 160px;
        height: 160px;
    }

    .film-1,
    .film-2,
    .film-3,
    .film-4 {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .hero-premium {
        min-height: auto;
        padding: 60px 0 60px;
    }

    .hero-glass-card {
        padding: 32px 26px;
        margin: 0;
    }

    .hero-badge {
        margin-bottom: 16px;
        padding: 7px 16px;
        font-size: 12px;
    }

    .hero-premium-title {
        font-size: 34px;
        margin-bottom: 14px;
    }

    .hero-premium-subtitle {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .hero-premium-buttons {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 26px;
    }

    .btn-premium {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
    }

    .hero-stats {
        gap: 18px;
        justify-content: center;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    .hero-premium-visual {
        height: 300px;
        margin: 0 auto;
        display: none;
    }

    .circle-1 {
        width: 280px;
        height: 280px;
    }

    .circle-2 {
        width: 200px;
        height: 200px;
    }

    .circle-3 {
        width: 120px;
        height: 120px;
    }

    .hero-center-icon svg {
        width: 70px;
        height: 70px;
    }

    .floating-film {
        opacity: 0.4;
    }

    .film-1,
    .film-2 {
        width: 180px;
        height: 180px;
    }

    .film-3,
    .film-4 {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .hero-premium {
        padding: 60px 0 50px;
    }

    .hero-glass-card {
        padding: 26px 20px;
        border-radius: 24px;
        margin: 0;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 14px;
    }

    .hero-premium-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero-premium-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-premium-buttons {
        margin-bottom: 24px;
        gap: 12px;
    }

    .btn-premium {
        padding: 13px 26px;
        font-size: 14px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .stat-item {
        flex: 0 0 calc(33.333% - 16px);
        min-width: 70px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 10px;
    }

    .stat-divider {
        display: none;
    }

    .hero-premium-visual {
        height: 260px;
        margin: 0 auto;
        display: none;
    }

    .circle-1 {
        width: 230px;
        height: 230px;
    }

    .circle-2 {
        width: 160px;
        height: 160px;
    }

    .circle-3 {
        width: 90px;
        height: 90px;
    }

    .hero-center-icon svg {
        width: 50px;
        height: 50px;
    }

    .hero-scroll-indicator {
        bottom: 20px;
    }

    .scroll-line {
        height: 25px;
    }

    .scroll-text {
        font-size: 9px;
    }
}

/* Mouse Parallax Effect */
.hero-premium[data-parallax="true"] .floating-film {
    transition: transform 0.3s ease-out;
}

/* Performance Optimization */
@media (prefers-reduced-motion: reduce) {

    .hero-premium *,
    .hero-premium *::before,
    .hero-premium *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Button Ripple Effect */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    width: 20px;
    height: 20px;
    animation: btnRippleEffect 0.6s ease-out;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

@keyframes btnRippleEffect {
    to {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Enhanced Scroll Indicator Transition */
.hero-scroll-indicator {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.hero-scroll-indicator:hover .scroll-line {
    background: var(--gradient-1);
}

/* Glass Card Transition */
.hero-glass-card {
    transition: transform 0.3s ease;
}

/* Center Icon Transition */
.hero-center-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

/* Enhanced Floating Film Transitions */
.floating-film {
    transition: transform 0.3s ease-out;
    will-change: transform;
}

/* Glass Circle Transitions */
.glass-circle {
    transition: transform 0.3s ease-out;
    will-change: transform;
}

/* Optimize Performance */
.hero-premium * {
    will-change: auto;
}

.hero-premium .floating-film,
.hero-premium .glass-circle,
.hero-premium .particle {
    will-change: transform;
}

/* Additional Glow Effects */
.hero-badge:hover {
    background: rgba(51, 198, 198, 0.25);
    box-shadow: 0 0 20px rgba(51, 198, 198, 0.4);
    transform: scale(1.05);
    transition: var(--transition);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    transition: var(--transition);
}

/* Wave Container Pointer Events */
.hero-wave-container,
.hero-particles,
.hero-floating-shapes {
    pointer-events: none;
}

/* Ensure Content is Clickable */
.hero-premium-content,
.hero-premium-visual {
    pointer-events: auto;
}

/* Loading State for Hero */
.hero-premium.loading {
    opacity: 0;
}

.hero-premium.loaded {
    opacity: 1;
    transition: opacity 0.6s ease;
}

/* Hero Image Card */
.hero-image-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    z-index: 10;
}

.hero-image-card:hover {
    transform: scale(1.02);
    box-shadow: 0 35px 70px rgba(51, 198, 198, 0.5);
}

.hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-image-card:hover .hero-image {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.hero-image-card:hover .hero-image-overlay {
    transform: translateY(0);
    opacity: 1;
}

.overlay-text-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.overlay-icon {
    font-size: 24px;
    color: var(--fresh-teal);
    animation: rotate 4s linear infinite;
}

.overlay-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.overlay-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

