:root {
    --primary: #E10600;
    --primary-dark: #b30500;
    --accent: #E10600;
    --secondary: #333333;
    --text-dark: #1a202c;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
}

.loading-container {
    position: relative;
    text-align: center;
    z-index: 10;
}

.loading-logo {
    margin-bottom: 3rem;
}

/* Ensure the main dropdown doesn't clip the mega menu */
.services-dropdown {
    overflow: visible !important;
}

.logo-animation {
    display: inline-block;
    position: relative;
}

.logo-circle {
    width: 80px;
    height: 80px;
    border: 3px solid #E10600;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
    margin: 0 auto 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
}

.loading-logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid transparent;
    border-top-color: #E10600;
    border-radius: 50%;
    animation: rotate 2s linear infinite;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #E10600;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out;
    font-family: 'Inter', sans-serif;
}

.loading-content {
    animation: fadeInUp 1.2s ease-out;
}

.loading-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(45deg, #E10600, #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
}

.loading-subtitle {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.project-counter {
    margin: 2rem 0;
    animation: fadeInUp 1.4s ease-out;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #E10600;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 20px rgba(225, 6, 0, 0.5);
    position: relative;
}

.counter-number::after {
    content: '+';
    font-size: 2rem;
    position: absolute;
    top: 0.5rem;
    margin-left: 0.2rem;
    color: #E10600;
    animation: fadeIn 2s ease-out 1s infinite alternate;
}

.counter-text {
    font-size: 1.1rem;
    color: #333333;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    opacity: 0.9;
}

.loading-progress {
    max-width: 300px;
    margin: 2rem auto 0;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #E10600, #ff4d4d);
    border-radius: 2px;
    width: 0%;
    animation: loadProgress 3s ease-in-out;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.progress-text {
    color: #E10600;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.loading-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #E10600;
    border-radius: 50%;
    animation: float 6s infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    top: 30%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    top: 70%;
    left: 70%;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    top: 40%;
    left: 30%;
    animation-delay: 4s;
}

.particle:nth-child(6) {
    top: 80%;
    left: 60%;
    animation-delay: 5s;
}

/* Loading Screen Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes loadProgress {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

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

/* Hide loading screen when page is loaded */
.loading-screen.hide {
    animation: fadeOut 0.8s ease-out forwards;
}

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

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

/* Service Links */
.service-link {
    color: #E10600;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Showcase Images */
.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.showcase-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* About Section Styles */
.about-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.about-expanded.show {
    max-height: 1000px;
}

#about-read-more {
    cursor: pointer;
    transition: all 0.3s ease;
}

#about-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 6, 0, 0.3);
}

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

/* Reference Page Styles */
.reference-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #E10600, #ff4d4d);
    color: white;
}

.reference-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.reference-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.reference-info h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reference-category {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.reference-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.reference-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.detail-item i {
    color: rgba(255,255,255,0.8);
}

.reference-details-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.reference-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.reference-description h2 {
    font-size: 2.5rem;
    color: #E10600;
    margin-bottom: 1.5rem;
}

.reference-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.reference-description h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.reference-description ul {
    list-style: none;
    margin-bottom: 2rem;
}

.reference-description ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.reference-description ul li i {
    color: #E10600;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.reference-features h3 {
    font-size: 1.8rem;
    color: #E10600;
    margin-bottom: 2rem;
    text-align: center;
}

.tech-partners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.partner-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(225, 6, 0, 0.3);
    transition: all 0.3s ease;
}

.partner-item:hover {
    background: rgba(225, 6, 0, 0.1);
    transform: translateY(-2px);
}

.partner-item i {
    font-size: 2rem;
    color: #E10600;
    margin-bottom: 1rem;
}

.partner-item h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.partner-item p {
    color: #cccccc;
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    background: linear-gradient(135deg, #E10600, #ff4d4d);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(225, 6, 0, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.camera-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.camera-type-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(225, 6, 0, 0.3);
    transition: all 0.3s ease;
}

.camera-type-item:hover {
    background: rgba(225, 6, 0, 0.1);
    transform: translateY(-2px);
}

.camera-type-item i {
    font-size: 2rem;
    color: #E10600;
    margin-bottom: 1rem;
}

.camera-type-item h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.camera-type-item p {
    color: #cccccc;
    font-size: 0.85rem;
    line-height: 1.4;
}

.certificates {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.certificate-item {
    background: linear-gradient(135deg, rgba(225, 6, 0, 0.1), rgba(255, 77, 77, 0.1));
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(225, 6, 0, 0.3);
    transition: all 0.3s ease;
}

.certificate-item:hover {
    background: linear-gradient(135deg, rgba(225, 6, 0, 0.2), rgba(255, 77, 77, 0.2));
    transform: translateY(-2px);
}

.certificate-item i {
    font-size: 2rem;
    color: #E10600;
    margin-bottom: 1rem;
}

.certificate-item h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.certificate-item p {
    color: #cccccc;
    font-size: 0.9rem;
}

.side-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.side-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.side-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(225, 6, 0, 0.3);
}

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

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

.side-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 1rem 0.5rem 0.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.side-gallery-item:hover .side-gallery-overlay {
    transform: translateY(0);
}

.side-gallery-overlay span {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    display: block;
}

.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #E10600;
    margin-bottom: 3rem;
}

.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #E10600;
    margin-bottom: 3rem;
}

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

.testimonial-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(225, 6, 0, 0.3);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(225, 6, 0, 0.5);
}

.testimonial-content p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    text-align: right;
}

.testimonial-author strong {
    color: #E10600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #cccccc;
    font-size: 0.9rem;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #E10600, #ff4d4d);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #E10600;
    margin-bottom: 3rem;
}

.product-category {
    margin-bottom: 4rem;
}

.product-category h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-category h3 i {
    color: #E10600;
    font-size: 1.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(225, 6, 0, 0.2);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.product-info {
    padding: 2rem;
}

.product-info h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-info h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-info h4 a:hover {
    color: #E10600;
}

/* Features Section Links */
.feature-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.feature-card h3 a:hover {
    color: #E10600;
}

.product-specs {
    color: #E10600;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.product-features li i {
    color: #E10600;
    margin-right: 0.8rem;
    font-size: 0.8rem;
}

.product-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #E10600, #ff3333);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 6, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 6, 0, 0.3);
    background: linear-gradient(135deg, #ff3333, #E10600);
}

.product-btn:hover::before {
    left: 100%;
}

.product-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(225, 6, 0, 0.2);
}

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

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

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Service Page Styles */
.service-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #E10600, #ff4d4d);
    color: white;
    text-align: center;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-hero .service-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.service-details {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-description h2 {
    font-size: 2.5rem;
    color: #E10600;
    margin-bottom: 1.5rem;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.service-description h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.service-description ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-description ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-description ul li i {
    color: #E10600;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.service-features h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(225, 6, 0, 0.2);
}

.feature-item i {
    font-size: 2.5rem;
    color: #E10600;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    font-size: 1rem;
}

.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.2), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
}

.features-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(225, 6, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.feature-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(225, 6, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E10600, #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: rgba(225, 6, 0, 0.2);
}

.feature-card i {
    font-size: 3.5rem;
    color: #E10600;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.4s ease;
    position: relative;
}

.feature-card i::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(225, 6, 0, 0.1);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
    color: #ff4d4d;
}

.feature-card:hover i::before {
    background: rgba(225, 6, 0, 0.15);
    transform: translate(-50%, -50%) scale(1.2);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    transition: color 0.3s ease;
    position: relative;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #E10600, #ff6b6b);
    border-radius: 1px;
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-card:hover h3::after {
    opacity: 1;
    width: 50px;
}

.feature-card:hover h3 {
    color: #E10600;
}

.feature-card p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-description ul li i {
    color: #E10600;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.service-features h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(225, 6, 0, 0.2);
}

.feature-item i {
    font-size: 2.5rem;
    color: #E10600;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    font-size: 1rem;
}

.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.2), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
}

.features-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(225, 6, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.feature-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(225, 6, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E10600, #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: rgba(225, 6, 0, 0.2);
}

.feature-card i {
    font-size: 3.5rem;
    color: #E10600;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.4s ease;
    position: relative;
}

.feature-card i::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(225, 6, 0, 0.1);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
    color: #ff4d4d;
}

.feature-card:hover i::before {
    background: rgba(225, 6, 0, 0.15);
    transform: translate(-50%, -50%) scale(1.2);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    transition: color 0.3s ease;
    position: relative;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #E10600, #ff6b6b);
    border-radius: 1px;
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-card:hover h3::after {
    opacity: 1;
    width: 50px;
}

.feature-card:hover h3 {
    color: #E10600;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0 1rem;
}

.feature-card:hover p {
    color: #495057;
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .service-hero {
        padding: 100px 0 60px;
    }
    
    .service-details {
        padding: 60px 0;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

/* Logo Styles */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-brand:hover .footer-logo {
    opacity: 1;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.nav-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #E10600;
    text-decoration: none;
}

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

.nav-item a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E10600;
    transition: width 0.3s ease;
}

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

.nav-item a:hover {
    color: #E10600;
}

/* AI Assistant Button in Navigation */
.ai-assistant-btn {
    background: linear-gradient(135deg, #E10600, #ff4d4d) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(225, 6, 0, 0.2) !important;
    text-decoration: none !important;
    border: none !important;
}

.ai-assistant-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(225, 6, 0, 0.3) !important;
    background: linear-gradient(135deg, #ff4d4d, #E10600) !important;
    color: white !important;
}

.ai-assistant-btn i {
    font-size: 1.1rem !important;
}

.ai-assistant-btn::after {
    display: none !important;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #1a1a1a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.hero-slide {
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: #f0f0f0;
}

/* Fix Red on Red Issue */
.btn-primary {
    background-color: #E10600;
    color: #ffffff !important;
    border: none;
}

.btn-primary:hover {
    background-color: #b30500;
    color: #ffffff !important;
}

.ref-tab-btn.active {
    background-color: #E10600 !important;
    color: #ffffff !important;
}

.category-tag {
    color: #E10600;
    background-color: rgba(225, 6, 0, 0.1);
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 600;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background: #E10600;
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(225, 6, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(225, 6, 0, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #E10600;
    border: 2px solid #E10600;
    margin-top: 1rem;
}

.cta-button.large {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(225, 6, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(225, 6, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(225, 6, 0, 0.03) 0%, transparent 70%);
}

.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(225, 6, 0, 0.1), rgba(255, 77, 77, 0.05));
    animation: float 20s infinite ease-in-out;
}

.hero-bg::before {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-bg::after {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

/* Features Section */
.features {
    padding: 120px 0 120px 0;
    background: #fff;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #E10600, #ff4d4d);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem;
}

.feature-card {
    text-align: center;
    padding: 1.2rem 0.6rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(225, 6, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(225, 6, 0, 0.2);
    border-color: rgba(225, 6, 0, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E10600, #ff4d4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(225, 6, 0, 0.3);
}

.feature-icon i {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.2);
}

.feature-icon i {
    font-size: 1.2rem;
    color: white;
    display: block;
    text-align: center;
    line-height: 50px;
}

.feature-icon .icon-text {
    font-size: 1.5rem;
    display: block;
    text-align: center;
    line-height: 50px;
    color: white !important;
    font-weight: bold;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    margin: 13px auto;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #1a1a1a;
    position: relative;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #E10600;
}

.feature-card p {
    color: #666;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #333;
}

/* Service References Section */
.service-references {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-references h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-references h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #E10600, #ff4d4d);
    border-radius: 2px;
}

.service-references-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.service-reference-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

.service-reference-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(225, 6, 0, 0.15);
}

.service-reference-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-reference-item:hover .service-reference-image {
    transform: scale(1.1);
}

.service-reference-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
    color: white;
    padding: 1.5rem 1rem;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-reference-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.service-reference-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
}

/* Service Filters */
.service-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin: 2rem 0;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid #E10600;
    background: white;
    color: #E10600;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #E10600;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 6, 0, 0.3);
}

/* Responsive Design for Service References */
@media (max-width: 1200px) {
    .service-references-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .service-references-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .service-reference-image {
        height: 160px;
    }
    
    .service-filters {
        gap: 0.6rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .service-references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .service-reference-image {
        height: 140px;
    }
    
    .service-reference-title {
        font-size: 1rem;
    }
    
    .service-reference-description {
        font-size: 0.8rem;
    }
    
    .service-filters {
        gap: 0.4rem;
    }
    
    .filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .service-references-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-reference-image {
        height: 200px;
    }
    
    .service-reference-overlay {
        padding: 1rem;
    }
    
    .service-reference-title {
        font-size: 1.1rem;
    }
    
    .service-reference-description {
        font-size: 0.9rem;
    }
    
    .service-filters {
        gap: 0.3rem;
    }
    
    .filter-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
}

/* Comprehensive References Section */
.references-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.references-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(225, 6, 0, 0.1), rgba(225, 6, 0, 0.3), rgba(225, 6, 0, 0.1));
}

.references-section .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4rem;
    position: relative;
    letter-spacing: -0.5px;
}

.references-section .section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(225, 6, 0, 0.1), rgba(225, 6, 0, 0.05));
    border-radius: 50%;
    z-index: -1;
}

.references-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #E10600, #ff6b6b);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(225, 6, 0, 0.3);
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
}

.reference-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(225, 6, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.reference-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(225, 6, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.reference-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #E10600, #ff6b6b, #E10600);
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.reference-item:hover::before {
    transform: scaleX(1);
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.reference-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: rgba(225, 6, 0, 0.2);
}

.reference-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
}

.reference-item h4::before {
    content: '🏢';
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.reference-item p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-size: 0.98rem;
    position: relative;
    padding-left: 1rem;
}

.reference-item p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, rgba(225, 6, 0, 0.3), rgba(225, 6, 0, 0.1));
    border-radius: 2px;
}

.reference-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E10600, #ff6b6b);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(225, 6, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.reference-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.reference-badge:hover::before {
    left: 100%;
}

/* Responsive Design for Comprehensive References */
@media (max-width: 1200px) {
    .reference-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .reference-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .reference-item {
        padding: 1.5rem;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .reference-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .reference-item {
        padding: 1.2rem;
    }
    
    .category-title {
        font-size: 1.6rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .reference-badge {
        position: static;
        margin-top: 1rem;
        display: block;
        text-align: center;
    }
}

/* References Categories */
.references-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.reference-category-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.reference-category-link:hover {
    transform: translateY(-5px);
}

.category-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(225, 6, 0, 0.15);
    border-color: rgba(225, 6, 0, 0.3);
}

.category-card i {
    font-size: 2.5rem;
    color: #E10600;
    background: rgba(225, 6, 0, 0.1);
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.category-card:hover i {
    background: #E10600;
    color: white;
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: #E10600;
}

.category-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

/* 5x2 Grid Layout for References Categories */
.references-categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for 5x2 References Categories */
@media (max-width: 1200px) {
    .references-categories {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .references-categories {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.5rem;
        min-height: 160px;
    }
    
    .category-card i {
        font-size: 2rem;
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .references-categories {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.2rem;
        min-height: 140px;
    }
    
    .category-card i {
        font-size: 1.8rem;
        width: 60px;
        height: 60px;
    }
    
    .category-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .references-categories {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(10, 1fr);
        gap: 1rem;
    }
    
    .category-card {
        padding: 1rem;
        min-height: 120px;
    }
    
    .category-card i {
        font-size: 1.6rem;
        width: 50px;
        height: 50px;
    }
    
    .category-card h3 {
        font-size: 1rem;
    }
}

/* Photo Gallery Section */
.photo-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.photo-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.2), transparent);
}

.photo-gallery .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
    letter-spacing: -0.3px;
}

.photo-gallery .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #E10600, #ff6b6b);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(225, 6, 0, 0.3);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: #ffffff;
}

.gallery-carousel {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
}

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

.gallery-slide.active img {
    transform: scale(1.02);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.6), transparent);
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.gallery-slide.active .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.gallery-overlay p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.gallery-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
    padding: 8px 16px;
    background: rgba(0,0,0,0.3);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.gallery-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255,255,255,0.2);
}

.gallery-dot:hover {
    background: rgba(255,255,255,0.6);
    transform: scale(1.2);
}

.gallery-dot.active {
    background: #E10600;
    transform: scale(1.3);
    border-color: #E10600;
    box-shadow: 0 0 10px rgba(225, 6, 0, 0.5);
}

.gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 15;
    pointer-events: none;
}

.gallery-btn {
    background: rgba(225, 6, 0, 0.9);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 25px rgba(225, 6, 0, 0.3);
}

.gallery-btn:hover {
    background: #E10600;
    transform: scale(1.1) translateX(-2px);
    box-shadow: 0 12px 35px rgba(225, 6, 0, 0.4);
}

.gallery-btn:active {
    transform: scale(0.95);
}

.gallery-btn:last-child:hover {
    transform: scale(1.1) translateX(2px);
}

/* Showcase Section */
.showcase {
    padding: 120px 0;
    background: #f8f9fa;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.showcase-item {
    height: 300px;
    background: linear-gradient(45deg, #E10600, #ff4d4d);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.showcase-item:nth-child(1) { 
    background: linear-gradient(45deg, rgba(225, 6, 0, 0.8), rgba(255, 77, 77, 0.8)), url('https://images.unsplash.com/photo-1558002038-1055907df827?w=600&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}
.showcase-item:nth-child(2) { 
    background: linear-gradient(45deg, rgba(225, 6, 0, 0.8), rgba(255, 77, 77, 0.8)), url('https://images.unsplash.com/photo-1557597774-9d273605dfa9?w=600&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}
.showcase-item:nth-child(3) { 
    background: linear-gradient(45deg, rgba(225, 6, 0, 0.8), rgba(255, 77, 77, 0.8)), url('https://images.unsplash.com/photo-1551808525-51a94da548ce?w=600&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}
.showcase-item:nth-child(4) { 
    background: linear-gradient(45deg, rgba(225, 6, 0, 0.8), rgba(255, 77, 77, 0.8)), url('https://images.unsplash.com/photo-1586773860418-d372a67ecf14?w=600&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}
.showcase-item:nth-child(5) { 
    background: linear-gradient(45deg, rgba(225, 6, 0, 0.8), rgba(255, 77, 77, 0.8)), url('https://images.unsplash.com/photo-1507208773393-4019ce302d2d?w=600&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}
.showcase-item:nth-child(6) { 
    background: linear-gradient(45deg, rgba(225, 6, 0, 0.8), rgba(255, 77, 77, 0.8)), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc51?w=600&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
    z-index: 1;
}

.showcase-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.showcase-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

/* About Section */
.about {
    padding: 120px 0;
    background: white;
}

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

.about-text {
    font-size: 1.1rem;
    position: relative;
}

.about-text::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #E10600, #ff4d4d);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.about-text p:hover {
    color: #333;
}

.about-image {
    position: relative;
}

.about-image-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(225, 6, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(225, 6, 0, 0.3);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(225, 6, 0, 0.3), rgba(255, 77, 77, 0.3)), url('https://picsum.photos/seed/automationtechnology/600/400.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(225, 6, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.02);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(225, 6, 0, 0.1), transparent);
    z-index: 1;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.05), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(225, 6, 0, 0.15);
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-author h4 {
    color: #E10600;
}

.testimonial-author span {
    color: #E10600;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #E10600;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Map Section */
.map-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

/* AI Chat Assistant Styles */
.chat-assistant {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.chat-widget {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.chat-widget.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.chat-header {
    background: linear-gradient(135deg, #E10600, #ff4d4d);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px 20px 0 0;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chat-info {
    flex: 1;
    margin-left: 15px;
}

.chat-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.status-indicator {
    font-size: 0.85rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-indicator.online::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chat-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
}

.chat-welcome {
    text-align: center;
    margin-bottom: 20px;
}

.welcome-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E10600, #ff4d4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.chat-welcome h4 {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.chat-welcome p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.chat-suggestions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.suggestion-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #333;
}

.suggestion-item:hover {
    background: #E10600;
    color: white;
    border-color: #E10600;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 6, 0, 0.2);
}

.suggestion-item i {
    font-size: 1rem;
    opacity: 0.7;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    display: flex;
    gap: 10px;
    animation: messageSlide 0.3s ease-out;
}

.message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.message.ai .message-avatar {
    background: linear-gradient(135deg, #E10600, #ff4d4d);
    color: white;
}

.message.user .message-avatar {
    background: #e5e7eb;
    color: #666;
}

.message-content {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.message.ai .message-content {
    background: white;
    color: #333;
    border: 1px solid #e5e7eb;
    border-bottom-left-radius: 4px;
}

.message.user .message-content {
    background: linear-gradient(135deg, #E10600, #ff4d4d);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 5px;
}

.chat-input-container {
    padding: 20px;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.chat-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

#chat-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 25px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

#chat-input:focus {
    border-color: #E10600;
}

.chat-send-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #E10600, #ff4d4d);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(225, 6, 0, 0.3);
}

.chat-send-btn:active {
    transform: scale(0.95);
}

.chat-typing-indicator {
    display: none;
    align-items: center;
    gap: 5px;
    padding: 15px;
    color: #666;
    font-size: 0.85rem;
}

.chat-typing-indicator.active {
    display: flex;
}

.chat-typing-indicator span {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.chat-typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

.chat-launcher {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E10600, #ff4d4d);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(225, 6, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.chat-launcher:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(225, 6, 0, 0.4);
}

.chat-launcher:active {
    transform: scale(0.95);
}

.launcher-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.chat-launcher.active .launcher-icon {
    transform: rotate(45deg);
}

.launcher-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #4ade80;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.hero {
    padding: 120px 0 80px;
    background: #ffffff;
    color: #333333;
    border-bottom: 3px solid #E10600;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="none" stroke="rgba(255,255,255,0.05)" width="100" height="100"/><circle fill="none" stroke="rgba(255,255,255,0.03)" cx="50" cy="50" r="40"/><circle fill="none" stroke="rgba(255,255,255,0.02)" cx="50" cy="50" r="30"/></svg>');
    background-size: 100px 100px;
    animation: float 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(225, 6, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

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

.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    text-shadow: 0 3px 15px rgba(0,0,0,0.4);
    animation: fadeInUp 1s ease-out;
    letter-spacing: -1px;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #E10600, transparent);
    border-radius: 2px;
}

.hero p {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .chat-assistant {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-widget {
        width: calc(100vw - 40px);
        height: calc(100vh - 120px);
        right: -10px;
    }
    
    .chat-suggestions {
        grid-template-columns: 1fr;
    }
    
    .message-content {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .chat-assistant {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-widget {
        width: calc(100vw - 30px);
        height: calc(100vh - 100px);
    }
}

.map-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

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

.marker-circle {
    width: 16px;
    height: 16px;
    background: #E10600;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.marker-ring {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid #E10600;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.marker-label {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

.location-marker {
    cursor: pointer;
    transition: all 0.3s ease;
}

.marker-circle {
    transition: all 0.3s ease;
}

.marker-ring {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.location-marker:hover .marker-circle {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.location-tooltip {
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 250px;
}

.location-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.location-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.tooltip-content h4 {
    color: #E10600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tooltip-content p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tooltip-content i {
    color: #E10600;
    width: 20px;
}

.tooltip-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #E10600;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.tooltip-link:hover {
    background: #ff4d4d;
    transform: translateY(-2px);
}

/* News Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    color: #666666;
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

.news-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(225, 6, 0, 0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.news-section .section-title {
    color: #1a1a1a;
    position: relative;
    z-index: 1;
}

.news-section .section-title::after {
    background: linear-gradient(90deg, #E10600, #ff4d4d);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.news-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(225, 6, 0, 0.3);
}

.news-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.news-overlay {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: rgba(225, 6, 0, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

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

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

.news-content {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.98);
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #E10600;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.news-date i {
    font-size: 0.7rem;
}

.news-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.news-link {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #E10600;
}

.news-content p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.news-more {
    text-align: center;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.news-more .cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-more .cta-button.secondary:hover {
    background: #E10600;
    color: white;
    border-color: #E10600;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(225, 6, 0, 0.4);
}


/* Responsive Design for News Section */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .news-section {
        padding: 40px 0;
    }
    
    .news-content {
        padding: 1rem;
    }
    
    .news-content h3 {
        font-size: 1rem;
    }
    
    .news-date {
        font-size: 0.7rem;
    }
    
    .news-content p {
        font-size: 0.85rem;
    }
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #E10600 0%, #ff4d4d 50%, #E10600 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="none" stroke="rgba(255,255,255,0.1)" cx="50" cy="50" r="40"/><circle fill="none" stroke="rgba(255,255,255,0.05)" cx="50" cy="50" r="30"/></svg>');
    background-size: 100px 100px;
    animation: float 20s linear infinite;
}

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

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    text-shadow: 0 3px 15px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
    position: relative;
}

.cta h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
}

.cta p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    color: #E10600;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    color: #ff4d4d;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* Footer */
.footer {
    background: #ffffff;
    color: #333333;
    border-top: 1px solid #eeeeee;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #E10600;
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: #666666;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #E10600;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(225, 6, 0, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.social-icons a:hover::before {
    width: 100%;
    height: 100%;
}

.social-icons a:hover {
    background: #E10600;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #eeeeee;
    color: #999999;
}

.footer-contact a,
.footer-bottom a {
    color: #E10600;
    text-decoration: none;
}

.footer-contact a:hover,
.footer-bottom a:hover {
    color: #ff4d4d;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .features {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Admin Text Link */
.admin-text {
    position: fixed;
    bottom: 5px;
    right: 10px;
    z-index: 1000;
}

.admin-text a {
    color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-size: 10px;
    font-family: monospace;
    text-transform: lowercase;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.admin-text a:hover {
    color: rgba(225, 6, 0, 0.8);
    text-shadow: 0 0 5px rgba(225, 6, 0, 0.5);
}

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

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

section {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

section:nth-child(even) {
    animation-name: fadeIn;
}

/* 2026 UX/performance refresh */
section {
    opacity: 1;
    animation: none;
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    border: 0;
    background: transparent;
    font: inherit;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.services-dropdown {
    position: fixed; /* Fix to viewport to ensure full width control */
    top: 72px; /* Standard navbar height offset */
    left: 50%;
    transform: translateX(-50%);
    width: min(1240px, 98vw);
    background: #fff;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid #ececec;
    border-top: none;
    padding: 0;
    display: none;
    z-index: 1200;
}

.services-dropdown.open {
    display: flex;
}

.services-dropdown a {
    display: block;
    color: #222;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.services-dropdown a:hover {
    background: #f7f7f7;
    color: #E10600;
}

.service-item-group {
    position: relative;
}

.service-main-link {
    display: block;
    color: #222;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.service-main-link:hover {
    background: #f7f7f7;
    color: #E10600;
}

.service-submenu {
    position: absolute;
    top: 0;
    left: calc(100% + 8px);
    min-width: 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #ececec;
    padding: 8px;
    display: none;
    z-index: 1250;
}

.service-item-group:hover .service-submenu {
    display: block;
}

.service-submenu a {
    display: block;
    text-decoration: none;
    color: #222;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.service-submenu a:hover {
    background: #f7f7f7;
    color: #E10600;
}

.feature-cover {
    width: calc(100% + 1.2rem);
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin: -0.6rem -0.6rem 0.8rem;
}

.reference-item .reference-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.hero-badges {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badges span {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.85rem;
    backdrop-filter: blur(8px);
}

.modern-map {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.15);
}

.map-marker-btn {
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 0;
    background: #E10600;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 10px 28px rgba(225, 6, 0, 0.45);
    cursor: pointer;
}

.map-contact-card {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: min(320px, calc(100% - 40px));
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    display: none;
}

.map-contact-card.show {
    display: block;
}

.map-contact-card h4 {
    margin-bottom: 8px;
}

.map-contact-card p {
    margin: 4px 0;
    font-size: 0.95rem;
}

.map-contact-card a {
    margin-top: 10px;
    display: inline-block;
    color: #E10600;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .hero {
        min-height: 70vh;
        padding-top: 90px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

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

@media (max-width: 768px) {
    .nav-menu .dropdown {
        width: 100%;
    }

    .dropdown-btn {
        width: 100%;
        justify-content: center;
        padding: 8px 0;
    }

    .services-dropdown {
        position: static;
        min-width: unset;
        margin-top: 10px;
        box-shadow: none;
        border: 1px solid #eee;
    }

    .service-submenu {
        position: static;
        display: block;
        box-shadow: none;
        border: 0;
        padding: 4px 0 0 10px;
        margin-bottom: 8px;
    }

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

    .feature-card {
        padding: 1rem;
    }

    .about-text::before {
        display: none;
    }

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

    .map-marker-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

/* Map Container Centering */
.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.interactive-map iframe {
    border-radius: 15px;
    display: block;
    margin: 0 auto;
}

.news-link span {
    color: #E10600;
    font-weight: 600;
    transition: color 0.3s;
}

.news-link span:hover {
    color: #b30500;
}

/* --- FIXES FOR UI --- */
.hero {
    background-color: #1a1a1a !important;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1558346490-a72e53ae2d4f?w=1920&h=1080&fit=crop') !important;
    background-size: cover !important;
    background-position: center !important;
    background-blend-mode: overlay !important;
}

.hero-title, .hero-subtitle, .hero p, .hero h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important;
}

.news-section {
    background: #f8f9fa !important;
}

.news-more .cta-button.secondary {
    background: #E10600 !important;
    color: white !important;
    border: none !important;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 50px;
}

.news-more .cta-button.secondary:hover {
    background: #b30500 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(225, 6, 0, 0.4) !important;
}


/* Modern Double-Column Mega Menu */
.mega-menu-new {
    display: none !important; /* Start hidden */
    width: 100%;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 0 0 15px 15px;
    background: #fff;
    max-height: 80vh;
}

.mega-menu-new.open {
    display: flex !important; /* Show when open class is added */
}

.mega-sidebar {
    width: 280px;
    background: #f8f9fa;
    border-right: 1px solid #eee;
    padding: 10px;
}

.mega-nav-item {
    margin-bottom: 2px;
}

.mega-main-link {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 15px !important;
    border-radius: 8px;
    color: #333 !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    background: transparent !important;
}

.mega-nav-item:hover .mega-main-link,
.mega-nav-item.active .mega-main-link {
    background: #fff !important;
    color: #E10600 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.mega-main-link i {
    width: 20px;
    text-align: center;
    color: #E10600;
    font-size: 1.1rem;
}

.mega-content-area {
    flex: 1;
    background: #fff;
    padding: 2.5rem;
    min-height: 500px;
    max-height: 70vh;
    overflow-y: auto;
}

.mega-pane {
    display: none;
    animation: fadeInMega 0.4s ease;
}

.mega-pane.active {
    display: block;
}

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

.mega-pane-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: start;
    flex: 1;
}

.mega-pane {
    display: none;
    animation: fadeInMega 0.4s ease;
    flex-direction: row;
    gap: 2rem;
}

.mega-pane.active {
    display: flex;
}

.mega-preview-column {
    width: 300px;
    flex-shrink: 0;
    border-left: 1px solid #f0f0f0;
    padding-left: 2rem;
}

.mega-preview-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    position: sticky;
    top: 0;
    transition: all 0.3s ease;
}

.mega-preview-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.mega-preview-info h5 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.mega-preview-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Animations */
@keyframes fadeInMega {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .mega-preview-column {
        display: none;
    }
}

