/**
 * RM BD Group Custom Styles
 * This file contains all custom CSS for frontend pages
 * Consolidated from blade templates for better maintainability
 */

/* ==========================================================================
   NAVIGATION MENU - Active States
   ========================================================================== */
.nav-menu > li.active > a {
    color: #d50000 !important;
    font-weight: 600;
    position: relative;
}

.nav-menu > li.active > a::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #d50000;
    border-radius: 2px;
    animation: activeSlide 0.3s ease forwards;
}

@keyframes activeSlide {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 30px;
        opacity: 1;
    }
}

.nav-menu > li:hover > a {
    color: #d50000 !important;
}

.nav-menu > li:hover > a::before {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #d50000;
    border-radius: 2px;
    opacity: 0.5;
}

.nav-menu > li.active:hover > a::before {
    display: none;
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */
.about-hero-section {
    background: #f8f9fa;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.breadcrumb-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    backdrop-filter: blur(10px);
    color: #667eea;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.hero-title {
    color: #2d3436;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    color: #636e72;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.content-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(102, 126, 234, 0.9) 0%, transparent 100%);
    padding: 30px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.content-card:hover .card-image-overlay {
    transform: translateY(0);
    opacity: 1;
}

.card-body-content {
    padding: 40px 35px;
}

.section-header-professional {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title-underline {
    position: relative;
    display: inline-block;
}

.section-title-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.section-description {
    color: #636e72;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.icon-box i {
    color: white;
    font-size: 30px;
}

.mission-vision-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.mission-vision-card:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.15);
}

.vision-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.vision-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.vision-overlay-text {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.vision-image-wrapper:hover .vision-overlay-text {
    transform: scale(1);
}

.article_body_wrap {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #2d3436;
}

.article_body_wrap p {
    margin-bottom: 20px;
}

.article_body_wrap h1,
.article_body_wrap h2,
.article_body_wrap h3 {
    color: #2d3436;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 20px;
}

.article_body_wrap ul,
.article_body_wrap ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.article_body_wrap li {
    margin-bottom: 10px;
}

.stats-section {
    background: white;
    padding: 60px 0;
    margin: 80px 0;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    color: #2d3436;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-number i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: #636e72;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */
.contact-hero-section {
    background: #f8f9fa;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.contact-hero-title {
    color: #2d3436;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-hero-subtitle {
    color: #636e72;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(102, 126, 234, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(102, 126, 234, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.prc_wrap {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}

.prc_wrap:hover {
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.prc_wrap_header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px 30px;
    border-bottom: none;
}

.property_block_title {
    color: white !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
}

.property_block_title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: white;
    margin-right: 12px;
    border-radius: 2px;
}

.prc_wrap-body {
    padding: 35px 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    color: #2d3436;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: block;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
    background: white;
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-theme {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    color: white !important;
    padding: 14px 40px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    cursor: pointer;
}

.btn-theme:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4) !important;
}

.btn-theme:active {
    transform: translateY(0) !important;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info a {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.contact-info a:hover {
    transform: translateX(5px);
}

.cn-info-detail {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    cursor: pointer;
}

.cn-info-detail:hover {
    background: white;
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.cn-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.cn-info-icon i {
    color: white;
    font-size: 20px;
}

.cn-info-content {
    flex: 1;
}

.cn-info-title {
    color: #2d3436 !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    margin: 0 0 8px 0 !important;
}

.cn-info-content {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
}

.alert {
    border-radius: 12px;
    border: none;
    padding: 18px 22px;
    margin-bottom: 25px;
}

.alert-success {
    background: linear-gradient(135deg, rgba(40, 180, 133, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%);
    color: #27ae60;
    border-left: 4px solid #27ae60;
}

.alert-danger {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(192, 57, 43, 0.1) 100%);
    color: #e74c3c;
    border-left: 4px solid #e74c3c;
}

.alert strong {
    font-weight: 700;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.map-container iframe {
    border-radius: 20px;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

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

    .mission-vision-card {
        padding: 30px 25px;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-section {
        padding: 50px 0;
    }

    .prc_wrap-body {
        padding: 25px 20px;
    }

    .prc_wrap_header {
        padding: 20px 20px;
    }
}

/* ==========================================================================
   OUR TEAM PAGE STYLES
   ========================================================================== */
.team-hero-section {
    background: #f8f9fa;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.team-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.team-hero-title {
    color: #2d3436;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.team-hero-subtitle {
    color: #636e72;
    font-size: 1.1rem;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(102, 126, 234, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(102, 126, 234, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.team-member-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
    z-index: 2;
}

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

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.2);
}

.team-member-image {
    position: relative;
    width: 100%;
    padding-top: 110%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.team-member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(0.3);
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.1);
    filter: grayscale(0);
}

.team-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(102, 126, 234, 0.95) 0%, transparent 100%);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 1;
}

.team-member-card:hover .team-image-overlay {
    transform: translateY(0);
}

.team-overlay-contacts {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-direction: column;
    align-items: center;
}

.contact-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.team-member-card:hover .contact-icon-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.team-member-card:hover .contact-icon-wrapper:nth-child(1) {
    transition-delay: 0.1s;
}

.team-member-card:hover .contact-icon-wrapper:nth-child(2) {
    transition-delay: 0.15s;
}

.contact-label {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.overlay-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.overlay-contact-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(118, 75, 162, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.overlay-contact-icon:active::before {
    width: 100%;
    height: 100%;
}

.overlay-contact-icon i {
    position: relative;
    z-index: 1;
    font-size: 16px;
}

.overlay-contact-icon:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.15) translateY(0);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.overlay-contact-icon:active {
    transform: scale(0.95) translateY(0);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.team-member-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.team-member-info {
    padding: 25px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
    position: relative;
}

.team-member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 8px;
    line-height: 1.3;
}

.team-member-designation {
    color: #667eea;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.team-member-designation::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.team-member-bio {
    font-size: 0.9rem;
    color: #636e72;
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
}

.team-pro-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    color: #667eea;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.team-member-card:hover .team-pro-badge {
    opacity: 1;
    transform: scale(1);
}

.team-empty-state {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.team-empty-state i {
    font-size: 4rem;
    color: #dfe6e9;
    margin-bottom: 20px;
}

.team-empty-state h4 {
    color: #2d3436;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-empty-state p {
    color: #636e72;
    font-size: 1.1rem;
}

.team-card-animate {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* ==========================================================================
   HOME PAGE - CATEGORY SECTION STYLES
   ========================================================================== */
.category-card-professional {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.category-card-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
    z-index: 2;
}

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

.category-card-professional:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.category-image-wrapper {
    height: 185px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: brightness(0.95);
}

.category-card-professional:hover .category-image-wrapper img {
    transform: scale(1.08);
    filter: brightness(1);
}

.category-info-wrapper {
    padding: 12px 15px;
    background: white;
    text-align: center;
    position: relative;
}

.category-title-pro {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2d3436;
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.category-card-professional:hover .category-title-pro {
    color: #667eea;
}

.category-icon-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: scale(0) rotate(-90deg);
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.category-card-professional:hover .category-icon-badge {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.category-icon-badge i {
    color: #667eea;
    font-size: 14px;
}

.view-category-link {
    display: inline-block;
    margin-top: 5px;
    color: #667eea;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.category-card-professional:hover .view-category-link {
    opacity: 1;
    transform: translateY(0);
}

.view-category-link i {
    margin-left: 4px;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.category-card-professional:hover .view-category-link i {
    transform: translateX(4px);
}

.section-intro {
    max-width: 650px;
    margin: 0 auto 40px;
}


/* ==========================================================================
   HOME PAGE - PRODUCT SECTION STYLES
   ========================================================================== */
.garment-product-card {
    position: relative;
    cursor: pointer;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.garment-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
}

.product-img-container {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.garment-product-card:hover .product-img-container img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 20px;
}

.garment-product-card:hover .product-overlay {
    opacity: 1;
}

.product-title-overlay {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.garment-product-card:hover .product-title-overlay {
    transform: translateY(0);
    opacity: 1;
}

.view-details-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    display: inline-block;
}

.garment-product-card:hover .view-details-btn {
    transform: translateY(0);
    opacity: 1;
}

.view-details-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    transform: translateY(-2px);
    color: white;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease 0.1s;
}

.garment-product-card:hover .product-badge {
    opacity: 1;
    transform: translateX(0);
}

.product-category-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
}


/* ==========================================================================
   BUYERS SECTION STYLES (Home & Buyers Pages)
   ========================================================================== */
.buyers-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    z-index: 0;
}

.buyers-section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.buyer-card-modern {
    background: white;
    border-radius: 16px;
    padding: 40px 25px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.buyer-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

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

.buyer-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.buyer-logo-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.buyer-logo-container img {
    max-width: 80%;
    max-height: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(0.4) opacity(0.85);
}

.buyer-card-modern:hover .buyer-logo-container img {
    transform: scale(1.08);
    filter: grayscale(0) opacity(1);
}

.buyer-quality-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.buyer-card-modern:hover .buyer-quality-badge {
    opacity: 1;
    transform: scale(1);
}

.buyer-quality-badge i {
    color: white;
    font-size: 13px;
}

.buyer-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.buyer-card-modern:hover .buyer-info-overlay {
    transform: translateY(0);
}

.buyer-info-overlay h5 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.buyer-info-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.stats-info-bar {
    background: white;
    border-radius: 15px;
    padding: 15px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.stats-info {
    color: #2d3436;
    font-size: 1.05rem;
    font-weight: 600;
}

.stats-info strong {
    color: #667eea;
    font-size: 1.3rem;
}

.section-header-modern {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.modern-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
}

/* Buyers Carousel Styles */
.buyers-carousel-wrapper {
    position: relative;
    padding: 40px 0;
    margin: 30px 0;
}

.buyers-slider {
    position: relative;
    margin: 0 -15px;
}

.buyers-slider .slick-slide {
    padding: 0 15px;
    transition: all 0.3s ease;
    outline: none;
}

.buyers-slider .slick-slide > div {
    outline: none;
}

.buyers-slider .buyer-card-modern {
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.buyer-name {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3436;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.buyer-card-modern:hover .buyer-name {
    opacity: 1;
    transform: translateY(0);
}

/* Buyers Slider Navigation */
.buyers-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    opacity: 0.3;
}

.buyers-carousel-wrapper:hover .buyers-slider .slick-arrow {
    opacity: 1;
}

.buyers-slider .slick-arrow::before {
    font-family: 'FontAwesome';
    font-size: 18px;
    color: white;
    opacity: 1;
}

.buyers-slider .slick-prev {
    left: -25px;
}

.buyers-slider .slick-prev::before {
    content: '\f104';
}

.buyers-slider .slick-next {
    right: -25px;
}

.buyers-slider .slick-next::before {
    content: '\f105';
}

.buyers-slider .slick-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.4);
}

.buyers-slider .slick-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Buyers Slider Dots */
.buyers-slider .slick-dots {
    position: relative;
    bottom: -40px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.buyers-slider .slick-dots li {
    margin: 0 5px;
}

.buyers-slider .slick-dots li button {
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.buyers-slider .slick-dots li button:hover {
    background: #667eea;
    transform: scale(1.2);
}

.buyers-slider .slick-dots li.slick-active button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 30px;
    border-radius: 10px;
}

/* Smooth Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.buyers-carousel-wrapper {
    animation: slideIn 0.8s ease forwards;
}

/* Responsive Styles for Buyers Carousel */
@media (max-width: 991px) {
    .buyers-slider .slick-prev {
        left: -15px;
    }
    
    .buyers-slider .slick-next {
        right: -15px;
    }
    
    .buyers-slider .slick-arrow {
        width: 40px;
        height: 40px;
    }
    
    .buyer-card-modern {
        height: 180px;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .buyers-carousel-wrapper {
        padding: 20px 0;
    }
    
    .buyers-slider .slick-arrow {
        display: none !important;
    }
    
    .buyer-card-modern {
        height: 160px;
        padding: 25px 15px;
    }
    
    .buyer-logo-container img {
        max-height: 100px;
    }
}

@media (max-width: 576px) {
    .buyer-card-modern {
        height: 140px;
        padding: 20px 10px;
    }
    
    .buyer-logo-container img {
        max-height: 80px;
    }
    
    .buyer-quality-badge {
        width: 24px;
        height: 24px;
        top: 10px;
        right: 10px;
    }
    
    .buyer-quality-badge i {
        font-size: 11px;
    }
}

.stats-container {
    position: relative;
    z-index: 1;
    margin-top: 60px;
    padding-top: 50px;
    border-top: 2px solid #e9ecef;
}


/* ==========================================================================
   IMAGE GALLERY PAGE STYLES
   ========================================================================== */
.gallery-hero-section {
    background: #f8f9fa;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.gallery-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.gallery-hero-title {
    color: #2d3436;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.gallery-hero-subtitle {
    color: #636e72;
    font-size: 1.1rem;
    line-height: 1.6;
}

.gallery-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(102, 126, 234, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(102, 126, 234, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.gallery-item {
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.gallery-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
    z-index: 2;
}

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

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.2);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    cursor: pointer;
}

.gallery-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-card:hover .gallery-image-wrapper img {
    transform: scale(1.1);
}

.gallery-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-overlay-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 24px;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-card:hover .gallery-overlay-icon {
    transform: scale(1);
}

.gallery-type-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    z-index: 1;
}

.gallery-info {
    padding: 25px 20px;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-title {
    color: #2d3436;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

.gallery-empty-state {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.gallery-empty-state i {
    font-size: 4rem;
    color: #dfe6e9;
    margin-bottom: 20px;
}

.gallery-empty-state h4 {
    color: #2d3436;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery-empty-state p {
    color: #636e72;
    font-size: 1.1rem;
}

/* ==========================================================================
   OFFICE LOCATIONS & DETAILS STYLES
   ========================================================================== */
.trips_top {
    margin: 0;
    padding: 0 !important;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.trips_wrap {
    padding: 0;
    margin: 0;
}

.trips_wrap .row {
    margin: 0 !important;
}

.trips {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.office-location-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.office-location-card:hover .trips {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.office-location-card:hover .trips_icons i {
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.office-location-card:hover .trips_detail h4 span {
    color: white !important;
}

.office-location-card:hover .trips_detail p {
    color: white !important;
}

.trips_icons i {
    transition: all 0.3s ease;
}

.trips_detail p {
    transition: color 0.3s ease;
}

.office-type-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.office-location-card:hover .office-type-badge {
    opacity: 1;
}

.office-hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0 100px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.office-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.office-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.05));
}

.breadcrumb-modern {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
}

.breadcrumb-modern a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 3px 8px;
    border-radius: 4px;
}

.breadcrumb-modern a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.breadcrumb-modern .separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 4px;
    font-size: 0.7rem;
}

.office-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.office-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 15px 0 25px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}


/* ==========================================================================
   PRODUCT DETAILS PAGE STYLES
   ========================================================================== */
.product-detail-hero {
    background: #f8f9fa;
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
}

.product-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-custom li {
    color: #2d3436;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.breadcrumb-custom li a {
    color: #2d3436;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.breadcrumb-custom li a:hover {
    color: #667eea;
}

.breadcrumb-custom li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    opacity: 0.5;
}

.product-image-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.product-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    aspect-ratio: 1;
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: zoom-in;
}

.product-image-wrapper:hover .product-main-image {
    transform: scale(1.1);
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    z-index: 2;
}

.product-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.category-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.category-badge i {
    margin-right: 8px;
    color: #667eea;
}

.product-title-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-meta-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #e9ecef;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.meta-content h6 {
    margin: 0;
    font-size: 0.85rem;
    color: #95a5a6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-content p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3436;
}

.product-content-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.section-title-custom {
    font-size: 2rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.product-description {
    color: #636e72;
    font-size: 1.1rem;
    line-height: 1.8;
}

.product-description p {
    margin-bottom: 20px;
}

.product-description ul,
.product-description ol {
    margin: 20px 0;
    padding-left: 25px;
}

.product-description li {
    margin-bottom: 10px;
}

.action-buttons-group {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
    transform: translateY(-3px);
    color: white;
}

.btn-secondary-custom {
    background: white;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary-custom:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* ==========================================================================
   TEAM DETAILS PAGE STYLES
   ========================================================================== */
.team-details-hero {
    background: #f8f9fa;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.team-details-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.breadcrumb-link {
    color: #636e72;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #667eea;
}

.breadcrumb-separator {
    color: #b2bec3;
}

.breadcrumb-current {
    color: #2d3436;
    font-weight: 600;
    font-size: 0.9rem;
}

.details-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.profile-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.profile-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
    transition: all 0.3s ease;
}

.profile-card:hover {
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.15);
}

.profile-image-wrapper {
    position: relative;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(102, 126, 234, 0.1) 100%);
    pointer-events: none;
}

.profile-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.profile-name {
    color: #2d3436;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
}

.profile-designation {
    color: #667eea;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.contact-info-list {
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: white;
    font-size: 18px;
}

.contact-info-content {
    flex-grow: 1;
}

.contact-info-label {
    color: #636e72;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-info-value {
    color: #2d3436;
    font-size: 1rem;
    font-weight: 500;
    word-break: break-all;
}

.contact-info-value a {
    color: #2d3436;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-value a:hover {
    color: #667eea;
}

.bio-card {
    background: white;
    border-radius: 20px;
    padding: 50px 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.bio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.bio-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.bio-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.bio-icon i {
    font-size: 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bio-title {
    color: #2d3436;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.bio-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #2d3436;
}

.bio-content p {
    margin-bottom: 20px;
}

.member-stats-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    margin-bottom: 30px;
}

.member-stats-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.section-title-small {
    color: #2d3436;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.section-title-small::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.mini-team-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    display: block;
}

.mini-team-card:hover {
    background: white;
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    transform: translateY(-5px);
}

.mini-team-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mini-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-team-name {
    color: #2d3436;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.mini-team-designation {
    color: #667eea;
    font-size: 0.85rem;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.action-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.action-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.action-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
    color: white;
}

.action-btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.action-btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}


/* ==========================================================================
   DIRECTOR MESSAGE PAGE STYLES
   ========================================================================== */
.director-hero-section {
    background: #f8f9fa;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.director-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.director-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.director-hero-title {
    color: #2d3436;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.director-hero-subtitle {
    color: #636e72;
    font-size: 1.1rem;
    line-height: 1.6;
}

.director-profile-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
    transition: all 0.3s ease;
}

.director-profile-card:hover {
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.15);
}

.director-image-wrapper {
    position: relative;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.director-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(102, 126, 234, 0.1) 100%);
    pointer-events: none;
}

.director-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.director-profile-card:hover .director-image-wrapper img {
    transform: scale(1.05);
}

.director-name {
    color: #2d3436;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
}

.director-designation {
    color: #667eea;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.director-contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 10px;
    /* background: #f8f9fa; */
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 16px;
    line-height: 1;
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
    vertical-align: middle;
}

.contact-text {
    color: #2d3436;
    font-size: 0.95rem;
    font-weight: 500;
    word-break: break-all;
}

.message-content-card {
    background: white;
    border-radius: 20px;
    padding: 50px 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.message-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.message-quote-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.message-quote-icon i {
    font-size: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.message-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #2d3436;
}

.message-body p {
    margin-bottom: 20px;
}

.message-body h1,
.message-body h2,
.message-body h3,
.message-body h4 {
    color: #2d3436;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 20px;
}

.message-body ul,
.message-body ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.message-body li {
    margin-bottom: 10px;
}

.message-body strong {
    color: #667eea;
    font-weight: 700;
}

/* ==========================================================================
   UNSUBSCRIBE PAGE STYLES
   ========================================================================== */
.unsubscribe-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.unsubscribe-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 50px;
    max-width: 600px;
    margin: 0 auto;
}

.unsubscribe-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.unsubscribe-icon i {
    color: white;
    font-size: 36px;
}

.error-icon {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
}

.unsubscribe-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.unsubscribe-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
    color: white;
}

.cancel-btn {
    background: #6c757d;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cancel-btn:hover {
    background: #5a6268;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE DESIGN - ADDITIONAL PAGES
   ========================================================================== */
@media (max-width: 991px) {
    .profile-card,
    .director-profile-card {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .team-hero-title,
    .gallery-hero-title,
    .director-hero-title {
        font-size: 2rem;
    }

    .team-member-name {
        font-size: 1.15rem;
    }

    .buyer-card-modern {
        height: 180px;
        padding: 30px 20px;
    }

    .office-hero {
        padding: 40px 0 80px;
    }

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

    .product-title-main {
        font-size: 1.8rem;
    }

    .product-info-card,
    .product-content-section {
        padding: 25px;
    }

    .gallery-section,
    .team-section {
        padding: 50px 0;
    }

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

    .gallery-info {
        padding: 20px 15px;
    }

    .bio-card,
    .message-content-card {
        padding: 30px 25px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
    }
}

/* ==========================================================================
   SECTION 16: PROFESSIONAL FOOTER - Modern & Clean Design
   ========================================================================== */

.professional-footer {
    background-color: #1a1a2e !important;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
    position: relative;
    overflow: hidden;
}

.professional-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(213, 0, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Main Footer Content */
.footer-main {
    padding: 50px 0 30px;
    position: relative;
    z-index: 1;
}

/* Footer Logo */
.footer-logo-wrapper {
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 160px;
    height: auto;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(1.4);
    transform: scale(1.05);
}

/* Footer Description */
.footer-description {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-right: 10px;
}

/* Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.875rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #fff !important;
    transform: translateX(3px);
}

.contact-item i {
    font-size: 1.1rem;
    margin-right: 10px;
    margin-top: 2px;
    color: #ff1744;
    min-width: 18px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    color: #ff5252;
    transform: scale(1.1);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #fff !important;
}

/* Footer Widget Titles */
.footer-widget-title {
    color: #ffffff !important;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, #d50000 0%, #ff1744 100%);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links li a i {
    font-size: 0.65rem;
    margin-right: 6px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #ffffff !important;
    padding-left: 6px;
}

.footer-links li a:hover i {
    opacity: 1;
    color: #ff1744;
}

/* Social Links */
.footer-social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: transparent;
}

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

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

.social-link.twitter:hover::before {
    background: #1da1f2;
}

.social-link.linkedin:hover::before {
    background: #0077b5;
}

.social-link.instagram:hover::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link i {
    position: relative;
    z-index: 1;
}

/* Footer Badge */
.footer-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: linear-gradient(135deg, rgba(213, 0, 0, 0.2) 0%, rgba(255, 23, 68, 0.15) 100%);
    border-radius: 10px;
    border: 1px solid rgba(213, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.footer-badge i {
    font-size: 1.6rem;
    color: #ff1744;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-subtitle {
    font-size: 0.85rem;
    color: #ffffff !important;
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.35);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.875rem;
    margin: 0;
}

.copyright-text strong {
    color: #ffffff !important;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ff1744 !important;
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 5px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-main {
        padding: 45px 0 25px;
    }

    .footer-widget {
        margin-bottom: 15px;
    }

    .footer-description {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 40px 0 20px;
    }

    .footer-logo {
        max-width: 140px;
    }

    .footer-widget-title {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 12px;
    }

    .copyright-text {
        text-align: center;
        font-size: 0.8rem;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-badge {
        justify-content: center;
        margin: 0 auto;
        max-width: 190px;
    }

    .contact-item {
        font-size: 0.8rem;
    }

    .footer-bottom {
        text-align: center;
        padding: 18px 0;
    }

    .footer-bottom .row {
        flex-direction: column;
    }

    .footer-bottom .col-lg-6 {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-main {
        padding: 60px 0 30px;
    }

    .footer-widget {
        margin-bottom: 20px;
    }

    .footer-description {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 50px 0 20px;
    }

    .footer-logo {
        max-width: 150px;
    }

    .footer-widget-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .copyright-text {
        text-align: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-badge {
        justify-content: center;
        margin: 0 auto;
        max-width: 200px;
    }

    .contact-item {
        font-size: 0.85rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .row {
        flex-direction: column;
    }

    .footer-bottom .col-lg-6 {
        width: 100%;
    }
}
        justify-content: center;
    }
}



/* ============================================================================
   15. OFFICE DETAILS PAGE - PROFESSIONAL DESIGN
   ============================================================================ */

/* Office Hero Section with Decorative Elements */
.office-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.office-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.office-hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s ease-in-out infinite;
}

.decoration-circle.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.decoration-circle.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -30px;
    animation-delay: 5s;
}

.decoration-circle.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

/* Breadcrumb Modern Style */
.breadcrumb-modern {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.breadcrumb-modern a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-modern a:hover {
    color: white;
    transform: translateY(-2px);
}

.breadcrumb-modern a i {
    font-size: 0.85rem;
}

.breadcrumb-modern .separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 5px;
}

.breadcrumb-modern .current {
    color: white;
    font-weight: 600;
}

/* Office Badge */
.office-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.office-badge i {
    margin-right: 8px;
    font-size: 1rem;
}

/* Office Title */
.office-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

/* Professional Banner Fallback */
.office-banner-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    max-height: 400px;
}

.office-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.office-banner-image.banner-fallback {
    display: none;
}

.office-banner-fallback {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 20px;
    padding: 80px 40px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.office-banner-fallback::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.office-banner-fallback::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.office-banner-fallback .fallback-icon {
    background: rgba(255, 255, 255, 0.9);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.office-banner-fallback .fallback-icon i {
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.office-banner-fallback h3 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.office-banner-fallback p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Content Card */
.office-details .content-card,
.section-bg .content-card {
    background: white;
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 25px;
}

.content-body {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 50px;
}

.content-default {
    color: #718096;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.contact-card .icon-box {
    margin-bottom: 20px;
}

.contact-card .icon-box i {
    color: white;
    font-size: 1.8rem;
}

.contact-card-title {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.contact-card-content {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #764ba2;
    transform: translateX(5px);
}

.contact-link.email-link {
    font-size: 1.05rem;
    word-break: break-word;
}

/* Sidebar Styling */
.sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-title i {
    color: #667eea;
}

/* Map Container */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    background: #e9ecef;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border: 0;
}

/* Action Buttons */
.action-btn i {
    margin-right: 12px;
    font-size: 1.3rem;
    color: #667eea;
}

.action-btn-last {
    margin-bottom: 0 !important;
}

/* Responsive Design for Office Details */
@media (max-width: 768px) {
    .office-title {
        font-size: 2rem;
    }

    .content-title {
        font-size: 1.8rem;
    }

    .office-banner-fallback {
        padding: 60px 30px;
    }

    .office-banner-fallback h3 {
        font-size: 2rem;
    }

    .decoration-circle.circle-1 {
        width: 200px;
        height: 200px;
    }

    .decoration-circle.circle-2 {
        width: 150px;
        height: 150px;
    }

    .decoration-circle.circle-3 {
        display: none;
    }

    .map-container {
        height: 250px;
    }

    .contact-card {
        padding: 30px 25px;
    }

    .office-details .content-card,
    .section-bg .content-card {
        padding: 35px 25px;
    }
}

@media (max-width: 576px) {
    .office-title {
        font-size: 1.6rem;
    }

    .office-hero {
        padding: 60px 0 80px;
    }

    .breadcrumb-modern {
        font-size: 0.9rem;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .contact-card-title {
        font-size: 1.1rem;
    }

    .office-details .content-card,
    .section-bg .content-card {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   SECTION 16: PROFESSIONAL FOOTER - Modern & Clean Design
   ========================================================================== */

.professional-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.professional-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(213, 0, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Main Footer Content */
.footer-main {
    padding: 80px 0 0px;
    position: relative;
    z-index: 1;
}

/* Footer Logo */
.footer-logo-wrapper {
    margin-bottom: 25px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(1.3);
    transform: scale(1.05);
}

/* Footer Description */
.footer-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    padding-right: 15px;
}

/* Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #fff;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.2rem;
    margin-right: 0px;
    margin-top: 2px;
    color: #d50000;
    min-width: 20px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    color: #ff1744;
    transform: scale(1.15);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #fff;
}

/* Footer Widget Titles */
.footer-widget-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #d50000 0%, #ff1744 100%);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links li a i {
    font-size: 0.7rem;
    margin-right: 8px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-links li a:hover i {
    opacity: 1;
    color: #d50000;
}

/* Social Links */
.footer-social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: transparent;
}

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

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

.social-link.twitter:hover::before {
    background: #1da1f2;
}

.social-link.linkedin:hover::before {
    background: #0077b5;
}

.social-link.instagram:hover::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link i {
    position: relative;
    z-index: 1;
}

/* Footer Badge */
.footer-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: linear-gradient(135deg, rgba(213, 0, 0, 0.15) 0%, rgba(255, 23, 68, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(213, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-badge i {
    font-size: 1.8rem;
    color: #d50000;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-subtitle {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.copyright-text strong {
    color: #fff;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-main {
        padding: 60px 0 30px;
    }

    .footer-widget {
        margin-bottom: 20px;
    }

    .footer-description {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 50px 0 20px;
    }

    .footer-logo {
        max-width: 150px;
    }

    .footer-widget-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .copyright-text {
        text-align: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-badge {
        justify-content: center;
        margin: 0 auto;
        max-width: 200px;
    }

    .contact-item {
        font-size: 0.85rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .row {
        flex-direction: column;
    }

    .footer-bottom .col-lg-6 {
        width: 100%;
    }
}

/* ==========================================================================
   SECTION 17: NEWSLETTER SECTION - Professional Design
   ========================================================================== */

.newsletter-section {
    position: relative;
    width: 100%;
}

.newsletter-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, #667eea 0%, #764ba2 100%),
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 0.05;
    pointer-events: none;
}

.newsletter-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: pulse 2s infinite;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.newsletter-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    }
}

.newsletter-form-wrapper {
    max-width: 700px;
    margin: 40px auto;
}

.newsletter-message {
    display: none;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.newsletter-message.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.3);
}

.newsletter-message.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.3);
}

.newsletter-form {
    margin-bottom: 20px;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
    align-items: stretch;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.newsletter-email-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 18px 25px;
    font-size: 1rem;
    color: #2d3436;
    outline: none;
}

.newsletter-email-input::placeholder {
    color: #95a5a6;
}

.newsletter-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 40px;
    padding: 18px 45px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    white-space: nowrap;
}

.newsletter-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.newsletter-submit-btn:active {
    transform: translateY(-1px);
}

.newsletter-submit-btn i {
    font-size: 1.1rem;
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #95a5a6;
    font-size: 0.85rem;
    margin-top: 15px;
}

.privacy-note i {
    font-size: 1rem;
    color: #10b981;
}

.newsletter-stats {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #f1f3f5;
}

.stat-box {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-size: 0.9rem;
    color: #636e72;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 991px) {
    .newsletter-card {
        padding: 50px 40px;
    }

    .newsletter-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-box {
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 767px) {
    .newsletter-card {
        padding: 40px 25px;
        border-radius: 15px;
    }

    .newsletter-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }

    .newsletter-icon i {
        font-size: 2rem;
    }

    .newsletter-input-group {
        flex-direction: column;
        border-radius: 15px;
        gap: 0;
    }

    .newsletter-email-input {
        padding: 16px 20px;
        font-size: 0.95rem;
        border-bottom: 1px solid #e9ecef;
    }

    .newsletter-submit-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 35px;
        border-radius: 12px;
    }

    .newsletter-stats {
        flex-direction: column;
        gap: 25px;
        margin-top: 40px;
        padding-top: 30px;
    }

    .stat-box {
        flex: 1 1 100%;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-number i {
        font-size: 1.4rem !important;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

/* Newsletter Section Wrapper */
.newsletter-section-wrapper {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-container {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Hero Slider Styles - Auto-rotating Banner
   ========================================================================== */

.hero-slider-wrapper {
    position: relative;
    width: 100%;
}

.hero-slider .hero-slide {
    position: relative;
    width: 100%;
}

.hero-slider .slick-list,
.hero-slider .slick-track {
    height: 100%;
}

.hero-slider .image-cover {
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
}

@media (max-width: 768px) {
    .hero-slider .image-cover {
        min-height: 450px;
    }
}

@media (max-width: 576px) {
    .hero-slider .image-cover {
        min-height: 400px;
    }
}

/* Ensure slick slider transitions are smooth */
.hero-slider .slick-slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider .slick-slide.slick-active {
    opacity: 1;
}
