/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #007bff;
    --primary-dark: #0056b3;
    --secondary-color: #6c757d;
    --background-color: #f8f9fa;
    --text-color: #2c2e30;
    --black-color: #1a202c;
    --text-dark: #333333;
    --text-muted: #666666;
    --light-bg: #f8f9ff;
    --border-color: #e2e8f0;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 30px rgba(0, 123, 255, 0.1);
    --shadow-heavy: 0 20px 40px rgba(0, 123, 255, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: white;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-10px, -10px) rotate(2deg);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade {
    animation: fadeInUp 0.6s ease-out;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding-top: 80px;
    /* Space for fixed navbar */
}

/* Navbar Customization */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 123, 255, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: #007bff !important;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    color: #0056b3 !important;
    transform: scale(1.05);
}

.navbar-brand p {
    margin: 0;
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 123, 255, 0.1);
}

.navbar-nav .nav-link {
    color: #1a202c !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 20px !important;
    margin: 0 5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 86, 179, 0.1));
    transition: left 0.3s ease;
    z-index: -1;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    left: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #007bff !important;
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3, #004085);
}

.btn-primary:active {
    transform: translateY(0);
}

.custom-toggler {
    border: 2px solid #007bff;
    border-radius: 10px;
    padding: 6px 10px;
    transition: all 0.3s ease;
}

.custom-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23007bff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 20px;
    height: 20px;
}

.floating-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        padding: 20px 0;
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 12px 20px !important;
    }

    .floating-icons {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
}



/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */

.hero-section {
    position: relative;
    background: url('https://wallpapercave.com/wp/wp1842342.jpg') no-repeat center center;
    background-size: cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0 1rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section>* {
    position: relative;
    z-index: 2;
}

.hero-section h1,
.hero-section p,
.hero-section .btn {
    animation: fadeSlideIn 1.5s ease-out forwards;
    opacity: 0;
}

.hero-section h1 {
    animation-delay: 0.3s;
}

.hero-section p {
    animation-delay: 0.6s;
}

.hero-section .btn {
    animation-delay: 0.9s;
}

/* Hero variations for other pages */
.hero-about,
.hero-gallery,
.hero-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-about::before,
.hero-gallery::before,
.hero-contact::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(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-about h1,
.hero-gallery h1,
.hero-contact h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-about .subtitle,
.hero-gallery .subtitle,
.hero-contact .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 1rem;
    position: relative;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
} */

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
    background-color: var(--primary-color);
    padding: 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 1rem;
}

.cta-text {
    color: white;
    font-size: 1.25rem;
    font-weight: 500;
}

.cta-button {
    background-color: white;
    color: #333;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #333;
    color: white;
}

/* ==========================================================================
   ABOUT COMPANY SECTION
   ========================================================================== */

.about-company {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #007bff20, #0056b320);
    border-radius: 20px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.feature-list li {
    font-size: 1rem;
    color: var(--black-color);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 10px;
    margin-top: 3px;
}

/* ==========================================================================
   DIVISIONS SECTION
   ========================================================================== */

.divisions-section {
    background: white;
    padding: 100px 0;
    position: relative;
}

.divisions-grid {
    position: relative;
}

.division-card {
    background: var(--background-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid #e9ecef;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.division-card:nth-child(1) {
    animation-delay: 0.2s;
}

.division-card:nth-child(2) {
    animation-delay: 0.4s;
}

.division-card:nth-child(3) {
    animation-delay: 0.6s;
}

.division-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--division-color), var(--division-color-light));
}

.division-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    background: white;
    border-color: var(--division-color);
}

/* Division Colors */
.division-wholesale {
    --division-color: #007bff;
    --division-color-light: #17a2b8;
}

.division-project {
    --division-color: #28a745;
    --division-color-light: #20c997;
}

.division-trade {
    --division-color: #6f42c1;
    --division-color-light: #e83e8c;
}

.division-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--division-color), var(--division-color-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-medium);
}

.division-card:hover .division-icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: var(--shadow-heavy);
}

.division-icon i {
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.division-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 1rem;
}

.division-description {
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.division-features {
    text-align: left;
}

.division-features ul {
    list-style: none;
    padding: 0;
}

.division-features li {
    padding: 0.7rem 0;
    color: #495057;
    position: relative;
    padding-left: 2.5rem;
    font-size: 1rem;
}

.division-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.7rem;
    color: var(--division-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.division-btn {
    background: linear-gradient(135deg, var(--division-color), var(--division-color-light));
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.division-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

/* ==========================================================================
   TRUSTED BRANDS SECTION
   ========================================================================== */

.trusted-brands-section {
    background: var(--background-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.brands-slider-container {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.brands-slider {
    display: flex;
    animation: slide 30s linear infinite;
    gap: 3rem;
}

.brands-slider:hover {
    animation-play-state: paused;
}

.brand-logo {
    flex: 0 0 auto;
    width: 200px;
    height: 120px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    padding: 1rem;
}

.brand-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.brand-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Countries Section */
.countries-section {
    margin-top: 3rem;
    text-align: center;
}

.countries-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 2rem;
}

.country-flags {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.country-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.country-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.country-flag {
    width: 40px;
    height: 30px;
    border-radius: 5px;
    margin-right: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.country-name {
    font-weight: 600;
    color: var(--black-color);
    font-size: 1.1rem;
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */

.process-section {
    background: linear-gradient(135deg, var(--background-color) 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.process-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.process-container {
    position: relative;
    z-index: 2;
}

.process-step {
    position: relative;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.process-step:nth-child(1) {
    animation-delay: 0.2s;
}

.process-step:nth-child(2) {
    animation-delay: 0.4s;
}

.process-step:nth-child(3) {
    animation-delay: 0.6s;
}

.process-step:nth-child(4) {
    animation-delay: 0.8s;
}

.process-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--step-color), var(--step-color-light));
    border-radius: 20px 20px 0 0;
}

.process-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--step-color);
}

/* Step Colors */
.step-01 {
    --step-color: #28a745;
    --step-color-light: #20c997;
}

.step-02 {
    --step-color: #17a2b8;
    --step-color-light: #20c997;
}

.step-03 {
    --step-color: #007bff;
    --step-color-light: #00d4ff;
}

.step-04 {
    --step-color: #6f42c1;
    --step-color-light: #e83e8c;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--step-color);
    margin-bottom: 1rem;
    line-height: 1;
    opacity: 0.9;
}

.step-icon {
    font-size: 3rem;
    color: var(--step-color);
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.process-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--secondary-color);
    line-height: 1.7;
    font-size: 1rem;
}

.connecting-line {
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #dee2e6, transparent);
    z-index: 1;
    display: none;
}

@media (min-width: 992px) {
    .connecting-line {
        display: block;
    }

    .col-lg-3:last-child .connecting-line {
        display: none;
    }
}

/* Stats Section */
.stats-section {
    margin-top: 5rem;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.achievements {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e3f2fd 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-item,
.stat-card {
    text-align: center;
    padding: 1rem;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .stat-number {
    font-size: 3rem;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.stat-card .stat-label {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Counter Animation */
.counter {
    transition: all 0.3s ease;
}

/* ==========================================================================
   WHY CHOOSE SECTION
   ========================================================================== */

.why-choose-section {
    background: linear-gradient(135deg, var(--background-color) 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* ==========================================================================
   KEY FACTS SECTION
   ========================================================================== */

.key-facts {
    padding: 100px 0;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.fact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.fact-card:hover::before {
    transform: scaleX(1);
}

.fact-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.fact-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.fact-card:hover .fact-icon {
    transform: scale(1.1);
}

.fact-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 15px;
}

.fact-card p {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* ==========================================================================
   STRATEGY SECTION
   ========================================================================== */

.strategy-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
}

.strategy-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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.5;
}

.strategy-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.strategy-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.strategy-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* ==========================================================================
   GALLERY SECTIONS
   ========================================================================== */

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 10px;
    justify-content: center;
    gap: 10px;
}

.video-gallery video {
    width: 300px;
    height: auto;
    border-radius: 5px;
}


.img-gallery {

    width: 80%;
    display: grid;
    margin: 50px auto 50px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
}

.img-gallery img {

    max-width: 100%;
    max-height: 100%;
    width: 300px;
    height: 300px;
    transition: 0.3s;
    /* grid-column-start: auto;
  grid-column-end: auto; */
    cursor: pointer;

}


.img-gallery img:hover {

    transform: scale(0.8);
    box-shadow: 0 32px 75px rgba(68, 77, 136, 0.2);
}


.full-img {

    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 100;
    align-items: center;
    justify-content: center;


}


.full-img img {

    width: 90%;
    max-width: 500px;


}



.full-img span {

    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 40px;
    color: white;
    cursor: pointer;
    max-width: 500px;


}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    font-family: var(--font-secondary);
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}




/* Featured Projects */
.featured-section {
    padding: 100px 0;
    background: white;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.featured-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
}

.featured-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.featured-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.featured-content {
    padding: 30px;
}

.featured-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 10px;
}

.featured-content p {
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==========================================================================
   MODAL
   ========================================================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    max-width: 90%;
    max-height: 80%;
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 123, 255, 0.8);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-nav:hover {
    background: rgba(0, 123, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

/* ==========================================================================
   CONTACT SECTIONS
   ========================================================================== */

.contact-info {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-heavy);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Contact Form */
.contact-form-section {
    padding: 100px 0;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-label {
    position: absolute;
    top: 18px;
    left: 20px;
    color: var(--secondary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.form-input:focus+.form-label,
.form-input:not(:placeholder-shown)+.form-label,
.form-textarea:focus+.form-label,
.form-textarea:not(:placeholder-shown)+.form-label,
.form-select:focus+.form-label,
.form-select:not([value=""])+.form-label {
    top: -8px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Success Message */
.success-message {
    display: none;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 25px;
}

.success-message.show {
    display: block;
    animation: slideDown 0.5s ease;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.map-container {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.1);
    margin-top: 40px;
}

.map-placeholder {
    height: 450px;
    background: linear-gradient(135deg, #e3f2fd 0%, var(--light-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--secondary-color);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--black-color);
}

/* Business Hours */
.business-hours {
    padding: 80px 0;
    background: white;
}

.hours-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: var(--black-color);
}

.hours-time {
    color: var(--secondary-color);
}

.hours-item.today {
    background: rgba(0, 123, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    margin: 5px 0;
}

.hours-item.today .hours-day {
    color: var(--primary-color);
}

/* ==========================================================================
   FLOATING ELEMENTS
   ========================================================================== */

.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-icons .whatsapp {
    font-size: 2.5rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Hero Sections */
    .hero-section {
        height: 70vh;
        padding: 0 0.5rem;
    }

    .hero-about h1,
    .hero-gallery h1,
    .hero-contact h1 {
        font-size: 2.5rem;
    }

    .hero-about .subtitle,
    .hero-gallery .subtitle,
    .hero-contact .subtitle {
        font-size: 1.1rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    /* Navigation */
    .navbar-nav {
        gap: 15px;
    }

    .btn-warning {
        margin-left: 15px;
    }

    /* About Grid */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Divisions */
    .division-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .division-icon {
        width: 100px;
        height: 100px;
    }

    .division-icon i {
        font-size: 2.5rem;
    }

    .division-title {
        font-size: 1.7rem;
    }

    /* Process Section */
    .process-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }

    .step-number {
        font-size: 3rem;
    }

    .step-icon {
        font-size: 2.5rem;
    }

    .step-title {
        font-size: 1.5rem;
    }

    /* Why Choose */
    .feature-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    /* Brands */
    .brand-logo {
        width: 150px;
        height: 100px;
    }

    .brands-slider {
        gap: 2rem;
    }

    .country-flags {
        gap: 1rem;
    }

    .country-item {
        padding: 0.8rem 1.2rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    /* Facts */
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Strategy */
    .strategy-content h3 {
        font-size: 1.8rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .filter-tabs {
        justify-content: center;
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Modal */
    .modal-nav {
        padding: 10px 15px;
        font-size: 1.2rem;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-container {
        padding: 30px 25px;
        margin: 0 10px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .map-placeholder {
        height: 300px;
    }

    .hours-container {
        margin: 0 20px;
        padding: 30px 25px;
    }

    /* Padding Adjustments */
    .about-content,
    .key-facts,
    .contact-form-section,
    .contact-info,
    .map-section,
    .process-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }
}

.footer a:hover {
    text-decoration: underline;
}

.footer hr {
    margin: 1rem 0;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 15px;
}

.tab-btn {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background: #ddd;
  margin: 0 5px;
  font-size: 16px;
  transition: 0.3s;
}

.tab-btn.active {
  background: var(--primary-color);
  color: white;
}

.tab-content {
  display: none;
  transition: opacity 0.3s ease-in-out;
}

.tab-content.active {
  display: block;
}