/*
Theme Name: Jay Computers
Theme URI: https://jay-computers.grexa.site/
Author: Jay Computers Team
Author URI: https://jay-computers.grexa.site/
Description: A custom WordPress theme for Jay Computers - Computer Rental Agency. Features custom post types for Products and Services, responsive design, and easy content management.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jay-computers
Tags: business, corporate, responsive, custom-post-types, products, services
*/

/* ================================
   CSS Variables
   ================================ */
:root {
    --primary-color: #004a8f;
    --primary-dark: #003366;
    --secondary-color: #d49400;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --radius: 8px;
    --container-width: 1200px;
}

/* ================================
   Remove Focus/Click Outlines
   ================================ */
a, button, input, textarea, select, img, [tabindex] {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

a:focus, a:active,
button:focus, button:active,
input:focus, input:active,
textarea:focus, textarea:active,
select:focus, select:active,
img:focus, img:active,
.jc-gallery-thumb:focus,
.jc-gallery-thumb:active,
.carousel-btn:focus,
.carousel-btn:active,
.jc-lightbox-close:focus,
.jc-lightbox-close:active,
.jc-lightbox-prev:focus,
.jc-lightbox-prev:active,
.jc-lightbox-next:focus,
.jc-lightbox-next:active {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

/* Optional: subtle focus indicator for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid rgba(212, 148, 0, 0.5) !important;
    outline-offset: 2px;
}

/* ================================
   Reset & Base Styles
   ================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* ================================
   Header
   ================================ */
.site-header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #004a8f;
}

.site-logo span {
    color: var(--secondary-color);
}

.site-description {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ================================
   Navigation
   ================================ */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation a {
    color: #004a8f;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d49400;
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after,
.main-navigation .current-page-ancestor a::after,
.main-navigation a.active::after {
    width: 100%;
}

.main-navigation a:hover {
    color: #d49400;
}

.main-navigation .current-menu-item a,
.main-navigation .current-page-ancestor a,
.main-navigation a.active {
    color: #d49400;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* ================================
   Hero Section
   ================================ */
.hero-section {
    background: linear-gradient(-45deg, #003366, #004a8f, #0055a4, #d49400, #003366, #004a8f);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: var(--bg-white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(212, 148, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 74, 143, 0.3) 0%, transparent 50%);
}

/* Floating particles */
.hero-section .particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 148, 0, 0.3);
    animation: floatParticle linear infinite;
}

.hero-section .particle:nth-child(1) { width: 10px; height: 10px; left: 10%; top: 100%; animation-duration: 12s; animation-delay: 0s; }
.hero-section .particle:nth-child(2) { width: 6px; height: 6px; left: 20%; top: 100%; animation-duration: 18s; animation-delay: 2s; }
.hero-section .particle:nth-child(3) { width: 8px; height: 8px; left: 35%; top: 100%; animation-duration: 14s; animation-delay: 4s; }
.hero-section .particle:nth-child(4) { width: 4px; height: 4px; left: 50%; top: 100%; animation-duration: 20s; animation-delay: 1s; }
.hero-section .particle:nth-child(5) { width: 12px; height: 12px; left: 65%; top: 100%; animation-duration: 16s; animation-delay: 3s; }
.hero-section .particle:nth-child(6) { width: 5px; height: 5px; left: 80%; top: 100%; animation-duration: 22s; animation-delay: 5s; }
.hero-section .particle:nth-child(7) { width: 7px; height: 7px; left: 90%; top: 100%; animation-duration: 13s; animation-delay: 2s; }

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatParticle {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-title span {
    color: var(--secondary-color);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.btn-accent {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.btn-accent:hover {
    background: #b37a00;
}

/* ================================
   Services Section (Homepage)
   ================================ */
.services-section {
    background: linear-gradient(160deg, #e8f4f8 0%, #f0f7ff 30%, #fff8e8 70%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(0, 74, 143, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(212, 148, 0, 0.05) 0%, transparent 50%);
}

/* Floating shapes in services section */
.services-section .float-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    animation: floatShape 8s ease-in-out infinite;
}

.services-section .float-shape:nth-child(1) {
    width: 200px; height: 200px;
    background: #004a8f;
    top: 10%; left: -5%;
    animation-delay: 0s;
}

.services-section .float-shape:nth-child(2) {
    width: 150px; height: 150px;
    background: #d49400;
    bottom: 15%; right: -3%;
    animation-delay: 2s;
}

.services-section .float-shape:nth-child(3) {
    width: 80px; height: 80px;
    background: #004a8f;
    top: 40%; right: 10%;
    animation-delay: 4s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 74, 143, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 148, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 74, 143, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 74, 143, 0.08);
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #004a8f, #d49400);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 74, 143, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-inner {
    padding: 30px 28px;
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #004a8f 0%, #0066cc 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 74, 143, 0.25);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, #d49400 0%, #f0a500 100%);
}

.service-number {
    font-size: 0.75rem;
    color: #d49400;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.service-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 700;
}

.service-title a:hover {
    color: #004a8f;
}

.service-excerpt {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.service-link {
    color: #004a8f;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link:hover {
    color: #003366;
}

/* ================================
   Products Section
   ================================ */
.products-section {
    background: var(--bg-white);
}

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

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    /* height removed - natural aspect ratio */
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.product-placeholder {
    font-size: 4rem;
    color: var(--border-color);
}

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-excerpt {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* ================================
   Gallery Section - Masonry
   ================================ */
.gallery-section {
    background: var(--bg-light);
}

.gallery-grid {
    column-count: 4;
    column-gap: 20px;
}

@media (max-width: 1200px) {
    .gallery-grid { column-count: 3; }
}

@media (max-width: 768px) {
    .gallery-grid { column-count: 2; }
}

@media (max-width: 480px) {
    .gallery-grid { column-count: 1; }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    background: #e5e7eb;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Google Map wrapper */
.contact-map-wrapper {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 400px;
}

.contact-map-wrapper h3 {
    color: var(--text-color);
    font-size: 1.5rem;
}

/* ================================
   Stats Section
   ================================ */
.stats-section {
    background: linear-gradient(135deg, #003366 0%, #004a8f 100%);
    color: var(--bg-white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ================================
   Reviews Section
   ================================ */
.reviews-section {
    background: var(--bg-white);
}

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

.review-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid var(--border-color);
}

.review-stars {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.review-author {
    font-weight: 600;
    color: var(--text-color);
}

.review-role {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ================================
   Contact Section
   ================================ */
.contact-section {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.contact-detail p {
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 74, 143, 0.1);
}

/* ================================
   About Section
   ================================ */
.about-section {
    background: var(--bg-white);
}

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

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ================================
   Page Content
   ================================ */
.page-content {
    padding: 60px 0;
    min-height: 400px;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.entry-content {
    max-width: 900px;
    margin: 0 auto;
}

.entry-content h2,
.entry-content h3 {
    margin-top: 30px;
}

/* ================================
   Archive Pages
   ================================ */
.archive-header {
    background: linear-gradient(135deg, #003366 0%, #004a8f 100%);
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.archive-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.archive-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

.archive-grid {
    padding: 60px 0;
}

/* ================================
   Single Post
   ================================ */
.single-header {
    background: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}

.single-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.single-meta {
    color: var(--text-light);
    font-size: 0.9rem;
}

.single-content {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

/* ================================
   Footer
   ================================ */
.site-footer {
    background: #003366;
    color: var(--bg-white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .site-logo {
    color: var(--bg-white);
    margin-bottom: 15px;
    display: inline-block;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--bg-white);
}

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

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

.footer-column a {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

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

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 15px;
    }

    .main-navigation ul.active {
        display: flex;
    }

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

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

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

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

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

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

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
    }

    .section-padding {
        padding: 50px 0;
    }

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

/* ================================
   WordPress Default Alignments
   ================================ */
.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

/* ================================
   Accessibility
   ================================ */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Focus styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}


/* ================================
   Catalog Page Styles
   ================================ */
.catalog-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.catalog-tab {
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--text-light);
    background: var(--bg-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.catalog-tab:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.catalog-tab.active {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.catalog-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: flex-end;
}

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

.catalog-filter-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
}

.catalog-filter-group select,
.catalog-filter-group input {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    min-width: 220px;
    background: var(--bg-white);
    transition: var(--transition);
}

.catalog-filter-group select:focus,
.catalog-filter-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 74, 143, 0.1);
}

#catalog-results {
    transition: opacity 0.3s ease;
}

/* ================================
   Custom Inquiry Form
   ================================ */
.jay-inquiry-form {
    margin-top: 20px;
}

.jay-inquiry-form .form-group {
    margin-bottom: 18px;
}

.jay-inquiry-form .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.95rem;
}

.jay-inquiry-form .form-group input,
.jay-inquiry-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.jay-inquiry-form .form-group input:focus,
.jay-inquiry-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 74, 143, 0.1);
}

.jay-inquiry-form .form-group input[readonly] {
    background: var(--bg-light);
    color: var(--text-light);
    cursor: default;
}

.jay-inquiry-form button[type="submit"] {
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
}

.jay-inquiry-success {
    animation: fadeInUp 0.5s ease;
}

/* Inquiry section on single pages */
.inquiry-section {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 35px;
    margin-top: 40px;
}

.inquiry-section h3 {
    margin-bottom: 10px;
}

.inquiry-section > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ================================
   Catalog Responsive
   ================================ */
@media (max-width: 768px) {
    .catalog-tabs {
        flex-direction: column;
    }

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

    .catalog-filters {
        flex-direction: column;
    }

    .catalog-filter-group select,
    .catalog-filter-group input {
        min-width: 100%;
    }

    .inquiry-section {
        padding: 25px 20px;
    }
}


/* ================================
   WhatsApp Inquiry Button
   ================================ */
.whatsapp-inquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: #fff !important;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.whatsapp-inquiry-btn::before {
    content: "\2709";
    font-size: 1.1rem;
}

.whatsapp-inquiry-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* ================================
   Homepage Laptop Animation
   ================================ */
.hero-animation {
    position: relative;
    width: 200px;
    height: 140px;
    margin: 0 auto 30px;
}

.laptop-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 10px;
    background: linear-gradient(to bottom, #d49400, #b37a00);
    border-radius: 0 0 8px 8px;
    animation: laptopBaseGlow 2s ease-in-out infinite alternate;
}

.laptop-screen {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 90px;
    background: #003366;
    border: 3px solid #d49400;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.laptop-screen::before {
    content: "JC";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #d49400;
    font-size: 1.8rem;
    font-weight: 700;
    opacity: 0;
    animation: screenBoot 3s ease-in-out infinite;
}

.laptop-screen::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 148, 0, 0.3), transparent);
    animation: screenScan 2s ease-in-out infinite;
}

.laptop-logo {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #d49400;
    border-radius: 50%;
    animation: logoPulse 1.5s ease-in-out infinite;
}

.laptop-power-light {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #25D366;
    border-radius: 50%;
    animation: powerBlink 1s ease-in-out infinite;
}

@keyframes laptopBaseGlow {
    from { box-shadow: 0 0 5px rgba(212, 148, 0, 0.3); }
    to { box-shadow: 0 0 20px rgba(212, 148, 0, 0.6); }
}

@keyframes screenBoot {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    30% { opacity: 0; }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    80% { opacity: 1; }
    100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
}

@keyframes screenScan {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes logoPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
    50% { transform: translateX(-50%) scale(1.3); opacity: 0.7; }
}

@keyframes powerBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Circuit board background animation */
.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(212, 148, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 74, 143, 0.2) 0%, transparent 50%);
    animation: circuitPulse 4s ease-in-out infinite;
}

@keyframes circuitPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Floating tech icons */
.tech-float {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.15;
    animation: floatTech 6s ease-in-out infinite;
}

.tech-float:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.tech-float:nth-child(2) { top: 60%; left: 15%; animation-delay: 1s; }
.tech-float:nth-child(3) { top: 30%; right: 10%; animation-delay: 2s; }
.tech-float:nth-child(4) { top: 70%; right: 15%; animation-delay: 3s; }
.tech-float:nth-child(5) { top: 15%; right: 25%; animation-delay: 1.5s; }

@keyframes floatTech {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}


/* ================================
   Google Map Styles
   ================================ */
.contact-map-wrapper {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 400px;
}

.contact-map-wrapper h3 {
    color: var(--text-color);
    font-size: 1.5rem;
}

/* Reviews page Google Maps link */
.reviews-google-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

/* Review card improvements */
.review-card .review-role {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}


/* ================================
   Scroll Reveal Animations
   ================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Section divider animation */
.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #004a8f, #d49400);
    border-radius: 2px;
    margin: 0 auto 30px;
}

/* Animated wave background for sections */
.wave-bg {
    position: relative;
}

.wave-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,40L48,45C96,50,192,60,288,55C384,50,480,30,576,25C672,20,768,30,864,40C960,50,1056,60,1152,55C1248,50,1344,30,1392,20L1440,10L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

/* Animated background for stats section */
.stats-section {
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(212, 148, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(0, 74, 143, 0.15) 0%, transparent 40%);
    animation: statsPulse 6s ease-in-out infinite;
}

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

/* Counter animation */
.stat-number {
    background: linear-gradient(135deg, #ffffff 0%, #d49400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ================================
   Gallery Lightbox
   ================================ */
.jc-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jc-lightbox.active {
    display: flex;
    opacity: 1;
}

.jc-lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.jc-lightbox.active .jc-lightbox-img {
    transform: scale(1);
}

.jc-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.jc-lightbox-close:hover {
    background: rgba(255,255,255,0.15);
}

.jc-lightbox-prev,
.jc-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.jc-lightbox-prev:hover,
.jc-lightbox-next:hover {
    background: rgba(255,255,255,0.25);
}

.jc-lightbox-prev { left: 20px; }
.jc-lightbox-next { right: 20px; }

.jc-lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1rem;
    text-align: center;
    background: rgba(0,0,0,0.5);
    padding: 8px 20px;
    border-radius: 20px;
}

.jc-lightbox-counter {
    position: absolute;
    top: 30px;
    left: 30px;
    color: #fff;
    font-size: 0.9rem;
    background: rgba(0,0,0,0.4);
    padding: 5px 15px;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .jc-lightbox-prev,
    .jc-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    .jc-lightbox-prev { left: 10px; }
    .jc-lightbox-next { right: 10px; }
}

/* ================================
   Reviews Carousel
   ================================ */
.reviews-carousel-wrap {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.reviews-carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 25px;
}

.review-slide {
    min-width: calc(33.333% - 17px);
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .review-slide {
        min-width: calc(50% - 13px);
    }
}

@media (max-width: 600px) {
    .review-slide {
        min-width: 100%;
    }
    .reviews-carousel-wrap {
        padding: 0 35px;
    }
}

.review-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0, 74, 143, 0.08);
    border: 1px solid rgba(0, 74, 143, 0.06);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 74, 143, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #004a8f, #d49400);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
    min-width: 0;
}

.review-name {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 2px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.review-stars {
    color: #d49400;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

.review-text::before {
    content: '"';
    font-size: 1.5rem;
    color: #d49400;
    margin-right: 4px;
    line-height: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #004a8f;
    width: 28px;
    border-radius: 5px;
}


/* ================================
   Gallery Lightbox
   ================================ */
.jc-lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jc-lightbox.active {
    display: flex;
    opacity: 1;
}

.jc-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.jc-lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.jc-lightbox-caption {
    color: #fff;
    margin-top: 15px;
    font-size: 1rem;
    opacity: 0.9;
}

.jc-lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 100000;
    line-height: 1;
    transition: color 0.3s;
}

.jc-lightbox-close:hover {
    color: #d49400;
}

.jc-lightbox-prev,
.jc-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    padding: 15px 20px;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.2);
}

.jc-lightbox-prev:hover,
.jc-lightbox-next:hover {
    background: rgba(212, 148, 0, 0.8);
    border-color: #d49400;
}

.jc-lightbox-prev { left: 20px; }
.jc-lightbox-next { right: 20px; }

.jc-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.9rem;
    background: rgba(0,0,0,0.5);
    padding: 5px 15px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .jc-lightbox-prev,
    .jc-lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
    .jc-lightbox-prev { left: 10px; }
    .jc-lightbox-next { right: 10px; }
    .jc-lightbox-close { right: 20px; font-size: 32px; }
}


/* ================================
   Reviews Carousel
   ================================ */
.reviews-carousel-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4f8 50%, #fff8e8 100%);
    position: relative;
    overflow: hidden;
}

.reviews-carousel-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 74, 143, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.reviews-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews-carousel {
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-slide {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 74, 143, 0.1);
    text-align: center;
    position: relative;
}

.review-card::before {
    content: '"';
    font-size: 80px;
    color: #d49400;
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 25px;
    line-height: 1;
    font-family: Georgia, serif;
}

.review-stars {
    color: #d49400;
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.review-text {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer-name {
    font-weight: 700;
    color: #004a8f;
    font-size: 1.1rem;
}

.review-date {
    color: #9ca3af;
    font-size: 0.85rem;
    margin-top: 5px;
}

.review-source-badge {
    display: inline-block;
    background: #e8f4f8;
    color: #004a8f;
    font-size: 0.75rem;
    padding: 3px 12px;
    border-radius: 20px;
    margin-top: 10px;
}

.review-source-badge.google {
    background: #e8f0fe;
    color: #1a73e8;
}

.review-source-badge.manual {
    background: #fef3c7;
    color: #92400e;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #004a8f;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-arrow:hover {
    background: #004a8f;
    color: #fff;
    border-color: #004a8f;
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: #004a8f;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: #d49400;
}

@media (max-width: 768px) {
    .reviews-carousel-wrapper {
        padding: 0 40px;
    }
    .review-card {
        padding: 25px;
    }
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


/* ================================
   Remove Outline on Click/Focus
   ================================ */
a,
a:focus,
a:active,
button,
button:focus,
button:active,
input:focus,
textarea:focus,
select:focus,
img,
[tabindex]:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

a::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
}

/* Keep a subtle focus indicator for accessibility on keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid rgba(212, 148, 0, 0.5) !important;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Remove outline from gallery lightbox images */
.jc-lightbox-img,
.gallery-item img,
.product-image img,
.service-card,
.product-card {
    outline: none !important;
}


/* ================================
   Modern Homepage Layout
   ================================ */

/* Top Bar */
.top-bar {
    background: #07152f;
    color: #cbd5e1;
    font-size: 13px;
    padding: 9px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.top-bar i {
    color: #d49400;
    margin-right: 4px;
}

/* Modern Hero */
.hero-modern {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 20%, rgba(13, 91, 215, 0.35), transparent 30%),
        linear-gradient(120deg, #06132b 0%, #0a2148 60%, #0b3d83 100%);
    color: #fff;
    padding: 105px 0 95px;
}

.hero-modern::after {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(245, 183, 43, 0.25);
    border-radius: 50%;
    right: -120px;
    top: 30px;
    animation: heroRing 20s linear infinite;
}

@keyframes heroRing {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Hero particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 148, 0, 0.15);
    animation: heroParticle linear infinite;
}

.hero-particles span:nth-child(1) { width: 6px; height: 6px; left: 10%; top: 100%; animation-duration: 14s; animation-delay: 0s; }
.hero-particles span:nth-child(2) { width: 4px; height: 4px; left: 25%; top: 100%; animation-duration: 18s; animation-delay: 2s; }
.hero-particles span:nth-child(3) { width: 8px; height: 8px; left: 40%; top: 100%; animation-duration: 12s; animation-delay: 4s; }
.hero-particles span:nth-child(4) { width: 5px; height: 5px; left: 55%; top: 100%; animation-duration: 20s; animation-delay: 1s; }
.hero-particles span:nth-child(5) { width: 7px; height: 7px; left: 70%; top: 100%; animation-duration: 16s; animation-delay: 3s; }
.hero-particles span:nth-child(6) { width: 4px; height: 4px; left: 80%; top: 100%; animation-duration: 22s; animation-delay: 5s; }
.hero-particles span:nth-child(7) { width: 6px; height: 6px; left: 90%; top: 100%; animation-duration: 15s; animation-delay: 2s; }
.hero-particles span:nth-child(8) { width: 3px; height: 3px; left: 15%; top: 100%; animation-duration: 19s; animation-delay: 6s; }
.hero-particles span:nth-child(9) { width: 5px; height: 5px; left: 60%; top: 100%; animation-duration: 17s; animation-delay: 1s; }
.hero-particles span:nth-child(10) { width: 4px; height: 4px; left: 45%; top: 100%; animation-duration: 13s; animation-delay: 3s; }

@keyframes heroParticle {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-grid-modern {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 55px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(245, 183, 43, 0.4);
    color: #ffd778;
    background: rgba(245, 183, 43, 0.08);
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-content-modern h1 {
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 20px;
    font-weight: 800;
}

.hero-content-modern h1 span {
    color: #d49400;
}

.hero-content-modern p {
    font-size: 18px;
    color: #c9d5e7;
    max-width: 580px;
    margin-bottom: 30px;
}

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

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 24px;
    border-radius: 9px;
    font-weight: 800;
    font-size: 14px;
    background: #d49400;
    color: #111;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-gold:hover {
    background: #f0a500;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 148, 0, 0.3);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 24px;
    border-radius: 9px;
    font-weight: 800;
    font-size: 14px;
    background: transparent;
    color: #fff;
    border: 1px solid #53729e;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-light:hover {
    background: #fff;
    color: #07152f;
    border-color: #fff;
}

.btn-navy {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    border-radius: 9px;
    font-weight: 800;
    font-size: 14px;
    background: #07152f;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-navy:hover {
    background: #004a8f;
    transform: translateY(-2px);
}

/* Hero Card */
.hero-card-modern {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.hero-card-modern h3 {
    font-size: 19px;
    margin-bottom: 18px;
    color: #fff;
}

.hero-item-modern {
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-item-modern:last-child {
    border: 0;
}

.hero-item-modern i {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: rgba(245, 183, 43, 0.13);
    color: #d49400;
    font-size: 20px;
    flex-shrink: 0;
}

.hero-item-modern strong {
    display: block;
    font-size: 14px;
    color: #fff;
}

.hero-item-modern span {
    font-size: 12px;
    color: #aebed5;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 18px;
    margin-top: -35px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(20, 45, 90, 0.07);
    overflow: hidden;
}

.stat-bar-item {
    padding: 28px;
    text-align: center;
    border-right: 1px solid #e7edf5;
}

.stat-bar-item:last-child {
    border: 0;
}

.stat-bar-item strong {
    display: block;
    font-size: 29px;
    color: #004a8f;
    font-weight: 800;
}

.stat-bar-item span {
    font-size: 12px;
    color: #718096;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Head */
.section-head-modern {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.kicker {
    font-size: 12px;
    font-weight: 900;
    color: #004a8f;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-head-modern h2 {
    font-size: 40px;
    letter-spacing: -1.5px;
    margin: 8px 0 12px;
    font-weight: 800;
    color: #07152f;
}

.section-head-modern h2 span {
    color: #d49400;
}

.section-head-modern p {
    color: #718096;
    font-size: 16px;
}

/* Services Modern */
.services-modern {
    background: #f5f8fc;
    position: relative;
    overflow: hidden;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card-modern {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 16px;
    padding: 27px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #004a8f, #d49400);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(20, 45, 90, 0.09);
    border-color: #cbd9ee;
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-icon-modern {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: #edf4ff;
    color: #004a8f;
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-modern {
    background: #004a8f;
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.service-number-modern {
    font-size: 11px;
    font-weight: 800;
    color: #d49400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

.service-card-modern h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #07152f;
    font-weight: 700;
}

.service-excerpt-modern,
.service-card-modern p {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
}

.service-action-modern {
    margin-top: 18px;
}

/* About Modern */
.about-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.1;
    margin: 10px 0 18px;
    font-weight: 800;
    color: #07152f;
}

.about-content h2 span {
    color: #004a8f;
}

.about-content p {
    color: #718096;
    margin-bottom: 15px;
    font-size: 15px;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
}

.about-point {
    padding: 13px;
    background: #f5f8fc;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    color: #07152f;
}

.about-point i {
    color: #16a34a;
    margin-right: 6px;
}

/* About Visual */
.about-visual {
    min-height: 410px;
    border-radius: 25px;
    background:
        linear-gradient(135deg, rgba(7, 21, 47, 0.92), rgba(13, 91, 215, 0.8)),
        repeating-linear-gradient(45deg, transparent 0 15px, rgba(255, 255, 255, 0.04) 15px 16px);
    display: grid;
    place-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.monitor-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.monitor-screen {
    width: 280px;
    height: 180px;
    border: 8px solid #cbd5e1;
    border-bottom-width: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0d5bd7, #07152f);
    display: grid;
    place-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.monitor-screen::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: monitorShine 3s ease-in-out infinite;
}

@keyframes monitorShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.monitor-logo {
    font-size: 48px;
    font-weight: 900;
    color: #d49400;
    letter-spacing: 2px;
}

.monitor-line {
    width: 60px;
    height: 3px;
    background: #d49400;
    margin-top: 10px;
    border-radius: 2px;
}

.monitor-stand {
    width: 60px;
    height: 30px;
    border-bottom: 6px solid #cbd5e1;
}

.about-visual-caption {
    position: absolute;
    bottom: 25px;
    left: 28px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Products Modern */
.products-modern {
    background: #f5f8fc;
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.product-card-modern {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}



.product-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(20, 45, 90, 0.09);
    border-color: #cbd9ee;
}

.product-image-modern {
    background: #f5f8fc;
    overflow: hidden;
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-modern img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
    padding: 15px;
}

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

.product-placeholder-modern {
    min-height: 220px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 64px;
}

.product-info-modern {
    padding: 22px;
}

.product-info-modern h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #07152f;
    font-weight: 700;
}

.product-excerpt-modern,
.product-info-modern p {
    font-size: 13px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-action-modern {
    margin-top: auto;
}

/* Rental Modern */
.rental-modern {
    background: #07152f;
    color: #fff;
}

.rental-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.rental-content h2 {
    font-size: 38px;
    line-height: 1.1;
    margin: 10px 0 18px;
    font-weight: 800;
}

.rental-content p {
    color: #b9c7da;
    margin-bottom: 15px;
}

.rental-list-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0;
}

.rental-list-modern div {
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 13px;
    border-radius: 9px;
    color: #dce6f5;
    font-size: 14px;
}

.rental-list-modern i {
    color: #d49400;
    margin-right: 6px;
}

.rental-actions {
    margin-top: 20px;
}

.rental-card-modern {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.rental-card-modern h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #fff;
}

.rental-card-modern p {
    color: #c9d5e7;
    margin-bottom: 20px;
}

/* CTA Modern */
.cta-modern {
    padding: 50px 0;
    background: linear-gradient(90deg, #d49400, #f0c14b);
}

.cta-box-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.cta-box-modern h2 {
    font-size: 30px;
    line-height: 1.1;
    color: #111;
    font-weight: 800;
}

.cta-box-modern p {
    margin-top: 7px;
    color: #333;
    font-size: 15px;
}

/* Contact Modern */
.contact-modern {
    background: #f5f8fc;
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 25px;
}

.contact-info-box {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 16px;
    padding: 30px;
}

.contact-info-box h3 {
    font-size: 20px;
    color: #07152f;
    margin-bottom: 4px;
}

.contact-subtitle {
    color: #718096;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 14px;
}

.contact-row-modern {
    display: flex;
    gap: 15px;
    margin: 18px 0;
    align-items: flex-start;
}

.contact-row-modern i {
    font-size: 22px;
    color: #004a8f;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-row-modern strong {
    display: block;
    font-size: 13px;
    color: #07152f;
}

.contact-row-modern span {
    font-size: 14px;
    color: #718096;
}

.contact-row-modern a {
    color: #004a8f;
    text-decoration: none;
}

.contact-row-modern a:hover {
    color: #d49400;
}

.contact-form-box {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 16px;
    padding: 30px;
}

.contact-form-box form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #dce4ef;
    border-radius: 9px;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
    border-color: #004a8f;
}

.contact-form-box textarea {
    grid-column: 1 / -1;
    min-height: 120px;
    resize: vertical;
}

.contact-form-box .full-width {
    grid-column: 1 / -1;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    font-size: 28px;
    z-index: 1001;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid-modern,
    .about-grid-modern,
    .rental-grid-modern,
    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-bar {
        grid-template-columns: 1fr 1fr;
    }
    .stat-bar-item:nth-child(2) {
        border-right: 0;
    }
    .stat-bar-item:nth-child(-n+2) {
        border-bottom: 1px solid #e7edf5;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        padding: 75px 0;
    }
    .hero-content-modern h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }
    .services-grid-modern,
    .products-grid-modern {
        grid-template-columns: 1fr;
    }
    .stats-bar {
        grid-template-columns: 1fr 1fr;
        margin-top: -20px;
    }
    .stat-bar-item {
        border-right: 0;
        border-bottom: 1px solid #e7edf5;
        padding: 20px;
    }
    .stat-bar-item:last-child,
    .stat-bar-item:nth-last-child(2):nth-child(odd) {
        border-bottom: 0;
    }
    .about-content h2,
    .rental-content h2,
    .section-head-modern h2 {
        font-size: 32px;
    }
    .about-points,
    .rental-list-modern {
        grid-template-columns: 1fr;
    }
    .cta-box-modern {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }
    .contact-form-box form {
        grid-template-columns: 1fr;
    }
    .contact-form-box textarea,
    .contact-form-box .full-width {
        grid-column: auto;
    }
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content-modern h1 {
        font-size: 28px;
    }
    .stats-bar {
        grid-template-columns: 1fr;
    }
    .stat-bar-item {
        border-right: 0;
        border-bottom: 1px solid #e7edf5;
    }
    .stat-bar-item:last-child {
        border-bottom: 0;
    }
}


/* ================================
   About Section v2 (Modern Layout)
   ================================ */
.about-v2 {
    background: #fff;
    position: relative;
    overflow: hidden;
}

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

.about-v2-content {
    max-width: 560px;
}

.about-v2-kicker {
    font-size: 12px;
    font-weight: 900;
    color: #d49400;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.about-v2-content h2 {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    color: #07152f;
    margin: 0 0 20px;
    letter-spacing: -1px;
}

.about-v2-content h2 span {
    color: #004a8f;
}

.about-v2-content p {
    color: #5a6a7a;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 15px;
}

.about-v2-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
}

.about-v2-point {
    padding: 14px 16px;
    background: #f5f8fc;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    color: #07152f;
    border: 1px solid #e7edf5;
    transition: all 0.3s ease;
}

.about-v2-point:hover {
    background: #edf4ff;
    border-color: #004a8f;
    transform: translateY(-2px);
}

.about-v2-point i {
    color: #16a34a;
    margin-right: 6px;
    font-size: 14px;
}

/* About Visual Card */
.about-v2-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-v2-card {
    width: 100%;
    max-width: 480px;
    min-height: 420px;
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 74, 143, 0.08);
    overflow: visible;
}

.about-v2-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-v2-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 74, 143, 0.12) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

.about-v2-icon {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    background: linear-gradient(135deg, #004a8f, #0d5bd7);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 42px;
    box-shadow: 0 15px 40px rgba(0, 74, 143, 0.3);
    position: relative;
    z-index: 2;
}

/* Floating tags */
.float-tag {
    position: absolute;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: tagFloat 4s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tag-computer {
    top: 40px;
    left: 20px;
    background: #f5f8fc;
    color: #004a8f;
    border: 1px solid #e7edf5;
    animation-delay: 0s;
}

.tag-network {
    top: 60px;
    right: 20px;
    background: #fff8e8;
    color: #b8860b;
    border: 1px solid #f0e0a0;
    animation-delay: 1s;
}

.tag-cctv {
    bottom: 80px;
    left: 30px;
    background: #e8f4f8;
    color: #0066aa;
    border: 1px solid #c0e0f0;
    animation-delay: 2s;
}

.tag-cloud {
    bottom: 60px;
    right: 25px;
    background: #edf4ff;
    color: #004a8f;
    border: 1px solid #c0d4f0;
    animation-delay: 0.5s;
}

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

/* ================================
   Customer Trust Section
   ================================ */
.customer-trust {
    background: #f5f8fc;
    position: relative;
}

.trust-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-card {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 18px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.trust-card:hover {
    box-shadow: 0 15px 40px rgba(20, 45, 90, 0.08);
    transform: translateY(-3px);
}

.trust-rating h3 {
    font-size: 20px;
    color: #07152f;
    margin: 15px 0 10px;
    font-weight: 700;
}

.trust-rating p {
    color: #718096;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.trust-stars {
    color: #d49400;
    font-size: 32px;
    letter-spacing: 4px;
}

.trust-btn {
    display: inline-flex;
    padding: 14px 32px;
    font-size: 14px;
}

.trust-why {
    text-align: left;
}

.trust-why h3 {
    font-size: 20px;
    color: #07152f;
    margin: 0 0 12px;
    font-weight: 700;
}

.trust-why p {
    color: #718096;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.trust-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.trust-feature {
    padding: 14px 16px;
    background: #f5f8fc;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #07152f;
    border: 1px solid #e7edf5;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.trust-feature:hover {
    background: #edf4ff;
    border-color: #004a8f;
}

.trust-feature i {
    color: #16a34a;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-v2-grid,
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-v2-content {
        max-width: 100%;
    }
    .about-v2-card {
        min-height: 350px;
    }
    .trust-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .about-v2-content h2 {
        font-size: 32px;
    }
    .about-v2-points,
    .trust-features {
        grid-template-columns: 1fr;
    }
    .about-v2-card {
        min-height: 300px;
    }
    .float-tag {
        font-size: 10px;
        padding: 6px 12px;
    }
    .about-v2-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
}


/* ================================
   Contact Section v2 (Image Design)
   ================================ */
.contact-v2 {
    background: #f5f8fc;
    padding: 80px 0;
}

.contact-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Left: Info Panel */
.contact-v2-info {
    background: #07152f;
    border-radius: 20px;
    padding: 50px 45px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.contact-v2-info h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 18px;
    color: #fff;
}

.contact-v2-info > p {
    color: #a0aec0;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.contact-v2-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 35px;
    flex-grow: 1;
}

.contact-v2-detail {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 20px;
}

.detail-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #718096;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.detail-value {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.detail-value a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.detail-value a:hover {
    color: #d49400;
}

.contact-v2-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    background: #fff;
    color: #07152f;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-white:hover {
    background: #f5f8fc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Right: Form Panel */
.contact-v2-form-wrap {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 20px;
    padding: 40px 35px;
}

.contact-v2-form-wrap h3 {
    font-size: 22px;
    font-weight: 700;
    color: #07152f;
    margin: 0 0 8px;
}

.form-subtitle {
    color: #718096;
    font-size: 13px;
    margin-bottom: 28px;
}

.contact-v2-form-wrap form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* Requirement and Message fields span full width */
.contact-v2-form-wrap .form-group-full {
    grid-column: 1 / -1;
    width: 100%;
}

.contact-v2-form-wrap .form-group-full select,
.contact-v2-form-wrap .form-group-full textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-v2-form-wrap .form-group-full input,
.contact-v2-form-wrap .form-group-full select,
.contact-v2-form-wrap .form-group-full textarea {
    width: 100%;
}

.contact-v2-form-wrap label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 8px;
    text-transform: none;
}

.contact-v2-form-wrap input,
.contact-v2-form-wrap select,
.contact-v2-form-wrap textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    color: #2d3748;
    background: #fff;
    transition: all 0.3s;
    font-family: inherit;
}

.contact-v2-form-wrap input:focus,
.contact-v2-form-wrap select:focus,
.contact-v2-form-wrap textarea:focus {
    border-color: #004a8f;
    box-shadow: 0 0 0 3px rgba(0, 74, 143, 0.08);
}

.contact-v2-form-wrap input::placeholder,
.contact-v2-form-wrap textarea::placeholder {
    color: #a0aec0;
}

.contact-v2-form-wrap select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-v2-form-wrap .form-group {
    display: flex;
    flex-direction: column;
}

.contact-v2-form-wrap .form-group-full {
    grid-column: 1 / -1;
    width: 100%;
}

.contact-v2-form-wrap .form-group-full select,
.contact-v2-form-wrap .form-group-full textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-v2-form-wrap textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-v2-form-wrap .btn-gold.full-width {
    grid-column: 1 / -1;
    justify-content: center;
    padding: 16px;
    font-size: 15px;
    background: #07152f;
    color: #fff;
    margin-top: 8px;
}

.contact-v2-form-wrap .btn-gold.full-width:hover {
    background: #004a8f;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-v2-grid {
        grid-template-columns: 1fr;
    }
    .contact-v2-info {
        padding: 35px 25px;
    }
    .contact-v2-info h2 {
        font-size: 28px;
    }
    .contact-v2-form-wrap {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .contact-v2-form-wrap form {
        grid-template-columns: 1fr;
    }
    .contact-v2-form-wrap .form-group-full {
        grid-column: auto;
    }
    .contact-v2-buttons {
        flex-direction: column;
    }
    .contact-v2-info h2 {
        font-size: 24px;
    }
}


/* ================================
   Footer v2 (Image Design)
   ================================ */
.site-footer-v2 {
    background: #07152f;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-v2-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-v2-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
}

.footer-v2-brand strong {
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.footer-v2-brand span {
    color: #a0aec0;
    font-weight: 400;
}

.footer-v2-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.footer-v2-nav a {
    color: #a0aec0;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-v2-nav a:hover {
    color: #d49400;
}

.footer-v2-credit {
    color: #a0aec0;
    font-size: 13px;
}

.footer-v2-credit strong {
    color: #fff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .footer-v2-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .footer-v2-nav {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* ================================
   Hero Section v3 (Image Design)
   ================================ */
.hero-v3 {
    background: #f0f4f8;
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-v3::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 74, 143, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-v3-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side */
.hero-v3-left {
    max-width: 600px;
}

.hero-v3-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    color: #004a8f;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-v3-kicker::before {
    content: '';
    width: 30px;
    height: 3px;
    background: #d49400;
    border-radius: 2px;
}

.hero-v3-left h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #07152f;
    margin: 0 0 22px;
    letter-spacing: -2px;
}

.hero-v3-left h1 .text-blue {
    color: #004a8f;
}

.hero-v3-left > p {
    font-size: 16px;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 28px;
}

.hero-v3-left > p strong {
    color: #07152f;
}

.hero-v3-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    background: #07152f;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-dark:hover {
    background: #004a8f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 74, 143, 0.25);
}

.btn-white-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    background: #fff;
    color: #07152f;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-white-outline:hover {
    border-color: #004a8f;
    color: #004a8f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Highlights */
.hero-v3-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.hero-v3-highlight {
    background: #fff;
    padding: 20px;
    text-align: left;
}

.hero-v3-highlight strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #07152f;
    margin-bottom: 4px;
}

.hero-v3-highlight span {
    font-size: 12px;
    color: #718096;
}

/* Right Side Card */
.hero-v3-right {
    display: flex;
    justify-content: center;
}

.hero-v3-card {
    background: #eef4fb;
    border-radius: 24px;
    padding: 28px;
    width: 100%;
    max-width: 520px;
    position: relative;
    border: 1px solid rgba(0, 74, 143, 0.08);
}

/* Cross Band Badge */
.hero-cross-band {
    display: inline-block;
    background: #07152f;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 28px;
    margin-bottom: 18px;
    position: relative;
}

.hero-cross-band::before,
.hero-cross-band::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
}

.hero-cross-band::before {
    left: -12px;
    border-width: 16px 12px 16px 0;
    border-color: transparent #07152f transparent transparent;
}

.hero-cross-band::after {
    right: -12px;
    border-width: 16px 0 16px 12px;
    border-color: transparent transparent transparent #07152f;
}

/* Hero Slider */
.hero-v3-slider {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 18px;
    min-height: 280px;
}

.hero-slide {
    display: none;
    width: 100%;
}

.hero-slide.active {
    display: block;
    animation: fadeSlide 0.6s ease;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: scale(1.05); }
    to { opacity: 1; transform: scale(1); }
}

.hero-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.hero-slide-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: #a0aec0;
    gap: 10px;
}

.hero-slide-placeholder i {
    font-size: 48px;
}

.hero-slide-placeholder span {
    font-size: 13px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #d49400;
    border-color: #d49400;
    transform: scale(1.2);
}

/* Card Content */
.hero-v3-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #07152f;
    margin: 0 0 4px;
}

.hero-v3-card-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #004a8f;
    margin: 0 0 10px;
}

.hero-v3-card-content p {
    font-size: 13px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Features Grid */
.hero-v3-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.hero-v3-feature {
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e2e8f0;
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #edf4ff;
    color: #004a8f;
    font-size: 11px;
    font-weight: 800;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.feature-icon.feature-cctv {
    background: #fef3c7;
    color: #92400e;
}

.feature-icon.feature-net {
    background: #e8f4f8;
    color: #0066aa;
}

.hero-v3-feature strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #07152f;
}

.hero-v3-feature span {
    font-size: 11px;
    color: #718096;
}



/* Responsive */
@media (max-width: 1024px) {
    .hero-v3-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-v3-left {
        max-width: 100%;
    }
    .hero-v3-left h1 {
        font-size: 42px;
    }
    .hero-v3-right {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-v3 {
        padding: 50px 0 40px;
    }
    .hero-v3-left h1 {
        font-size: 32px;
    }
    .hero-v3-actions {
        flex-direction: column;
    }
    .hero-v3-highlights {
        grid-template-columns: 1fr;
    }
    .hero-v3-features {
        grid-template-columns: 1fr;
    }
    .hero-v3-card {
        padding: 20px;
    }
}


/* ================================
   Header Call Now Button
   ================================ */
.header-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #07152f;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 10px;
    white-space: nowrap;
}

.header-call-btn:hover {
    background: #d49400;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 148, 0, 0.3);
}

.header-call-btn i {
    font-size: 13px;
}

/* Adjust header layout */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Mobile responsive for call button */
@media (max-width: 900px) {
    .header-call-btn {
        display: none;
    }
}


/* ================================
   Header Topbar
   ================================ */
.header-topbar {
    background: #07152f;
    color: #a0aec0;
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.header-topbar-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header-topbar-left span,
.header-topbar-right span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-topbar i {
    color: #d49400;
    font-size: 12px;
}

.header-topbar a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.header-topbar a:hover {
    color: #d49400;
}

/* Adjust header layout */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.header-inner {
    padding: 18px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header-topbar .container {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    .header-topbar-left {
        flex-direction: column;
        gap: 6px;
    }
}

/* Contact Form - All fields stacked 100% */
.contact-form .form-group,
.contact-form .form-group-full {
    width: 100%;
    float: none;
    clear: both;
}

.contact-form {
    display: block;
}
