/* ===== 
   TFG INNOVATIONS - PREMIUM WEBSITE STYLES
   =================================== */

:root {
    --primary-color: #0066ff;
    --secondary-color: #00d4ff;
    --accent-color: #ff0080;
    --dark-bg: #0a0e27;
    --darker-bg: #050812;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #b0b8d4;
    --neon-blue: #0066ff;
    --neon-cyan: #00d4ff;
    --neon-pink: #ff0080;
    --border-color: rgba(0, 212, 255, 0.2);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 0.8s ease-in-out 2.5s forwards;
}

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

.loading-logo {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.loading-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan));
    animation: progress 2.5s ease-in-out forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out 2.5s backwards;
}

.whatsapp-button svg {
    width: 30px;
    height: 30px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(5, 8, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    width: 40px;
    height: auto;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--neon-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan));
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neon-cyan);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out 2.5s backwards;
}

.hero-logo-container {
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.hero-logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    animation: slideDown 0.8s ease-out 2.7s backwards;
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 600;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    animation: slideDown 0.8s ease-out 2.8s backwards;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: slideDown 0.8s ease-out 2.9s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 3s backwards;
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ===== BUTTONS ===== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    color: white;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.5);
}

.btn-secondary {
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* ===== GLASSMORPHISM CARDS ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

/* ===== SERVICES SECTION ===== */
.services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--neon-cyan);
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 20px;
}

.service-link {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--neon-blue);
    gap: 10px;
}

/* ===== NEON DIVIDER ===== */
.neon-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    margin: 60px 0;
}

/* ===== ABOUT SECTION ===== */
.about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 2rem;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.stat h3 {
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 10px;
}

.stat p {
    color: var(--text-secondary);
    margin: 0;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay h3 {
    color: var(--neon-cyan);
    font-size: 1.5rem;
    text-align: center;
}

/* ===== CONTACT SECTION ===== */
.contact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 2rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.contact-details h3 {
    color: var(--neon-cyan);
    margin-bottom: 10px;
}

.contact-details a,
.contact-details p {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--neon-cyan);
}

.contact-form h3 {
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(5, 8, 18, 0.95);
    border-top: 1px solid var(--border-color);
    padding: 60px 2rem 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: var(--neon-cyan);
    margin-bottom: 15px;
}

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--neon-cyan);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-color: var(--neon-cyan);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 1rem;
    }

    .navbar-logo {
        font-size: 18px;
    }

    .logo-img {
        width: 30px;
    }

    .hero {
        padding: 1rem;
        min-height: auto;
        padding-top: 100px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

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

    .section-header h2 {
        font-size: 1.5rem;
    }

    .glass-card {
        padding: 20px;
    }

    .gallery-item {
        height: 200px;
    }
}



/* ===== FEATURED PRODUCTS SECTION ===== */
.featured-products-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.featured-products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 150, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 200, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.featured-products-section .section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.featured-products-section .section-title {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #0096ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  text-shadow: 0 0 30px rgba(0, 150, 255, 0.3);
  letter-spacing: -1px;
}

.featured-products-section .section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.neon-divider-small {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(10px);
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 20px 60px rgba(0, 150, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 150, 255, 0.1), rgba(0, 100, 200, 0.1));
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 150, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  flex-grow: 1;
  line-height: 1.5;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #00d4ff, #0096ff);
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 150, 255, 0.3);
  width: 100%;
  min-height: 44px;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 150, 255, 0.5);
  background: linear-gradient(135deg, #00e5ff, #00b0ff);
}

.whatsapp-icon {
  font-size: 1.2rem;
}

/* ===== ORDER FORM MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.modal-content {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  padding: 35px;
  max-width: 550px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 150, 255, 0.3);
  animation: slideUp 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  padding-bottom: 20px;
}

.modal-header h2 {
  font-size: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: rgba(0, 212, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #00d4ff;
  transform: rotate(90deg);
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.form-section h3 {
  font-size: 1.2rem;
  color: #00d4ff;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.form-group label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-family: inherit;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input[readonly] {
  background: rgba(0, 212, 255, 0.1);
  cursor: not-allowed;
}

/* WhatsApp notice styling */
.whatsapp-notice {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(0, 212, 255, 0.05));
  border-left: 4px solid #25d366;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

.whatsapp-notice p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  padding-top: 20px;
}

.form-actions button {
  flex: 1;
}

@media (max-width: 768px) {
  .whatsapp-notice {
    padding: 12px;
    font-size: 0.9rem;
  }

  .featured-products-section {
    padding: 60px 15px;
  }

  .featured-products-section .section-title {
    font-size: 2.5rem;
  }

  .featured-products-section .section-subtitle {
    font-size: 1rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .modal-content {
    padding: 25px;
    width: 95%;
    max-height: 90vh;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }

  .form-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .featured-products-section {
    padding: 40px 10px;
  }

  .featured-products-section .section-title {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .product-image-wrapper {
    height: 180px;
  }

  .modal-content {
    padding: 18px;
    width: 98%;
    max-height: 92vh;
  }

  .modal-header {
    margin-bottom: 20px;
  }

  .modal-header h2 {
    font-size: 1.3rem;
  }

  .form-section h3 {
    font-size: 1rem;
  }

  .file-upload-label {
    padding: 20px;
  }
}


/* ===== PREMIUM ICON STYLING ===== */

/* Service Features Icons */
.service-features li i {
    color: var(--neon-cyan);
    margin-right: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-features li:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.6);
}

/* Contact Icons */
.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 255, 0.2));
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.contact-icon i {
    color: var(--neon-cyan);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.4), rgba(0, 212, 255, 0.4));
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transform: translateY(-5px);
}

.contact-item:hover .contact-icon i {
    color: var(--neon-pink);
    transform: scale(1.2) rotate(-10deg);
    text-shadow: 0 0 15px rgba(255, 0, 128, 0.6);
}

/* Social Links Icons */
.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 255, 0.2));
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--neon-cyan);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    margin: 0 8px;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    border-color: var(--neon-pink);
    color: white;
    transform: translateY(-3px) scale(1.15);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

.social-links a i {
    transition: all 0.3s ease;
}

.social-links a:hover i {
    animation: iconPulse 0.6s ease;
}

/* Icon Animations */
@keyframes iconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes iconGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(0, 212, 255, 0.4);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Animated Icon Hover Effects */
.service-features li {
    transition: all 0.3s ease;
}

.service-features li:hover {
    transform: translateX(5px);
}

/* Font Awesome Icon Enhancements */
i.fas, i.fab {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Icon Color Scheme */
.fas.fa-shield-alt {
    color: var(--neon-cyan);
}

.fas.fa-diamond {
    color: #00ff88;
}

.fas.fa-droplet {
    color: #00d4ff;
}

.fas.fa-infinity {
    color: var(--neon-pink);
}

.fas.fa-mobile-alt {
    color: var(--neon-cyan);
}

.fas.fa-shirt {
    color: #00ff88;
}

.fas.fa-mug-hot {
    color: #00d4ff;
}

.fas.fa-gift {
    color: var(--neon-pink);
}

.fas.fa-industry {
    color: var(--neon-cyan);
}

.fas.fa-graduation-cap {
    color: #00ff88;
}

.fas.fa-headset {
    color: #00d4ff;
}

.fas.fa-rocket {
    color: var(--neon-pink);
}

.fab.fa-whatsapp {
    color: #25d366;
}

.fab.fa-facebook-f {
    color: #1877f2;
}

.fab.fa-instagram {
    color: #e1306c;
}

.fab.fa-tiktok {
    color: #000000;
}

.fas.fa-envelope {
    color: var(--neon-cyan);
}

.fas.fa-map-marker-alt {
    color: var(--neon-pink);
}

/* Responsive Icon Sizing */
@media (max-width: 768px) {
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .service-features li i {
        font-size: 1rem;
        margin-right: 8px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin: 0 6px;
    }
}

@media (max-width: 480px) {
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .service-features li i {
        font-size: 0.9rem;
        margin-right: 6px;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        margin: 0 4px;
    }
}
