/* ============================================
   Tejas Fire Safety - Custom Color Scheme
   Colors: #AA0000, #FDAC00, #f6f3eb, #0e1821
   ============================================ */

/* Root Variables */
:root {
    --primary-red: #AA0000;
    --accent-orange: #FDAC00;
    --light-cream: #f6f3eb;
    --dark-navy: #0e1821;
    --white: #ffffff;
    --text-dark: #0e1821;
    --text-light: #f6f3eb;
    --shadow: rgba(14, 24, 33, 0.08);
    --shadow-medium: rgba(14, 24, 33, 0.15);
    --shadow-dark: rgba(14, 24, 33, 0.25);
    --shadow-hover: rgba(170, 0, 0, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation - Modern Design */
.navbar {
    background: linear-gradient(135deg, var(--primary-red) 0%, #8B0000 100%) !important;
    padding: 1.2rem 0;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(170, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 8px 30px rgba(170, 0, 0, 0.4);
    background: var(--primary-red) !important;
}

.navbar-brand {
    color: var(--white) !important;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: translateY(-2px);
    color: var(--accent-orange) !important;
}

.navbar-brand img {
    filter: brightness(1.2);
    transition: var(--transition);
    border-radius: 8px;
}

.navbar-brand:hover img {
    transform: scale(1.1) rotate(5deg);
}

.navbar-nav {
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    margin: 0 0.3rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: rgba(253, 172, 0, 0.1);
    opacity: 0;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-orange) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    opacity: 1;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-toggler {
    border-color: var(--light-cream);
}

.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='rgba(246, 243, 235, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Carousel - Modern */
.hero-section {
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    position: relative;
}

.carousel-item img {
    height: 70vh;
    min-height: 550px;
    object-fit: cover;
    width: 100%;
    filter: brightness(0.85);
    transition: transform 0.6s ease;
}

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

.carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(14, 24, 33, 0.4) 0%, rgba(170, 0, 0, 0.3) 100%); */
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: var(--transition);
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(253, 172, 0, 0.4);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}

.carousel-indicators.testimonial-indicators {
    bottom: 100px;
    z-index: 10;
    margin-left: 50% !important;
    width: 100%;
}   
.carousel-indicators [data-bs-target]{
    background-color: var(--accent-orange) !important;
}
.testimonial-indicators button.active{
    background-color: var(--primary-red) !important;
    border: var(--primary-red) !important;
}

.carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 6px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    opacity: 0.7;
}

.carousel-indicators button.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(253, 172, 0, 0.6);
}

/* About Page */
.about-hero-block {
    background: var(--light-cream);
    padding: 140px 0 80px;
}

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

.about-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.about-hero-content p {
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.about-hero-pill {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--primary-red);
    padding: 0.3rem 1.2rem;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid rgba(170, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.about-hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.about-hero-stats strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-red);
}

.about-hero-stats span {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.about-hero-panel {
    background: var(--white);
    border: 1px solid rgba(170, 0, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    color: var(--dark-navy);
}

.about-hero-panel h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-hero-panel li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.about-hero-panel i {
    color: var(--accent-orange);
}

.about-story-section {
    background: var(--white);
    padding: 80px 0;
}

.about-story-card {
    background: var(--light-cream);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(170, 0, 0, 0.2);
}

.about-story-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-leader-card {
    border: 1px solid rgba(170, 0, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.about-leader-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.about-leader-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-red);
}

.about-capabilities {
    background: var(--light-cream);
    padding: 60px 0;
}

.cap-card {
    background: var(--white);
    border: 1px solid rgba(170, 0, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
}

.about-experience {
    background: var(--white);
    padding: 60px 0;
}

.experience-card {
    border: 1px solid rgba(170, 0, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.experience-card strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-red);
}

.about-leadership {
    background: var(--light-cream);
    padding: 80px 0;
}

.section-heading span {
    color: var(--primary-red);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

.leader-profile {
    background: var(--white);
    border: 1px solid rgba(170, 0, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
}

.leader-profile .role {
    color: var(--accent-orange);
    font-weight: 600;
}

/* VMGO Section - Modern Cards */
.vmgo-section {
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-cream) 100%);
    padding: 100px 0;
    position: relative;
}

.vmgo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.7;
    font-weight: 400;
}

.vmgo-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(170, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.vmgo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.vmgo-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px var(--shadow-medium);
    border-color: var(--accent-orange);
}

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

.vmgo-icon-wrapper {
    margin-bottom: 1.5rem;
}

.vmgo-card .text-primary {
    color: var(--primary-red) !important;
}

.vmgo-card .text-success {
    color: var(--accent-orange) !important;
}

.vmgo-card .text-warning {
    color: var(--accent-orange) !important;
}

.vmgo-label {
    font-size: 0.9rem;
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.vmgo-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vmgo-description {
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.8;
}

.vmgo-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vmgo-card:hover .vmgo-decoration {
    transform: scaleX(1);
}

/* About Section - Modern */
.about-section {
    background: var(--white);
    padding: 100px 0;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-medium);
    transition: var(--transition);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
    border-radius: 25px;
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.about-image-wrapper:hover {
    transform: translateY(-10px);
}

.about-image-wrapper:hover::before {
    opacity: 0.2;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(170, 0, 0, 0.1), rgba(253, 172, 0, 0.1));
    opacity: 0;
    transition: var(--transition);
}

.about-image-wrapper:hover .about-image-overlay {
    opacity: 1;
}

.about-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--primary-red);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(170, 0, 0, 0.4);
    z-index: 2;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.about-badge:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 50px rgba(170, 0, 0, 0.6);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    letter-spacing: -1px;
}

.badge-text {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    font-weight: 600;
}

.about-label {
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(170, 0, 0, 0.1);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.about-text {
    color: var(--text-dark);
    opacity: 0.85;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--text-dark);
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
    font-weight: 600;
    flex: 1;
    min-width: 220px;
    justify-content: flex-start;
    border: 2px solid rgba(170, 0, 0, 0.08);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}
.feature-item .fa-check-circle{
    color: white !important;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-item:hover {
    background: linear-gradient(135deg, rgba(170, 0, 0, 0.03), rgba(253, 172, 0, 0.03));
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(170, 0, 0, 0.15);
    border-color: var(--accent-orange);
}

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

.feature-item i {
    color: var(--white);
    font-size: 1.3rem;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red), #8B0000);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(170, 0, 0, 0.3);
    transition: var(--transition);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.feature-item i::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
    opacity: 0.2;
    z-index: -1;
    transition: var(--transition);
}

.feature-item:hover i {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(170, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--accent-orange), #FF8C00);
}

.feature-item:hover i::after {
    opacity: 0.4;
    transform: scale(1.2);
}

.feature-item span {
    font-size: 1.05rem;
    line-height: 1.4;
    color: var(--dark-navy);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.about-buttons .btn-primary {
    background: var(--primary-red);
    border: none;
    color: var(--white);
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(170, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.about-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.about-buttons .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.about-buttons .btn-primary:hover {
    background: var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(253, 172, 0, 0.4);
}

.about-buttons .btn-outline-primary {
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 1rem;
    letter-spacing: 0.5px;
    background: transparent;
}

.about-buttons .btn-outline-primary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(170, 0, 0, 0.3);
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: var(--dark-navy);
    padding: 80px 0;
    color: var(--light-cream);
}

.why-choose-label {
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.why-choose-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
    letter-spacing: -1px;
    line-height: 1.2;
}

.why-choose-title-part1 {
    color: var(--light-cream);
}

.why-choose-title-part2 {
    color: var(--accent-orange);
}

.why-choose-underline {
    width: 100px;
    height: 4px;
    background-color: var(--accent-orange);
    margin: 1.5rem auto;
}

.why-choose-subtitle {
    color: var(--light-cream);
    opacity: 0.9;
    font-size: 1.1rem;
}

.why-choose-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-dark);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.why-choose-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.why-choose-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent-orange);
    box-shadow: 0 25px 70px rgba(253, 172, 0, 0.3);
}

.why-choose-card:hover::before {
    opacity: 1;
}

.icon-wrapper {
    margin-bottom: 1.5rem;
}

.why-choose-card .text-primary {
    color: var(--primary-red) !important;
}

.why-choose-card .text-success {
    color: var(--accent-orange) !important;
}

.why-choose-card .text-warning {
    color: var(--accent-orange) !important;
}

.why-choose-card .text-danger {
    color: var(--primary-red) !important;
}

.why-choose-card h4 {
    color: var(--dark-navy);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-choose-card p {
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.7;
}

/* Strategies Section */
.strategies-section {
    background-color: var(--light-cream);
    padding: 80px 0;
}

.strategies-label {
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.strategies-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin: 1rem 0;
    letter-spacing: -1px;
    line-height: 1.2;
}

.strategies-underline {
    width: 100px;
    height: 4px;
    background-color: var(--primary-red);
    margin: 1.5rem auto;
}

.strategies-subtitle {
    color: var(--text-dark);
    opacity: 0.8;
    font-size: 1.1rem;
}

.strategy-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(170, 0, 0, 0.1);
    transition: var(--transition);
    box-shadow: 0 10px 40px var(--shadow);
    backdrop-filter: blur(10px);
}

.strategy-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(253, 172, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.strategy-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent-orange);
    box-shadow: 0 25px 70px var(--shadow-medium);
}

.strategy-card:hover::after {
    opacity: 1;
}

.strategy-card-bg-effect {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background-color: var(--primary-red);
    opacity: 0.05;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.strategy-card:hover .strategy-card-bg-effect {
    opacity: 0.1;
    transform: scale(1.2);
}

.strategy-card-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-red);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.strategy-card-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-cream);
    opacity: 0.2;
    z-index: 1;
}

.strategy-card-icon-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.strategy-card-icon-wrapper i {
    font-size: 3rem;
}

.strategy-card .text-primary {
    color: var(--primary-red) !important;
}

.strategy-card .text-success {
    color: var(--accent-orange) !important;
}

.strategy-card .text-warning {
    color: var(--accent-orange) !important;
}

.strategy-card .text-info {
    color: var(--primary-red) !important;
}

.strategy-card .text-danger {
    color: var(--primary-red) !important;
}

.strategy-card .text-secondary {
    color: var(--accent-orange) !important;
}

.strategy-card h4 {
    color: var(--dark-navy);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.strategy-card p {
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.strategy-card-footer {
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.strategy-link {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.strategy-link:hover {
    color: var(--accent-orange);
    gap: 10px;
}

/* Statistics Section */
.stats-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--dark-navy);
}

.stats-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #aa00003b 0%, #aa00003b 100%);
    z-index: 1;
}

.stats-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 4rem;
}

.stats-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.2;
    text-transform: uppercase;
}

.stats-subtitle {
    color: var(--light-cream);
    opacity: 0.95;
    font-size: 1.2rem;
    font-weight: 400;
}

.stat-card {
    background: rgba(30, 40, 50, 0.8);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(170, 0, 0, 0.1) 0%, rgba(253, 172, 0, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-orange);
    background: rgba(35, 45, 55, 0.9);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card-corner {
    display: none;
}

.stat-icon-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.stat-icon-wrapper i {
    font-size: 3.5rem;
    color: var(--primary-red);
    filter: drop-shadow(0 4px 8px rgba(170, 0, 0, 0.3));
    transition: var(--transition);
}

.stat-card:hover .stat-icon-wrapper i {
    transform: scale(1.1);
    color: var(--accent-orange);
}

.stat-card .text-primary {
    color: var(--primary-red) !important;
}

.stat-card .text-success {
    color: var(--accent-orange) !important;
}

.stat-card .text-warning {
    color: var(--accent-orange) !important;
}

.stat-card .text-danger {
    color: var(--primary-red) !important;
}

.stat-card .display-4 {
    font-weight: 800;
    margin-bottom: 0.75rem;
    font-size: 3.5rem;
    line-height: 1;
    letter-spacing: -2px;
    position: relative;
    z-index: 2;
}

.stat-card .lead {
    color: var(--white);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.stat-divider {
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    margin: 1.5rem auto 0;
    border-radius: 2px;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(253, 172, 0, 0.4);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-cream);
    padding: 80px 0;
    position: relative;
}

.testimonials-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: repeating-linear-gradient(45deg, var(--primary-red), var(--primary-red) 10px, transparent 10px, transparent 20px);
    z-index: 0;
}

.testimonials-header {
    position: relative;
    z-index: 1;
}

.testimonials-label {
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin: 1rem 0;
    letter-spacing: -1px;
    line-height: 1.2;
}

.testimonials-underline {
    width: 100px;
    height: 4px;
    background-color: var(--primary-red);
    margin: 1.5rem auto;
}

.testimonials-subtitle {
    color: var(--text-dark);
    opacity: 0.8;
    font-size: 1.1rem;
}

.testimonial-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-dark);
    height: 100%;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-orange), transparent);
    opacity: 0.2;
    animation: rotate 20s linear infinite;
}

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

.testimonial-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    box-shadow: 0 5px 15px var(--shadow-dark);
}

.testimonial-badge i {
    color: var(--accent-orange);
}

.testimonial-carousel {
    height: 100%;
}

.testimonial-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 25px;
    height: 100%;
    box-shadow: 0 15px 50px var(--shadow);
    position: relative;
    border-left: 5px solid var(--primary-red);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px var(--shadow-medium);
    border-left-color: var(--accent-orange);
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: var(--primary-red);
    opacity: 0.1;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-right: 3px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-cream);
}

.author-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info h5 {
    color: var(--dark-navy);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-dark);
    opacity: 0.7;
    margin: 0;
    font-size: 0.9rem;
}

.testimonial-nav-btn {
    background-color: var(--primary-red);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.testimonial-nav-btn:hover {
    background-color: var(--accent-orange);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav-btn.prev {
    left: -25px;
}

.testimonial-nav-btn.next {
    right: -25px;
}

.testimonial-indicators {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.testimonial-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: var(--primary-red);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.testimonial-indicators button.active {
    opacity: 1;
    background-color: var(--accent-orange);
    transform: scale(1.2);
}

/* Join Section */
.join-section {
    background-color: var(--dark-navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.join-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-red);
    opacity: 0.1;
}

.join-content-wrapper {
    position: relative;
    z-index: 2;
}

.join-icon-wrapper {
    width: 100px;
    height: 100px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(170, 0, 0, 0.4);
}

.join-icon-wrapper i {
    font-size: 3rem;
    color: var(--white);
}

.join-label {
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.join-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-cream);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.join-subtitle {
    color: var(--light-cream);
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-join-primary {
    background: var(--primary-red) !important;
    color: var(--white) !important;
    padding: 1.2rem 3rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    margin-right: 1rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(170, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-join-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-join-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-join-primary:hover {
    background: var(--accent-orange) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(253, 172, 0, 0.5);
    color: var(--white) !important;
}

.btn-join-outline {
    background: transparent !important;
    color: var(--light-cream) !important;
    padding: 1.2rem 3rem;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid var(--light-cream);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-join-outline:hover {
    background: var(--light-cream) !important;
    color: var(--dark-navy) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(246, 243, 235, 0.3);
    border-color: var(--light-cream);
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-cream) 100%);
    padding: 100px 0;
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.gallery-label {
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(170, 0, 0, 0.1);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.gallery-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin: 1rem 0;
    letter-spacing: -1px;
    line-height: 1.2;
}

.gallery-underline {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-orange));
    margin: 2rem auto;
    border-radius: 5px;
}

.gallery-subtitle {
    color: var(--text-dark);
    opacity: 0.8;
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    background: var(--white);
    border: 2px solid rgba(170, 0, 0, 0.08);
    position: relative;
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    z-index: 2;
}

.gallery-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 25px 70px rgba(170, 0, 0, 0.25);
    border-color: var(--accent-orange);
}

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

.gallery-card-inner {
    background-color: var(--white);
    position: relative;
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 380px;
    background: var(--light-cream);
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.95);
}

.gallery-card:hover .gallery-image-wrapper img {
    transform: scale(1.15);
    filter: brightness(1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(170, 0, 0, 0.95) 0%, rgba(253, 172, 0, 0.9) 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition);
}

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

.gallery-overlay-content i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.gallery-overlay-content p {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-card-footer {
    padding: 2rem 1.5rem;
    background: var(--white);
    text-align: center;
    border-top: 1px solid var(--light-cream);
    position: relative;
}

.gallery-card-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 0 0 3px 3px;
}

.gallery-card-footer h5 {
    color: var(--dark-navy);
    font-weight: 700;
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-top: 1rem;
}

/* Footer */
.footer-section {
    background-color: var(--dark-navy);
    color: var(--light-cream);
}

.footer-top-section {
    padding: 60px 0 40px;
}

.footer-logo-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    filter: brightness(1.1);
}

.footer-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background-color: var(--primary-red);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.footer-brand-title {
    color: var(--light-cream);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand-text {
    color: var(--accent-orange);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-brand-description {
    color: var(--light-cream);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link.facebook {
    background-color: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.whatsapp {
    background-color: #25d366;
}

.social-link.email {
    background-color: var(--primary-red);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px var(--shadow-dark);
}

.footer-links-title {
    color: var(--accent-orange);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-links-list a {
    color: var(--light-cream);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.footer-links-list a:hover {
    color: var(--accent-orange);
    opacity: 1;
    padding-left: 5px;
}

.footer-links-list i {
    font-size: 0.8rem;
    color: var(--accent-orange);
}

.footer-contact-title {
    color: var(--accent-orange);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.footer-contact-content a {
    color: var(--light-cream);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.footer-contact-content a:hover {
    color: var(--accent-orange);
}

.footer-contact-content p {
    color: var(--light-cream);
    opacity: 0.8;
    margin: 0;
    line-height: 1.6;
}

.footer-contact-content span {
    color: var(--light-cream);
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-bottom-section {
    background-color: var(--primary-red);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--white);
}

.footer-copyright p {
    margin: 0;
    opacity: 0.9;
}

.footer-designed-by {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-designed-by a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
}

.footer-designed-by a:hover {
    text-decoration: underline;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-legal-links a:hover {
    color: var(--accent-orange);
    opacity: 1;
}

.footer-legal-links .separator {
    color: var(--white);
    opacity: 0.5;
}

/* Quick Contact Buttons */
.quick-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px var(--shadow-dark);
    transition: all 0.3s ease;
}

.phone-btn {
    background-color: var(--primary-red);
}

.whatsapp-btn {
    background-color: #25d366;
}

.contact-btn {
    background-color: var(--accent-orange);
}

.quick-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px var(--shadow-dark);
    color: var(--white);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px var(--shadow-dark);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--accent-orange);
    transform: translateY(-5px);
}

/* Skip to Main Content */
.visually-hidden-focusable {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.visually-hidden-focusable:focus {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background-color: var(--primary-red);
    color: var(--white);
    text-decoration: none;
}
/* Responsive Design */
@media (max-width: 768px) {
    .section-title,
    .about-title,
    .why-choose-title,
    .strategies-title,
    .stats-title,
    .testimonials-title,
    .join-title,
    .gallery-title {
        font-size: 2rem;
    }

    /* Hero slider: full image visible (no crop) on small screens */
    #heroCarousel .carousel-item img {
        height: auto;
        min-height: 0;
        object-fit: contain;
        object-position: center;
    }

    .carousel-indicators button {
        width: 6px;
        height: 6px;
        margin: 0 3px;
        border-width: 1px;
    }

    .carousel-indicators button.active {
        transform: scale(1.15);
    }

    .vmgo-card,
    .why-choose-card,
    .strategy-card,
    .stat-card {
        margin-bottom: 2rem;
        padding: 2.5rem 1.5rem;
    }

    .gallery-image-wrapper {
        height: 300px;
    }

    .gallery-card-footer {
        padding: 1.5rem 1rem;
    }

    .stat-card .display-4 {
        font-size: 2.5rem;
    }

    .stat-card .lead {
        font-size: 1.1rem;
    }

    .stat-icon-wrapper i {
        font-size: 2.5rem;
    }

    .testimonial-nav-btn.prev {
        left: 10px;
    }

    .testimonial-nav-btn.next {
        right: 10px;
    }

    .about-features {
        gap: 1.2rem;
    }

    .feature-item {
        min-width: calc(50% - 0.6rem);
        padding: 1.3rem 1.8rem;
    }

    .quick-contact-buttons {
        bottom: 20px;
        right: 20px;
    }

    .scroll-to-top {
        bottom: 20px;
        left: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .section-title,
    .about-title,
    .why-choose-title,
    .strategies-title,
    .stats-title,
    .testimonials-title,
    .join-title,
    .gallery-title {
        font-size: 1.75rem;
    }

    .gallery-title {
        font-size: 2rem;
    }

    .gallery-subtitle {
        font-size: 1rem;
    }

    .gallery-image-wrapper {
        height: 250px;
    }

    .gallery-overlay-content i {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .gallery-overlay-content p {
        font-size: 1.1rem;
    }

    .gallery-card-footer {
        padding: 1.25rem 1rem;
    }

    .gallery-card-footer h5 {
        font-size: 1rem;
    }

    .stats-title {
        font-size: 2rem;
    }

    .stats-subtitle {
        font-size: 1rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-card .display-4 {
        font-size: 2.2rem;
    }

    .stat-card .lead {
        font-size: 1rem;
    }

    .stat-icon-wrapper i {
        font-size: 2.2rem;
    }

    .stat-divider {
        width: 60px;
        height: 3px;
    }

    .vmgo-card,
    .strategy-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .join-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .btn-join-primary,
    .btn-join-outline {
        width: 100%;
        justify-content: center;
    }

    .about-features {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-item {
        min-width: 100%;
        padding: 1.25rem 1.5rem;
    }

    .feature-item i {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .feature-item span {
        font-size: 1rem;
    }
}

/* Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: fadeIn 1s ease-out 0.3s both;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-red) !important;
}

.text-success {
    color: var(--accent-orange) !important;
}

.bg-primary {
    background-color: var(--primary-red) !important;
}

.bg-dark {
    background-color: var(--dark-navy) !important;
}

.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
}
.btn-primary:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}
.btn-outline-light {
    border-color: var(--light-cream);
    color: var(--light-cream);
}
.btn-outline-light:hover {
    background-color: var(--light-cream);
    color: var(--dark-navy);
}




