﻿/* ===== 2024 TRENDY CSS VARIABLES ===== */
:root {
    --primary-color: #1a365d;
    --secondary-color: #d4af37;
    --accent-color: #4299e1;
    --neon-glow: 0 0 20px rgba(212, 175, 55, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    --brutal-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    --gradient-animated: linear-gradient(-45deg, #1a365d, #2d3748, #1e40af, #1a365d);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f7ef8a 100%);
    --dark-color: #1a202c;
}

/* ===== MODERN BASE RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    overflow-x: hidden;
    padding-top: 160px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

/* Animated background elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(66, 153, 225, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(26, 54, 93, 0.15) 0%, transparent 50%);
    z-index: -1;
    animation: floatBackground 20s ease-in-out infinite;
}

/* ===== GLOBAL ANIMATIONS ===== */
@keyframes floatBackground {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes holographic {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatHover {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

@keyframes swingGlow {
    0%, 100% { transform: translateX(0); background-position: 0% 50%; }
    25% { transform: translateX(-5px); background-position: 25% 50%; }
    75% { transform: translateX(5px); background-position: 75% 50%; }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 20px 40px rgba(212, 175, 55, 0.6), 0 0 0 1px rgba(255,255,255,0.2); }
    50% { box-shadow: 0 20px 50px rgba(212, 175, 55, 0.8), 0 0 0 1px rgba(255,255,255,0.3), 0 0 30px rgba(212, 175, 55, 0.4); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(60px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes bounceTwistFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-20px) rotate(5deg) scale(1.05);
    }

    50% {
        transform: translateY(-10px) rotate(-5deg) scale(1.03);
    }

    75% {
        transform: translateY(-15px) rotate(3deg) scale(1.07);
    }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.8), 0 0 60px rgba(212, 175, 55, 0.4); }
}

@keyframes widthPulse {
    0%, 100% { width: 50px; }
    50% { width: 70px; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

@keyframes shimmerText {
    0% { background-position: -200% 0%; }
    100% { background-position: 200% 0%; }
}

/* ===== TRENDY HEADER 2024 ===== */
.main-header {
    background: rgba(26, 54, 93, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(30px) saturate(200%);
    padding: 0;
}

.header-top {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.header-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 0.9rem;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
}

.header-contact-item::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.header-contact-item:hover::before {
    width: 100%;
}

.header-contact-item:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.header-contact-item i {
    color: var(--secondary-color);
    font-size: 1rem;
    filter: drop-shadow(var(--neon-glow));
}

.header-contact a {
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    position: relative;
}

.header-contact a:hover {
    color: var(--secondary-color) !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Header Main Layout */
.header-main {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: all 0.4s ease;
}

.main-header.scrolled .header-main {
    height: 70px;
    padding: 8px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
    position: relative;
}

.logo-img {
    height: 90px;
    width: auto;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: 5px;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
    position: relative;
    z-index: 2;
}

.logo-img:hover {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4)) brightness(1.1);
}

.company-name {
    color: white;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 15%, #6bcf7f 30%, #4d96ff 45%, #9b51e0 60%, #ff6b6b 75%, #ffd93d 90% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 400% 400%;
    animation: holographic 6s ease infinite, floatHover 3s ease-in-out infinite;
    position: relative;
    filter: saturate(1.2);
}

.company-tagline {
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 3px 0 0 0;
    line-height: 1;
    background: linear-gradient(90deg, #d4af37, #f7ef8a, #d4af37);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: swingGlow 4s ease-in-out infinite;
}

.nav-container {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
}

.navbar-advanced {
    background: transparent !important;
    padding: 0;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item-advanced {
    position: relative;
}

.nav-link-advanced {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 700;
    padding: 15px 20px !important;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    font-size: 1.1rem;
    text-decoration: none;
    display: block;
    overflow: hidden;
    background: transparent;
    border: 2px solid transparent;
}

.nav-link-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.6s ease;
}

.nav-link-advanced:hover::before {
    left: 100%;
}

.nav-link-advanced:hover {
    color: white !important;
    background: var(--glass-bg);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.nav-link-advanced.active {
    color: white !important;
    background: var(--glass-bg);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.nav-link-advanced::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateX(-50%);
    border-radius: 10px;
}

.nav-link-advanced:hover::after,
.nav-link-advanced.active::after {
    width: 70%;
}

/* Mobile Navigation */
.navbar-toggler-advanced {
    border: 2px solid rgba(212, 175, 55, 0.5);
    padding: 12px 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-toggler-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.6s ease;
}

.navbar-toggler-advanced:hover::before {
    left: 100%;
}

.navbar-toggler-advanced:hover {
    border-color: var(--secondary-color);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.navbar-toggler-advanced:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.navbar-toggler-icon-advanced {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 175, 55, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.navbar-toggler-advanced:hover .navbar-toggler-icon-advanced {
    transform: rotate(180deg);
}

/* ===== FLOATING QUOTE BUTTON ===== */
.floating-quote-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    background: var(--gradient-gold);
    color: var(--primary-color);
    border-radius: 25px;
    padding: 18px 28px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4), 0 0 0 1px rgba(255,255,255,0.1), inset 0 1px 0 rgba(255,255,255,0.2);
    font-weight: 800;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(30px) scale(0.8) rotate(-10deg);
    visibility: hidden;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.floating-quote-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.floating-quote-btn:hover::before {
    left: 100%;
}

.floating-quote-btn.show {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
    visibility: visible;
}

.floating-quote-btn:hover {
    transform: translateY(-8px) scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.6), 0 0 0 1px rgba(255,255,255,0.2), inset 0 1px 0 rgba(255,255,255,0.3);
    animation: pulseGlow 2s infinite;
}

/* ===== TRENDY FOOTER 2024 ===== */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(66, 153, 225, 0.05) 0%, transparent 50%);
    z-index: 1;
}

footer > .container {
    position: relative;
    z-index: 2;
}

footer h5 {
    color: var(--secondary-color) !important;
    font-weight: 800;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    animation: widthPulse 2s infinite;
}

footer a {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding: 5px 0;
}

footer a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.4s ease;
    border-radius: 1px;
}

footer a:hover {
    color: var(--secondary-color) !important;
    transform: translateX(12px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

footer a:hover::before {
    width: 100%;
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

footer .social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.6s ease;
}

footer .social-links a:hover::before {
    left: 100%;
}

footer .social-links a:hover {
    background: var(--secondary-color);
    color: var(--primary-color) !important;
    transform: translateY(-8px) rotate(10deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    border-color: var(--secondary-color);
}

footer .fa-phone,
footer .fa-envelope,
footer .fa-map-marker-alt {
    color: var(--secondary-color) !important;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

footer .text-warning {
    color: var(--secondary-color) !important;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.legal-info {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
    transition: all 0.5s ease;
    position: relative;
}

.footer-logo-img:hover {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4)) brightness(1.2);
}

/* ===== GLOBAL HERO SECTION ===== */
.hero-section {
    background: linear-gradient(-45deg, #1a365d, #2d3748, #1e40af, #1a365d);
    background-size: 400% 400%;
    padding: 200px 0 120px;
    margin-top: -160px;
    position: relative;
    overflow: hidden;
    animation: gradientShift 8s ease infinite;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(66, 153, 225, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-section > .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 0%, #d4af37 30%, #fff 70%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: shimmerText 4s ease-in-out infinite;
    font-size: 4rem;
    text-align: center;
    line-height: 1.1;
}

.hero-section p.lead {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.3s both;
    text-align: center;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* ===== COMMON COMPONENTS ===== */

/* Cards */
.card {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid #1a365d;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--brutal-shadow);
    position: relative;
    backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-12px) rotate(2deg) scale(1.02);
    box-shadow: 12px 12px 0 rgba(0,0,0,0.2), 0 0 30px rgba(212, 175, 55, 0.3);
    border-color: var(--secondary-color);
}

.service-card {
    border-radius: 25px;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border: 3px solid #e2e8f0;
}

.service-card:hover {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #fff 0%, #fefce8 100%);
}

.modern-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Glass Effects */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 15px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-warning {
    background: var(--gradient-gold);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-color);
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.btn-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.btn-warning:hover::before {
    left: 100%;
}

.btn-warning:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
    border-color: rgba(212, 175, 55, 0.6);
}

/* Common Layout Components */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-content h5 {
    margin-bottom: 0.5rem;
}

/* Grid Layouts */
.info-grid,
.usage-grid,
.sharing-cards,
.rights-grid,
.trust-grid,
.values-grid,
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Icons */
.service-icon,
.value-icon,
.trust-icon,
.usage-icon,
.right-icon,
.retention-icon,
.change-icon,
.visual-icon,
.pillar-icon,
.vision-icon,
.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 auto 1.5rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Section Styles */
.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    margin: 1rem auto;
}

.text-gradient {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f7ef8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Background Utilities */
.bg-light {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
}

.bg-dark {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d3748 100%) !important;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a4365 100%) !important;
}

/* Text Colors */
.bg-light .text-dark {
    color: var(--dark-color) !important;
}

.bg-light .text-primary {
    color: var(--primary-color) !important;
}

.bg-light .text-warning {
    color: var(--secondary-color) !important;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px) perspective(1000px) rotateX(10deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0) perspective(1000px) rotateX(0deg);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-80px) skewX(-5deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0) skewX(0deg);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(80px) skewX(5deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0) skewX(0deg);
}

/* Utility Classes */
.text-glow {
    text-shadow: 0 0 10px currentColor;
}

.animate-float-3d {
    animation: float3D 6s ease-in-out infinite;
}

.glow-on-hover:hover {
    animation: glowPulse 2s infinite;
}

.brutal-border {
    border: 3px solid #1a365d;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.2);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
/* ===== COMMON FORM COMPONENTS ===== */

/* Form Progress */
.form-progress {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.8rem;
    color: var(--dark-color);
    text-align: center;
    font-weight: 600;
}

/* Modern Form Elements */
.form-group-modern {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.form-control-modern {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: white;
    transition: all 0.3s ease;
    font-size: 1rem;
}

    .form-control-modern:focus {
        outline: none;
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        transform: translateY(-2px);
    }

/* Custom Select */
.service-select-wrapper {
    position: relative;
}

.form-select-modern {
    appearance: none;
    padding-right: 2.5rem;
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-color);
    pointer-events: none;
}

/* Character Count */
.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: var(--dark-color);
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Form Actions */
.form-actions {
    padding-top: 1rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.submit-btn {
    position: relative;
    overflow: hidden;
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn.loading .btn-loading {
    opacity: 1;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.form-note {
    font-size: 0.9rem;
    color: var(--dark-color);
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

/* Guidelines Grid */
.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guideline-item {
    text-align: center;
    padding: 2rem 1rem;
}

.guideline-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 auto 1.5rem;
}

.guideline-item h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Trust Stats */
.trust-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-stat {
    text-align: center;
}

    .trust-stat .stat-number {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .trust-stat .stat-label {
        font-size: 1rem;
        opacity: 0.9;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
/* ===== COMMON REVIEW COMPONENTS ===== */

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

    .stat-item:hover {
        transform: translateY(-3px);
    }

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-color);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Rating Stars */
.rating-stars {
    display: flex;
    gap: 0.1rem;
}

    .rating-stars .fa-star {
        color: #ddd;
    }

        .rating-stars .fa-star.active {
            color: var(--secondary-color);
        }

.rating-stars-large {
    font-size: 2rem;
    margin-bottom: 1rem;
}

    .rating-stars-large .fa-star {
        margin: 0 0.1rem;
    }

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
    padding: 2rem 1rem;
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 auto 1.5rem;
}

.trust-item h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Success Alert */
.success-alert {
    background: rgba(40, 167, 69, 0.1);
    border-left: 4px solid #28a745;
}

/* Empty State */
.empty-state {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
}

.empty-icon {
    opacity: 0.5;
}

/* CTA Modern */
.cta-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
}

.cta-icon {
    opacity: 0.8;
}

.cta-title {
    color: var(--primary-color);
    font-weight: 800;
}

.cta-subtitle {
    font-size: 1.1rem;
}

/* Hero Actions */
.hero-actions {
    margin-top: 2rem;
}
/* Reduce space between Quick Links and More sections */
footer .col-lg-2.col-md-6 {
    margin-bottom: 1rem !important;
    padding-left: 0.10rem;
    padding-right: 0.10rem;
}

    /* Reduce space between heading and links */
    footer .col-lg-2.col-md-6 h5 {
        margin-bottom: 0.75rem !important;
    }

    footer .col-lg-2.col-md-6 .list-unstyled li {
        margin-bottom: 0.25rem !important;
    }

/* Reduce overall footer column spacing */
footer .row {
    --bs-gutter-x: 1rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

footer .col-lg-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* ===== MOBILE RESPONSIVE FIXES ===== */
@media (max-width: 1199.98px) {
    .header-main {
        flex-wrap: wrap;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 140px;
    }

    .main-header {
        padding: 0;
    }

    .header-top {
        padding: 8px 0;
    }

    .header-contact {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        font-size: 0.8rem;
    }

    .header-contact-item {
        justify-content: center;
    }

    .header-main {
        height: auto;
        padding: 10px 0;
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center;
        text-align: left;
    }

    .logo-container {
        margin-bottom: 0; 
        flex: 0 0 auto; 
    }

    .nav-container {
        flex: 0 0 auto; 
        margin-top: 0; 
    }

    .logo-img {
        height: 70px;
    }

    .company-name {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .company-tagline {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    /* Mobile Menu Styles */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        z-index: 9999;
        padding: 80px 20px 20px;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

        .navbar-collapse.show {
            transform: translateX(0);
        }

    .nav-main {
        flex-direction: column;
        gap: 10px;
        background: transparent;
        border-radius: 0;
        padding: 0;
        margin: 0;
        border: none;
    }

    .nav-link-advanced {
        padding: 15px 20px !important;
        font-size: 1.1rem;
        text-align: center;
        border-radius: 12px;
        margin: 5px 0;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--glass-bg);
        border: 2px solid rgba(212, 175, 55, 0.5);
        color: var(--secondary-color);
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10000;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 160px 0 80px;
        margin-top: -140px;
    }

        .hero-section h1 {
            font-size: 2.5rem;
            line-height: 1.2;
        }

        .hero-section p.lead {
            font-size: 1.1rem;
        }

    /* Footer Mobile */
    footer .row {
        text-align: center;
    }

    footer .col-lg-4,
    footer .col-lg-2 {
        margin-bottom: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo-img {
        height: 70px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 130px;
    }

    .hero-section {
        padding: 140px 0 60px;
    }

        .hero-section h1 {
            font-size: 2rem;
        }

        .hero-section p.lead {
            font-size: 1rem;
        }

    .company-name {
        font-size: 1rem;
    }

    .company-tagline {
        font-size: 0.6rem;
    }

    /* Grid Layouts - Single Column */
    .info-grid,
    .usage-grid,
    .sharing-cards,
    .rights-grid,
    .trust-grid,
    .values-grid,
    .tech-grid,
    .stats-grid,
    .guidelines-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .trust-stats {
        flex-direction: column;
        gap: 2rem;
    }

    /* Cards Mobile */
    .card {
        margin-bottom: 1rem;
    }

        .card:hover {
            transform: translateY(-5px) rotate(1deg) scale(1.01);
        }

    /* Floating Button Mobile */
    .floating-quote-btn {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
        font-size: 0.8rem;
        min-height: 50px;
    }

    /* Form Elements Mobile */
    .form-control-modern {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Feature Items Mobile */
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .feature-icon {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 120px;
    }

    .hero-section {
        padding: 120px 0 40px;
        margin-top: -120px;
    }

        .hero-section h1 {
            font-size: 1.8rem;
        }

    .logo-img {
        height: 60px;
    }

    .company-name {
        font-size: 0.9rem;
    }

    .header-contact {
        font-size: 0.75rem;
    }

    .header-contact-item {
        flex-direction: column;
        gap: 5px;
    }

    /* Mobile Menu Smaller Screens */
    .navbar-collapse {
        padding: 70px 15px 15px;
    }

    .nav-link-advanced {
        padding: 12px 15px !important;
        font-size: 1rem;
    }

    /* Stats and Numbers */
    .stat-number {
        font-size: 2rem;
    }

    .trust-stat .stat-number {
        font-size: 2.5rem;
    }

    /* Icons Mobile */
    .service-icon,
    .value-icon,
    .trust-icon,
    .guideline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Floating Button Very Small Screens */
    .floating-quote-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
        font-size: 0.75rem;
    }
}

/* Prevent horizontal scrolling on mobile */
@media (max-width: 768px) {
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .card:hover {
        transform: none !important;
    }

    .nav-link-advanced:hover {
        transform: none !important;
    }

    .btn-warning:hover {
        transform: none !important;
    }

    .social-links a:hover {
        transform: none !important;
    }

    /* Reduce animations on low-performance devices */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* High DPI mobile screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img,
    .footer-logo-img {
    }
}

/* Mobile landscape orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .navbar-collapse {
        padding-top: 60px;
    }

    .nav-main {
        max-height: 60vh;
        overflow-y: auto;
    }

    .hero-section {
        padding: 100px 0 40px;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .hero-section h1 {
        font-size: 1.6rem;
    }

    .company-name {
        font-size: 0.8rem;
    }

    .nav-link-advanced {
        font-size: 0.9rem;
        padding: 10px 12px !important;
    }

    .floating-quote-btn {
        padding: 10px 14px;
        font-size: 0.7rem;
    }
}