:root {
    --primary-color: #ffc107;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: url('images/bg.webp') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-device {
    animation: float 6s ease-in-out infinite;
}

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

/* Feature Icons */
.feature-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Product Cards */
.product-card {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Project Cards */
.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.project-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Value Numbers */
.value-number {
    background: linear-gradient(45deg, var(--primary-color), #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Partner Logos */
.partner-logo {
    transition: transform 0.3s ease;
}

/* ------------------------------------------------------------------ */
/* Additional Styles                                                   */
/* Note: Duplicate selectors that already exist in this file are      */
/* intentionally not redefined here to avoid conflicts.               */
/* ------------------------------------------------------------------ */

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

/* Header */
.header {
    background: #212529;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo svg text {
    font-family: Arial, sans-serif;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #F59E0B;
}

.cta-button {
    background: #F59E0B;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #D97706;
}

/* Hero Section */
.hero {
    background: #F7FAFC;
    padding: 8rem 0 4rem;
    margin-top: 60px;
}

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

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.125rem;
    color: #4A5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.info-card svg {
    color: #F59E0B;
    flex-shrink: 0;
}

.info-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.25rem;
}

.info-card p {
    font-size: 0.875rem;
    color: #4A5568;
    margin: 0;
}

.hero-cta {
    background: #F59E0B;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-cta:hover {
    background: #D97706;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Services Section */
.services {
    background: #212529;
    padding: 4rem 0;
    color: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

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

.service-card {
    background: #4A5568;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1rem 1rem 0.5rem;
}

.service-card p {
    padding: 0 1rem 1.5rem;
    color: #E2E8F0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: #F59E0B;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button-large {
    background: white;
    color: #F59E0B;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.cta-button-large:hover {
    transform: translateY(-2px);
}

/* Team Section */
.team {
    background: #F7FAFC;
    padding: 4rem 0;
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 3rem;
}

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

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    padding: 1rem 1rem 0.5rem;
}

.team-member p {
    padding: 0 1rem;
    color: #4A5568;
    margin-bottom: 0.5rem;
}

.team-member p:last-child {
    padding-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #718096;
}

.team-cta {
    display: block;
    margin: 0 auto;
    background: #F59E0B;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.team-cta:hover {
    background: #D97706;
}

/* Gallery Section */
.gallery {
    background: #212529;
    padding: 4rem 0;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
}

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

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
    cursor: pointer;
}

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

/* Price List Section */
.price-list {
    background: #F7FAFC;
    padding: 4rem 0;
}

.price-list h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 3rem;
}

.price-items {
    max-width: 800px;
    margin: 0 auto;
}

.price-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.price-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.price-info p {
    color: #4A5568;
    font-size: 0.875rem;
    line-height: 1.5;
}

.price {
    background: #F59E0B;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 1.25rem;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
    margin-left: auto;
    margin-right: 1rem;
}

/* Online Booking Section */
.online-booking {
    background: #212529;
    padding: 4rem 0;
}

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

.booking-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.booking-text p {
    color: #E2E8F0;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.booking-button {
    background: #F59E0B;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.booking-button:hover {
    background: #D97706;
}

.booking-calendar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar-placeholder {
    background: #4A5568;
    padding: 2rem;
    border-radius: 12px;
}

/* Brands Section */
.brands {
    background: #F7FAFC;
    padding: 4rem 0;
}

.brands h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 3rem;
}

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

.brand-logo {
    background: white;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-weight: 600;
    color: #212529;
    transition: transform 0.3s;
}

.brand-logo:hover {
    transform: translateY(-3px);
}

.brands-cta {
    display: block;
    margin: 0 auto;
    background: #F59E0B;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.brands-cta:hover {
    background: #D97706;
}

/* Articles Section */
.articles {
    background: #212529;
    padding: 4rem 0;
}

.articles h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
}

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

.article-card {
    background: #4A5568;
    padding: 2rem;
    border-radius: 12px;
    color: white;
}

.article-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-card p {
    color: #E2E8F0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-date {
    color: #F59E0B;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Trust Section */
.trust {
    background: #F7FAFC;
    padding: 4rem 0;
}

.trust h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 3rem;
}

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

.trust-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.trust-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F59E0B;
    margin-bottom: 1rem;
}

.trust-item p {
    color: #4A5568;
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    background: #212529;
    padding: 4rem 0;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
}

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

.contact-info {
    text-align: center;
    background: #4A5568;
    padding: 2rem 1rem;
    border-radius: 8px;
}

.contact-info h3 {
    color: #F59E0B;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: white;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #1A202C;
    padding: 3rem 0 1rem;
    color: white;
}

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

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #F59E0B;
}

.footer-section p,
.footer-section a {
    color: #E2E8F0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #F59E0B;
}

.footer-bottom {
    border-top: 1px solid #4A5568;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #A0AEC0;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        max-width: 768px;
        padding: 0 15px;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .price {
        align-self: flex-end;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .services h2,
    .team h2,
    .gallery h2,
    .price-list h2,
    .brands h2,
    .articles h2,
    .trust h2,
    .contact h2 {
        font-size: 2rem;
    }

    .cta-content h2,
    .booking-text h2 {
        font-size: 2rem;
    }

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

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

.partner-logo:hover {
    transform: scale(1.1);
}

.brand-placeholder {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brand-placeholder:hover {
    background-color: var(--primary-color) !important;
    color: var(--dark-color) !important;
}

/* Benefit Cards */
.benefit-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* News Cards */
.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.news-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Contact Form */
.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1rem;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    color: white;
}

/* Contact Info */
.contact-info i {
    font-size: 1.2rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-warning {
    background: linear-gradient(45deg, var(--primary-color), #ffeb3b);
    border: none;
}

.btn-warning:hover {
    background: linear-gradient(45deg, #ffeb3b, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
section {
    scroll-margin-top: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }

    .hero-section .display-4 {
        font-size: 2.5rem;
    }

    .hero-device {
        margin-top: 2rem;
    }

    .feature-item {
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 1rem;
    }

    .value-number {
        font-size: 2.5rem !important;
    }

    .partner-logo {
        margin-bottom: 1rem;
    }

    .brand-placeholder {
        height: 60px;
    }

    .brand-placeholder span {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-section .display-4 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    .product-card img,
    .project-card img,
    .news-card img {
        height: 150px;
    }

    .brand-placeholder {
        height: 50px;
    }

    .brand-placeholder span {
        font-size: 0.7rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e0a800;
}
