/* ===================================
   ENTERPRISE THEME - PROFESSIONAL UI
   =================================== */

:root {
    /* Legacy variables (kept for backward compatibility) */
    --primary-color: #1e3a5f;
    --secondary-color: #0d7377;
    --accent-color: #c9a961;
    --accent-hover: #dbb873;

    /* Luxury Color Palette */
    --primary-navy: #1e3a5f;
    --primary-navy-dark: #152a45;
    --secondary-teal: #0d7377;
    --secondary-teal-light: #14a1a6;
    --accent-gold: #c9a961;
    --accent-gold-light: #dbb873;

    /* Text Colors */
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-light: #a0aec0;

    /* Background & Borders */
    --border-color: rgba(30, 58, 95, 0.08);
    --bg-light: #f7fafc;
    --bg-cream: #faf8f5;
    --bg-white: #ffffff;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(30, 58, 95, 0.08);
    --shadow-md: 0 4px 16px rgba(30, 58, 95, 0.12);
    --shadow-lg: 0 8px 24px rgba(30, 58, 95, 0.16);

    /* Transition */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   TYPOGRAPHY
   =================================== */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    color: #080808;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

section h1 {
    font-size: 28px !important;
    font-weight: 600 !important;
    margin-bottom: 12px;
}

section h2 {
    font-size: 22px !important;
    font-weight: 600 !important;
    margin-bottom: 10px;
}

section p {
    font-size: 15px !important;
    line-height: 1.7;
    color: var(--text-secondary);
}

section ul li {
    font-size: 15px !important;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===================================
   COMPACT HEADER - ELEGANT DESIGN
   =================================== */

.compact-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.compact-navigation-bar {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    min-height: 70px;
    display: flex;
    align-items: center;
}

.nav-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: 20px;
}

/* Logo */
.nav-logo {
    flex-shrink: 0;
}

.nav-logo a {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-logo a:hover {
    transform: scale(1.05);
}

/* Navigation Menu */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 4px;
}

.nav-menu ul li a {
    display: block;
    padding: 10px 18px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0;
    text-transform: none;
    color: #1f2937;
    transition: var(--transition);
    border-radius: 6px;
    position: relative;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #00d084;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 3px 3px 0 0;
}

.nav-menu ul li a:hover {
    color: #00d084 !important;
    background: rgba(0, 208, 132, 0.05);
}

.nav-menu ul li a:hover::after {
    transform: scaleX(1);
}

/* Nav Actions */
.nav-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-action-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    color: #1f2937;
    font-size: 18px;
    transition: var(--transition);
}

.nav-action-item:hover {
    background: rgba(0, 208, 132, 0.1);
    transform: scale(1.1);
    color: #00d084;
}

.whatsapp-btn:hover {
    background: #25D366 !important;
    color: #ffffff !important;
}

/* Mobile Menu Toggle */
.nav-mobile-toggle {
    flex-shrink: 0;
}

.burger-icon {
    width: 26px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: block;
}

.burger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: #1f2937;
    border-radius: 3px;
    transition: var(--transition);
    position: absolute;
    left: 0;
}

.burger-icon span:nth-child(1) {
    top: 0;
}

.burger-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger-icon span:nth-child(3) {
    bottom: 0;
}

.burger-icon:hover span {
    background: #00d084;
}

/* ===================================
   BANNER & HERO - ELEGANT DESIGN
   =================================== */

.home-slider {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    position: relative;
    background: #f5f5f5;
}

/* Fix white screen during slide transition */
.hero-slider-1 {
    background: #f5f5f5 !important;
}

.single-hero-slider {
    background: #f5f5f5 !important;
}

.single-slider-img {
    position: relative;
    background: #f5f5f5;
}

.single-slider-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.5s ease-in-out;
}

/* Slick slider specific fixes for smooth transitions */
.slick-slide {
    background: #f5f5f5 !important;
    transition: opacity 0.5s ease-in-out !important;
}

.slick-slide.slick-loading {
    background: #f5f5f5 !important;
}

.slick-track {
    display: flex !important;
    background: #f5f5f5;
}

.slick-list {
    background: #f5f5f5;
    overflow: hidden;
}

/* Ensure images are always visible during transition */
.slick-slide img {
    opacity: 1 !important;
    visibility: visible !important;
}

.slick-cloned img {
    opacity: 1 !important;
}

/* Fade animation for slides */
.hero-slider-1.slick-slider {
    background: #f5f5f5;
}

.hero-slider-1 .slick-slide {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.hero-slider-1 .slick-slide.slick-active {
    opacity: 1;
}

.hero-slider-1 .slick-slide.slick-current {
    opacity: 1;
}

/* Prevent white flash */
.home-slide-cover {
    background: #f5f5f5;
}

.container-fluid {
    background: transparent;
}

/* Slider arrows elegant styling */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.slider-arrow button,
.slick-arrow,
.slick-prev,
.slick-next {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid #00d084 !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 36px !important;
    border-radius: 50% !important;
    transition: var(--transition) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15) !important;
    z-index: 100 !important;
}

.slider-arrow button:hover,
.slick-arrow:hover,
.slick-prev:hover,
.slick-next:hover {
    background: #00d084 !important;
    border-color: #00d084 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px rgba(0, 208, 132, 0.5) !important;
}

.slider-arrow button::before,
.slick-arrow::before,
.slick-prev::before,
.slick-next::before {
    color: var(--primary-color) !important;
    font-size: 16px !important;
    font-weight: bold !important;
    opacity: 1 !important;
    line-height: 40px !important;
}

.slider-arrow button:hover::before,
.slick-arrow:hover::before,
.slick-prev:hover::before,
.slick-next:hover::before {
    color: white !important;
}

/* Slider dots elegant styling */
.slick-dots {
    bottom: 20px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: white;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: #00d084;
    opacity: 1;
}

/* Info banner below slider */
#mainTxtHdr {
    background: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-navy) 50%, var(--secondary-teal) 100%) !important;
    color: white !important;
    padding: 18px 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.8px;
    border-top: 3px solid var(--accent-gold);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#mainTxtHdr::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ===================================
   PRODUCT CARDS - COMPACT & ELEGANT
   =================================== */

.product-cart-wrap {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    border: none;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.product-cart-wrap:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.product-img-action-wrap {
    position: relative;
    overflow: hidden;
    background: #fafafa;
}

.product-img,
.product-img-zoom {
    height: 200px !important;
    min-height: 200px !important;
    max-height: 200px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px !important;
    transition: var(--transition);
}

.product-img img,
.product-img-zoom img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    transition: var(--transition);
}

.product-cart-wrap:hover .product-img img {
    transform: scale(1.05);
}

.product-content-wrap {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-content-wrap h2 {
    font-size: 14px !important;
    font-weight: 600;
    margin: 0 0 5px 0 !important;
    line-height: 1.3;
}

.product-content-wrap h2 a {
    color: var(--text-primary);
    transition: var(--transition);
    display: block;
}

.product-content-wrap h2 a:hover {
    color: #00d084;
}

.product-category {
    margin-bottom: 5px;
}

.categoryBadge {
    background: #1f2937 !important;
    color: white !important;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 10px !important;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    display: inline-block;
    margin-right: 4px;
    transition: var(--transition);
}

.categoryBadge:hover {
    background: #00d084 !important;
}

.product-tagline {
    margin-bottom: 8px;
}

.product-tagline span {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
    display: block;
}

.product-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 10;
}

.product-badges .badge {
    font-size: 9px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 5px;
    margin-bottom: 3px;
    display: block;
    width: fit-content;
    box-shadow: var(--shadow-sm);
}

.product-action-1 {
    margin-top: auto;
}

.product-action-1.show {
    display: block !important;
}

.addToCartAction,
.action-btn {
    background: #1f2937 !important;
    color: white !important;
    border: none !important;
    padding: 7px 10px !important;
    border-radius: 9999px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: var(--transition) !important;
    display: inline-block !important;
    text-align: center !important;
    width: 100% !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
}

.addToCartAction:hover,
.action-btn:hover {
    background: #00d084 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 208, 132, 0.3) !important;
    color: white !important;
}

.addToCartAction i,
.action-btn i {
    font-size: 11px !important;
    margin-right: 4px !important;
    vertical-align: middle !important;
}

.mb-30 {
    margin-bottom: 0 !important;
}

/* Fix column spacing */
.product-grid-3 > div,
.product-grid-4 > div,
.row.product-grid-3 > div,
.row.product-grid-4 > div {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* ===================================
   SECTIONS - COMPACT
   =================================== */

.section-padding {
    padding: 35px 0;
}

.section-title {
    font-size: 22px !important;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #00d084;
    border-radius: 2px;
}

.container-fluid {
    padding-left: 20px;
    padding-right: 20px;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

/* ===================================
   FEATURED SECTION
   =================================== */

.banner-features {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
}

.banner-features:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.banner-features img {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.banner-features h4 {
    font-size: 14px !important;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-primary);
}

/* ===================================
   CONTENT SECTIONS
   =================================== */

.contentSection {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 50px 0;
}

.single-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.single-content h1 {
    font-size: 32px !important;
    margin-bottom: 20px;
}

.single-content h2 {
    font-size: 24px !important;
    margin-top: 30px;
    margin-bottom: 16px;
}

.single-content ul {
    padding-left: 20px;
    margin: 20px 0;
}

.single-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 8px;
}

.single-content ul li::before {
    content: '•';
    color: #00d084;
    font-weight: bold;
    position: absolute;
    left: -12px;
}

/* ===================================
   ACCORDION / FAQ
   =================================== */

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 10px !important;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-white);
}

.accordion-button {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    padding: 18px 24px;
    background: var(--bg-white);
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--bg-light);
    color: var(--text-primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 20px 24px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===================================
   PRODUCT DETAIL PAGE
   =================================== */

.product-detail {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.detail-gallery {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.title-detail {
    font-size: 28px !important;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.short-desc p {
    margin-bottom: 12px;
    font-size: 14px;
}

.walletColor {
    display: inline-block;
    color: white;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 6px;
    background: var(--primary-color);
    margin-right: 6px;
    font-weight: 500;
    transition: var(--transition);
}

.walletColor:hover {
    background: #00d084;
    transform: translateY(-1px);
}

/* ===================================
   FOOTER
   =================================== */

.main.footer {
    background: #ffffff !important;
    border-top: 1px solid #e5e7eb;
}

/* Footer responsive padding */
@media (max-width: 768px) {
    .main.footer .container-fluid {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

@media (max-width: 576px) {
    .main.footer .container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

.txtWhite {
    color: #1f2937 !important;
}

.widget-title {
    color: #080808 !important;
    font-size: 18px !important;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list li a {
    color: #6b7280;
    font-size: 15px;
    transition: var(--transition);
}

.footer-list li a:hover {
    color: #00d084;
    padding-left: 4px;
}

.mobile-social-icon a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 50%;
    margin-right: 8px;
    color: #1f2937;
    font-size: 18px;
    transition: var(--transition);
}

.mobile-social-icon a:hover {
    background: #00d084;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ===================================
   PRODUCT CAROUSEL
   =================================== */

.carausel-6-columns .product-cart-wrap.small {
    padding: 0;
}

.carausel-6-columns .product-img {
    min-height: 180px !important;
}

.carausel-6-columns .product-content-wrap {
    padding: 14px;
}

.carausel-6-columns .product-content-wrap h2 {
    font-size: 14px !important;
}

/* Carousel Navigation Arrows - Match Banner Style */
.slider-arrow-2 .slider-btn,
.slider-arrow .slider-btn {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid #00d084 !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 36px !important;
    border-radius: 9999px !important;
    color: #1f2937 !important;
    font-size: 14px !important;
    transition: var(--transition) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(10px);
}

.slider-arrow-2 .slider-btn:hover,
.slider-arrow .slider-btn:hover {
    background: #00d084 !important;
    border-color: #00d084 !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px rgba(0, 208, 132, 0.5) !important;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1199px) {
    .main-menu > nav > ul {
        gap: 4px;
    }

    .main-menu > nav > ul > li > a {
        padding: 8px 14px;
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .section-title {
        font-size: 22px !important;
    }

    .product-detail {
        padding: 24px;
    }

    .header-wrap {
        padding: 12px 0;
    }

    #brandsDiv {
        padding: 8px 0;
    }

    #brandsDiv a {
        width: 32px;
        height: 32px;
        margin: 0 4px;
    }

    #brandsDiv i {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    #mainTxtHdr {
        font-size: 11px !important;
        padding: 14px 16px !important;
    }

    section h1 {
        font-size: 24px !important;
    }

    section h2 {
        font-size: 20px !important;
    }

    .product-cart-wrap {
        margin-bottom: 20px;
    }

    .banner-features {
        margin-bottom: 16px;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.hover-up {
    transition: var(--transition);
}

.hover-up:hover {
    transform: translateY(-4px);
}

.wow {
    visibility: hidden;
}

.animated {
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

/* ===================================
   BUTTONS
   =================================== */

.btn-primary, .button {
    background: #1f2937;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover, .button:hover {
    background: #00d084;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 208, 132, 0.3);
}

.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white !important;
    padding: 14px 32px;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-cta-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: white !important;
}

/* ===================================
   CART ICON
   =================================== */

.cart-count {
    background: #00d084;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 600;
}

/* ===================================
   LOADING & ANIMATIONS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation: fadeInUp 0.6s ease-out;
}

/* ===================================
   ABOUT US & CONTACT PAGE STYLES - COMPACT
   =================================== */

.page-hero-section {
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-hero-section h1 {
    position: relative;
    z-index: 2;
    font-size: 42px !important;
    font-weight: 700;
    color: white;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-hero-section h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #00d084;
    margin: 16px auto 0;
    border-radius: 2px;
}

/* About Us Page Cards - Compact */
.about-page-section {
    padding: 40px 0;
    background: var(--bg-light);
}

.about-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #00d084;
}

.about-card-title {
    font-size: 20px !important;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-card-title i {
    color: #00d084;
    font-size: 24px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 208, 132, 0.1);
    border-radius: 10px;
}

.about-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.about-card p:last-child {
    margin-bottom: 0;
}

/* Two-column cards - Compact */
.about-two-col-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Contact Page Styles - Compact */
.contact-page-section {
    padding: 40px 0;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #00d084;
}

.contact-card i {
    font-size: 40px;
    color: #00d084;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: rgba(0, 208, 132, 0.1);
    border-radius: 50%;
}

.contact-card h5 {
    font-size: 17px !important;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    word-break: break-word;
}

.contact-card a {
    color: var(--text-secondary);
    transition: var(--transition);
    text-decoration: none;
}

.contact-card a:hover {
    color: #00d084;
}

/* Map Container - Compact */
.map-wrapper {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 15px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #00d084;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

/* Section Headers - Compact */
.page-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.page-section-header h2 {
    font-size: 28px !important;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.page-section-header p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive Design for About/Contact - Compact */
@media (max-width: 768px) {
    .page-hero-section {
        height: 220px;
    }

    .page-hero-section h1 {
        font-size: 28px !important;
    }

    .about-page-section,
    .contact-page-section {
        padding: 30px 0;
    }

    .about-card,
    .contact-card {
        padding: 20px 15px;
    }

    .about-two-col-cards,
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .map-container iframe {
        height: 300px;
    }

    .page-section-header h2 {
        font-size: 24px !important;
    }
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

#scrollUp,
.scroll-to-top,
.scrollup {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid #00d084 !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 9999px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: var(--transition) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(10px);
}

#scrollUp:hover,
.scroll-to-top:hover,
.scrollup:hover {
    background: #00d084 !important;
    border-color: #00d084 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px rgba(0, 208, 132, 0.5) !important;
}

#scrollUp i,
#scrollUp::before,
#scrollUp::after,
.scroll-to-top i,
.scrollup i {
    color: var(--primary-color) !important;
    font-size: 16px !important;
}

#scrollUp:hover i,
#scrollUp:hover::before,
#scrollUp:hover::after,
.scroll-to-top:hover i,
.scrollup:hover i {
    color: white !important;
}

/* ===================================
   CUSTOM SCROLLBAR
   =================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--text-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}
