/* ==================== Global Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #800000; /* Maroon */
    --secondary-color: #ffffff; /* White */
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== Navigation ==================== */
.navbar {
    background-color: transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.navbar.light {
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar.light .nav-menu a,
.navbar.light .logo .tagline {
    color: #333;
}

.navbar.light .logo h2,
.navbar.light .hamburger span {
    color: var(--primary-color);
}

.navbar.dark {
    background-color: rgba(0, 0, 0, 0.35);
}

.navbar.dark .nav-menu a,
.navbar.dark .logo h2,
.navbar.dark .logo .tagline {
    color: #ffffff;
}

.navbar.dark .nav-menu .dropdown-content {
    background-color: rgba(0, 0, 0, 0);
}

.navbar.dark .hamburger span {
    background-color: #ffffff;
}

.navbar.sticky {
    position: sticky;
    top: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
        display: flex;
        align-items: center;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .brand-logo {
        height: 64px;
        width: auto;
        display: block;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .logo:hover .brand-logo {
        transform: scale(1.05);
    }

    .logo-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .logo h2 {
        color: var(--primary-color);
        font-size: 1.8rem;
        margin: 0;
        font-weight: 700;
        transition: color 0.4s ease;
    }
.logo .tagline {
    color: var(--text-color);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--secondary-color);
    min-width: 200px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 100%;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu li {
    position: relative;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dropdown-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-color);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-content a:hover::before {
    transform: scaleY(1);
}

.dropdown-content a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding-left: 24px;
}

.dropdown:hover .dropdown-content,
.dropdown.open .dropdown-content {
    display: block;
}

.dropdown > a {
    cursor: pointer;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all 0.4s ease;
}

/* ==================== Hero Section ==================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.7), rgba(128, 0, 0, 0.6)), 
                url('../assets/product_1.jpg') center/cover no-repeat;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    opacity: 0.95;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.55), rgba(128, 0, 0, 0.45));
    z-index: 2;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(128, 0, 0, 0.1), transparent 50%);
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.hero-content {
    z-index: 3;
    animation: fadeInUp 1s ease-out;
    position: relative;
    max-width: 900px;
    padding: 20px;
}

.hero-label {
    display: inline-block;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.7);
    animation: slideInDown 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
    letter-spacing: -1px;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== Hero & Manufacturing Section ==================== */
.manufacturing-section {
    background-color: white;
    padding: 80px 0;
}

.manufacturing-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.manufacturing-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.16);
}

.manufacturing-video {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    display: block;
}

.media-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.45);
    color: white;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.manufacturing-copy h2 {
    color: var(--primary-color);
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.manufacturing-copy p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
}

.manufacturing-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.manufacturing-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.manufacturing-list li:before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.manufacturing-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.manufacturing-gallery img {
    width: 100%;
    border-radius: 18px;
    height: 230px;
    object-fit: cover;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.manufacturing-gallery img:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.2);
}

/* ==================== Buttons ==================== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(128, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #a00000;
    transform: translateY(-3px) translateX(0);
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.4);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(128, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(128, 0, 0, 0.3);
}

.btn-learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-right: 20px;
}

.btn-learn-more::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-learn-more:hover {
    color: #a00000;
    transform: translateX(8px);
}

.btn-learn-more:hover::after {
    transform: translateX(5px);
}

/* ==================== Sections ==================== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ==================== Divisions Section ==================== */
.divisions {
    background-color: var(--light-color);
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.division-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.division-card::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;
}

.division-card:hover::before {
    left: 100%;
}

.division-card:hover {
    transform: translateY(-12px) rotateY(2deg);
    box-shadow: 0 15px 40px rgba(128, 0, 0, 0.2);
}

.division-card:hover .card-icon {
    animation: pulse 0.6s ease-in-out;
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.division-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.division-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ==================== About Section ==================== */
.about-section {
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* ==================== Why Choose Us ==================== */
.why-choose-us {
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.05), rgba(128, 0, 0, 0.1));
    padding: 80px 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reason {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.reason:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(128, 0, 0, 0.15);
}

.reason-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reason:hover .reason-icon {
    transform: rotate(20deg) scale(1.15);
}

.reason h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.reason p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* ==================== CTA Section ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #a00000);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    animation: orbitalMove 20s linear infinite;
    pointer-events: none;
}

@keyframes orbitalMove {
    from {
        transform: translate(0, 0) rotate(0deg);
    }
    to {
        transform: translate(100px, 100px) rotate(360deg);
    }
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: slideInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ==================== Page Header ==================== */
.page-header {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ==================== Content Section ==================== */
.content-section {
    background: white;
}

.division-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.division-content h2:first-child {
    margin-top: 0;
}

.division-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.services-grid,
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card,
.product-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before,
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before,
.product-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover,
.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(128, 0, 0, 0.18);
    background: white;
    border-color: var(--primary-color);
}

.service-icon,
.product-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon,
.product-card:hover .product-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-card h3,
.product-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-features {
    list-style: none;
    text-align: left;
    margin: 1rem 0;
    padding: 0;
}

.product-features li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-color);
}

.product-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ==================== Benefits List ==================== */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.15);
    transform: translateX(8px);
}

.benefit i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit:hover i {
    transform: scale(1.3) rotate(15deg);
}

.benefit h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.1rem;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit p {
    color: var(--text-color);
    margin: 0.5rem 0 0 0;
    font-size: 0.95rem;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit:hover h3,
.benefit:hover p {
    color: var(--text-color);
}

/* ==================== Process Steps ==================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover::before {
    width: 100%;
}

.step:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(128, 0, 0, 0.15);
    transform: translateY(-8px) scale(1.02);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(128, 0, 0, 0.2);
}

.step:hover .step-number {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.35);
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* ==================== Highlight Box ==================== */
.highlight-box {
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.05), rgba(128, 0, 0, 0.1));
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    margin-bottom: 2rem;
}

.highlight-box p {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0;
}

/* ==================== Values Grid ==================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(128, 0, 0, 0.1), transparent);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 30px rgba(128, 0, 0, 0.2);
}

.value-card:hover::after {
    bottom: 0;
    left: 0;
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.value-card:hover i {
    transform: scale(1.25) rotate(-15deg);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ==================== Divisions Full ==================== */
.divisions-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.division-full-item {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.division-full-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(128, 0, 0, 0.05), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.division-full-item:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.15);
    transform: translateX(5px);
}

.division-full-item:hover::before {
    left: 100%;
}

.division-full-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.division-full-item:hover h3 {
    transform: translateX(5px);
}

.division-full-item i {
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.division-full-item:hover i {
    transform: scale(1.2) rotate(15deg);
}

/* ==================== Service Areas ==================== */
.service-areas,
.pricing-info,
.fleet-info {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.service-areas ul,
.fleet-info {
    list-style: none;
}

.service-areas li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.service-areas li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.fleet-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0;
    background: transparent;
}

.fleet-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.fleet-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary-color);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-item:hover {
    box-shadow: 0 12px 30px rgba(128, 0, 0, 0.2);
    transform: translateY(-8px) scale(1.02);
}

.fleet-item:hover::before {
    width: 100%;
}

.fleet-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-item:hover h3 {
    transform: translateX(5px);
}

/* ==================== Contact Methods ==================== */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(128, 0, 0, 0.2);
    transform: translateY(-8px) scale(1.02);
}

.contact-method:hover::before {
    transform: translateX(100%);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method:hover .contact-icon {
    transform: scale(1.3) bounce;
    animation: bounce 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1.3);
    }
    50% {
        transform: translateY(-10px) scale(1.3);
    }
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-method .subtitle {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section a:hover::before {
    width: 100%;
}

.footer-section a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-link:hover {
    color: #a00000;
    transform: translateX(3px);
}

.contact-link:hover::after {
    width: 100%;
}


.contact-hours {
    color: #999;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* ==================== Business Hours ==================== */
.business-hours {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--primary-color);
}

.time {
    color: var(--text-color);
}

/* ==================== Contact Form ==================== */
.contact-form {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 10px;
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(128, 0, 0, 0.15);
    transform: scale(1.01);
}

.form-group input:hover:not(:focus),
.form-group select:hover:not(:focus),
.form-group textarea:hover:not(:focus) {
    border-color: rgba(128, 0, 0, 0.5);
    box-shadow: 0 2px 8px rgba(128, 0, 0, 0.1);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* ==================== Footer ==================== */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #a00000;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.social-links a:hover::before {
    transform: scale(1);
}

.social-links a:hover {
    background-color: #a00000;
    transform: translateY(-5px) rotate(10deg) scale(1.15);
    box-shadow: 0 8px 20px rgba(128, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

/* ==================== WhatsApp Float Button ==================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ==================== Animations ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(128, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(128, 0, 0, 0.5);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(128, 0, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(128, 0, 0, 0.8);
    }
}

/* ==================== Video Responsive Design ==================== */
@media (max-width: 1024px) {
    .hero-video {
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }

    .hero-video {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    }

    .hero-subtitle {
        font-size: 1.1rem;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}
/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .dropdown .dropdown-content {
        position: relative;
        top: 0;
        left: 0;
        box-shadow: none;
        min-width: 100%;
        border-radius: 0;
        overflow: hidden;
    }

    .dropdown .dropdown-content a {
        padding-left: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .divisions-grid,
    .services-grid,
    .products-grid,
    .contact-methods,
    .values-grid,
    .divisions-full,
    .reasons-grid,
    .benefits-list,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .manufacturing-grid {
        grid-template-columns: 1fr;
    }

    .manufacturing-media {
        min-height: 300px;
    }

    .manufacturing-gallery {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .hours-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }

    footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    section {
        padding: 40px 0;
    }

    .division-card,
    .service-card,
    .product-card,
    .value-card,
    .step,
    .contact-method {
        padding: 1.5rem;
    }

    .logo h2 {
        font-size: 1.3rem;
    }

    .logo .tagline {
        font-size: 0.65rem;
    }

    .nav-container {
        padding: 0.5rem 0;
    }
}

/* ==================== Team Page Styles ==================== */
.team-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
    align-items: stretch;
}

.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-top: 5px solid var(--primary-color);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(128, 0, 0, 0.15);
}

.team-img-container {
    height: 420px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-img {
    transform: scale(1.06);
}

.team-info {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-name {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.team-role {
    font-size: 1.05rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.team-tag {
    background-color: rgba(128, 0, 0, 0.06);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid rgba(128, 0, 0, 0.12);
}

.team-bio {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.team-bio p {
    margin-bottom: 1rem;
}

.team-bio p:last-child {
    margin-bottom: 0;
}

.team-social {
    display: flex;
    gap: 1.25rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: auto;
}

.team-social a {
    color: #777;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-color);
}

.team-social a:hover {
    color: white;
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
        gap: 2.5rem;
    }
    
    .team-img-container {
        height: 380px;
    }
}

/* ==================== Modal Popup Styles ==================== */
.bio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bio-modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s ease;
}

.modal-container {
    background: white;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 20px;
    overflow-y: auto;
    position: relative;
    z-index: 2001;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 6px solid var(--primary-color);
}

.bio-modal.open .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--light-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background-color: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 3rem 2.5rem;
}

.modal-header-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.modal-img-wrapper {
    height: 180px;
    width: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(128, 0, 0, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.modal-title-area h3 {
    font-size: 2.2rem;
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.modal-title-area .modal-role {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-full-bio {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-color);
}

.modal-full-bio p {
    margin-bottom: 1.25rem;
}

.modal-full-bio p:last-child {
    margin-bottom: 0;
}

/* Prevent body scroll when modal open */
body.modal-active {
    overflow: hidden;
}

@media (max-width: 768px) {
    .modal-header-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .modal-img-wrapper {
        margin: 0 auto;
    }
    
    .modal-body {
        padding: 2.5rem 1.5rem;
    }
    
    .modal-title-area h3 {
        font-size: 1.8rem;
    }
}

/* ==================== Product Size Badges & Slogan Callouts ==================== */
.product-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.25rem 0;
    justify-content: center;
}

.size-tag {
    background-color: var(--light-color);
    color: var(--text-color);
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.size-tag:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.travels-slogan-box {
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.08), rgba(128, 0, 0, 0.03));
    border-left: 6px solid var(--primary-color);
    padding: 1.5rem 2rem;
    border-radius: 0 16px 16px 0;
    margin: 2.5rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.travels-slogan-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    font-style: italic;
    letter-spacing: 0.5px;
    margin: 0;
}
