@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap');

/* Reset and Core Variables */
:root {
    --bg-primary: #0a0b0e;
    --bg-secondary: #12141c;
    --bg-tertiary: #1a1d29;
    --text-primary: #ffffff;
    --text-secondary: #a0a5b5;
    
    /* Accents (Gold representing warm light, Blue representing electricity/smart LED) */
    --accent-gold: #ffc837;
    --accent-gold-rgb: 255, 200, 55;
    --accent-blue: #00f2fe;
    --accent-blue-rgb: 0, 242, 254;
    --accent-glow-gold: 0 0 20px rgba(255, 200, 55, 0.4);
    --accent-glow-blue: 0 0 20px rgba(0, 242, 254, 0.4);
    
    --card-border: rgba(255, 255, 255, 0.05);
    --card-bg-glass: rgba(25, 28, 41, 0.6);
    --card-glow-hover: 0 10px 30px rgba(255, 200, 55, 0.1);
    
    --font-main: 'Tajawal', sans-serif;
    --transition-speed: 0.4s;
    --border-radius: 16px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-main);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Global Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 30%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons and Links */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-speed) cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ff9e00 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 200, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 200, 55, 0.5);
    background: linear-gradient(135deg, #ffde59 0%, var(--accent-gold) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 200, 55, 0.1);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--card-bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
}

/* Glow Badge */
.glow-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(255, 200, 55, 0.1);
    border: 1px solid rgba(255, 200, 55, 0.3);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    gap: 6px;
    box-shadow: 0 0 10px rgba(255, 200, 55, 0.1);
}

.glow-badge .dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50px;
    animation: pulse 1.5s infinite;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 11, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 200, 55, 0.6);
    animation: glow-pulse 3s infinite;
}

.logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform var(--transition-speed) ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--transition-speed) ease;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--transition-speed) ease;
    box-shadow: var(--accent-glow-gold);
}

.nav-link:hover {
    color: var(--text-primary);
}

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

.nav-link.active {
    color: var(--accent-gold);
    font-weight: 700;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    background: radial-gradient(circle at 10% 20%, rgba(255, 200, 55, 0.03) 0%, rgba(0, 0, 0, 0) 60%),
                radial-gradient(circle at 90% 80%, rgba(0, 242, 254, 0.02) 0%, rgba(0, 0, 0, 0) 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    z-index: 10;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 25px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 200, 55, 0.2);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.google-btn {
    border-color: #4285F4 !important;
    color: #4285F4 !important;
    background: rgba(66, 133, 244, 0.05) !important;
}

.google-btn:hover {
    background: #4285F4 !important;
    color: #fff !important;
    border-color: #4285F4 !important;
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3) !important;
}

.google-btn i {
    color: #4285F4;
    transition: color var(--transition-speed) ease;
}

.google-btn:hover i {
    color: #fff;
}

.hero-cliq-info {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-cliq-info i {
    color: var(--accent-gold);
    font-size: 1rem;
}

.hero-cliq-info strong {
    color: #fff;
}

.hero-cliq-info .cliq-number {
    color: var(--accent-gold);
    font-size: 1.25rem;
    font-weight: 800;
    margin-right: 4px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(255, 200, 55, 0.25);
    display: inline-block;
    vertical-align: middle;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 480px;
    height: 480px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    border: 2px solid rgba(255, 200, 55, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 200, 55, 0.15);
    animation: blob-morph 12s ease-in-out infinite alternate;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1.05;
    transition: transform 0.5s ease;
}

.hero-image-wrapper img:hover {
    transform: scale(1.1);
}

.floating-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.floating-card-info h4 {
    font-weight: 700;
    font-size: 0.95rem;
}

.floating-card-info p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Values / About Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: var(--card-glow-hover);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 200, 55, 0.06);
    border: 1px solid rgba(255, 200, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
    transition: all var(--transition-speed) ease;
}

.value-card:hover .value-icon {
    background: var(--accent-gold);
    color: #000;
    box-shadow: var(--accent-glow-gold);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.category-card {
    height: 320px;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--card-border);
    cursor: pointer;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 11, 14, 0.95) 0%, rgba(10, 11, 14, 0.4) 60%, rgba(10, 11, 14, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: background var(--transition-speed) ease;
}

.category-card:hover .category-img {
    transform: scale(1.1);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(10, 11, 14, 0.98) 0%, rgba(10, 11, 14, 0.6) 60%, rgba(10, 11, 14, 0.2) 100%);
}

.category-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    transition: color var(--transition-speed) ease;
}

.category-card:hover .category-info h3 {
    color: var(--accent-gold);
}

.category-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    max-width: 400px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.category-card:hover .category-link {
    gap: 15px;
}

/* Interactive Lighting Simulator */
.simulator {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.simulator-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.simulator-display {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 16/10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.simulator-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) contrast(1.05);
    transition: all var(--transition-speed) ease;
}

.simulator-room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    mix-blend-mode: screen;
    pointer-events: none;
}

/* Simulator Lighting States */
.simulator-display.warm .simulator-bg-img {
    filter: brightness(0.9) contrast(1.1) sepia(0.15);
}

.simulator-display.warm .simulator-room-overlay {
    opacity: 1;
    background: radial-gradient(circle at 50% 25%, rgba(255, 180, 50, 0.5) 0%, rgba(255, 130, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
}

.simulator-display.cool .simulator-bg-img {
    filter: brightness(0.95) contrast(1.1);
}

.simulator-display.cool .simulator-room-overlay {
    opacity: 1;
    background: radial-gradient(circle at 50% 25%, rgba(200, 230, 255, 0.45) 0%, rgba(100, 170, 255, 0.15) 70%, rgba(0, 0, 0, 0) 100%);
}

.simulator-display.rgb .simulator-bg-img {
    filter: brightness(0.85) contrast(1.15);
}

.simulator-display.rgb .simulator-room-overlay {
    opacity: 1;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.3) 0%, rgba(0, 242, 254, 0.3) 100%);
}

.simulator-display.off .simulator-bg-img {
    filter: brightness(0.25) contrast(0.9);
}

.simulator-display.off .simulator-room-overlay {
    opacity: 0;
}

.simulator-light-source {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.simulator-display.warm .simulator-light-source {
    opacity: 0.8;
    background: radial-gradient(circle, rgba(255, 220, 100, 1) 0%, rgba(255, 180, 50, 0) 70%);
}

.simulator-display.cool .simulator-light-source {
    opacity: 0.9;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(180, 220, 255, 0) 70%);
}

.simulator-display.rgb .simulator-light-source {
    opacity: 0.85;
    background: radial-gradient(circle, rgba(0, 242, 254, 1) 0%, rgba(255, 0, 128, 0) 70%);
}

.simulator-control-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.simulator-control-panel h3 {
    font-size: 2rem;
    font-weight: 800;
}

.simulator-control-panel p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.sim-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sim-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--bg-tertiary);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.sim-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.sim-btn.active {
    background: rgba(255, 255, 255, 0.05);
}

.sim-btn.active[data-light="warm"] {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(255, 200, 55, 0.15);
}

.sim-btn.active[data-light="cool"] {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

.sim-btn.active[data-light="rgb"] {
    border-color: #ff5e62;
    color: #ff5e62;
    box-shadow: 0 0 15px rgba(255, 94, 98, 0.15);
}

.sim-btn.active[data-light="off"] {
    border-color: #6c757d;
    color: #6c757d;
}

.sim-btn-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
}

.sim-btn[data-light="warm"] .sim-btn-color {
    background-color: var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold);
}

.sim-btn[data-light="cool"] .sim-btn-color {
    background-color: #cbebff;
    box-shadow: 0 0 10px #cbebff;
}

.sim-btn[data-light="rgb"] .sim-btn-color {
    background: linear-gradient(45deg, #ff007f, #00f2fe);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.6);
}

.sim-btn[data-light="off"] .sim-btn-color {
    background-color: #333;
}

/* Products Section with Filters */
.products-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(255, 200, 55, 0.08);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: var(--card-glow-hover);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    background: #111;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

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

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    margin-top: auto;
}

.product-price {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.product-order-btn {
    color: #000;
    background: var(--accent-gold);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-order-btn:hover {
    transform: scale(1.1) rotate(-15deg);
    box-shadow: var(--accent-glow-gold);
    background: #ffde59;
}

/* Why Us Section */
.why-us {
    background-color: var(--bg-secondary);
}

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

.why-us-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.why-us-info p {
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-list-item {
    display: flex;
    gap: 15px;
}

.feature-list-icon {
    min-width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 200, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-gold);
}

.feature-list-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-list-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.why-us-badge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.badge-card {
    padding: 30px;
    text-align: center;
    border-radius: var(--border-radius);
    background: var(--bg-tertiary);
    border: 1px solid var(--card-border);
}

.badge-card i {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.badge-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.badge-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 35px;
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 1px solid var(--card-border);
    color: var(--accent-gold);
}

.author-info h4 {
    font-weight: 700;
    font-size: 0.95rem;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Contact and Location */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius);
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-gold);
}

.contact-text h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.map-placeholder {
    width: 100%;
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--card-border);
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) brightness(90%) contrast(90%);
}

.contact-form-wrapper {
    padding: 40px;
}

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

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

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

.form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 14px 18px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(255, 200, 55, 0.1);
}

textarea.form-input {
    resize: none;
    height: 130px;
}

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

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

.footer-about .logo-icon {
    font-size: 1.8rem;
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 20px 0 25px 0;
    max-width: 320px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: var(--accent-glow-gold);
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-right 0.3s ease;
}

.footer-menu a:hover {
    color: var(--accent-gold);
    padding-right: 6px;
}

.footer-newsletter p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form .form-input {
    flex-grow: 1;
}

.newsletter-btn {
    background: var(--accent-gold);
    color: #000;
    border: none;
    border-radius: 10px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #ffde59;
    box-shadow: var(--accent-glow-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 200, 55, 0.5);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(255, 200, 55, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 200, 55, 0);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 200, 55, 0.6);
    }
    50% {
        text-shadow: 0 0 22px rgba(255, 200, 55, 0.9), 0 0 30px rgba(255, 200, 55, 0.4);
    }
}

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

@keyframes blob-morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Scroll Animation Utilities */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    section {
        padding: 70px 0;
    }
    
    .section-header {
        margin-bottom: 45px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image-wrapper {
        max-width: 380px;
        height: 380px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .simulator-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .navbar .btn-primary {
        display: none; /* Hide top WhatsApp button on mobile screen, burger is used */
    }
    
    .burger-menu {
        display: flex;
        z-index: 1001;
    }
    
    /* Mobile Menu Drawer */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #0a0b0ecc;
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        transition: left 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
        border-right: 1px solid var(--card-border);
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.8);
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .burger-menu.open span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .burger-menu.open span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}
