/* =================================
   ONLINE GROWTH HUB - PREMIUM STYLES
   Modern Professional Design System
   ================================= */

:root {
    /* Primary Colors */
    --primary-navy: #1a1547;
    --primary-gold: #d4af37;
    --secondary-navy: #2d1b4e;

    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999999;
    --text-white: #ffffff;

    /* Background Colors */
    --border-light: #e0e0e0;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --bg-navy-gradient: linear-gradient(135deg, #1a1547 0%, #2d1b4e 100%);
    --bg-gold-gradient: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);

    /* Border Radius */
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-dark);
    line-height: 1.65;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    top: 0 !important;
    /* Fix for Google Translate shifting */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", "Montserrat", sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
}

h2 {
    font-size: 2.75rem;
    line-height: 1.25;
    margin-bottom: 30px;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.35;
    font-weight: 700;
}

h4 {
    font-size: 1.3rem;
    font-weight: 600;
}

h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e8c547;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* =================================
   BUTTONS
   ================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    text-decoration: none;
    justify-content: center;
}

.btn-primary {
    background: var(--bg-gold-gradient);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
    background: linear-gradient(135deg, #c19a2e 0%, #d4af37 100%);
    color: #ffffff !important;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* =================================
   NAVIGATION & HEADER
   ================================= */

/* Google Translate Fixes */
.goog-te-gadget-icon,
.goog-te-banner-frame,
.goog-te-menu-value span:nth-child(5),
.goog-te-menu-value span:nth-child(3) {
    display: none !important;
}

.google-translate-container {
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 15px;
    height: 30px;
    position: relative;
    z-index: 10002;
}

.google-translate-container #google_translate_element {
    line-height: normal;
}

.goog-te-gadget-simple {
    background-color: #d4af37 !important;
    border: 1px solid #d4af37 !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    display: inline-flex !important;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.goog-te-gadget-simple:hover {
    background-color: #c19a2e !important;
    border-color: #c19a2e !important;
}

.goog-te-gadget-simple .goog-te-menu-value {
    color: #1a1547 !important;
    display: flex !important;
    align-items: center;
}

.goog-te-gadget-simple .goog-te-menu-value span {
    color: #1a1547 !important;
    font-family: "Inter", sans-serif !important;
    font-weight: 600 !important;
    border-left: none !important;
}

.goog-te-gadget-simple .goog-te-menu-value span:first-child {
    margin-right: 4px;
    /* Space for the arrow */
}

.goog-te-gadget-simple img {
    display: none !important;
}

/* Force dropdown visibility */
.goog-te-menu-frame {
    z-index: 999999 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

/* Specific footer social icons styling */
.footer-social-icons .social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #d4af37 !important;
    color: #1a1547 !important;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    border: 1px solid #d4af37;
}

.social-circle:hover {
    transform: translateY(-3px);
    background: #ffffff !important;
    color: #d4af37 !important;
    border-color: #ffffff !important;
}

/* =================================
   HOME HERO SECTION
   ================================= */
.home-hero {
    background: linear-gradient(135deg, #1a1547 0%, #2d1b69 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.home-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-title span.highlight {
    color: #d4af37;
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Home Hero Image Wrapper (Right Side) */
.home-hero-image-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.home-hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 40px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    z-index: 1;
    transform: rotate(3deg);
    transition: all 0.5s ease;
}

.home-hero-image-wrapper:hover::before {
    transform: rotate(0deg);
    border-color: rgba(212, 175, 55, 0.6);
}

.home-hero-img {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
    width: 100%;
}

.home-hero-img:hover {
    transform: translateY(-10px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .home-hero {
        padding: 100px 0 60px;
        text-align: center;
        min-height: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-description {
        margin: 0 auto 30px;
    }

    /* Force rounded buttons on mobile - CRITICAL FIX */
    .btn,
    .btn-primary,
    .btn-outline,
    .btn-outline-light,
    .btn-lg,
    .hero-btn-group .btn {
        border-radius: 50px !important;
        padding: 12px 28px !important;
    }

    /* Make hero image visible on mobile - CRITICAL FIX */
    .home-hero-image-wrapper {
        display: block !important;
        visibility: visible !important;
        margin-top: 40px;
        padding: 10px;
    }

    .home-hero-image-wrapper::before {
        left: 20px;
    }

    .home-hero-img {
        display: block !important;
        width: 100%;
        max-width: 100%;
    }

    .hero-placeholder-visual {
        height: 300px;
    }

    /* About and Service Hero Buttons */
    .hero-btn-group .btn {
        border-radius: 50px !important;
    }

    .about-hero .btn,
    .service-detail-hero .btn {
        border-radius: 50px !important;
    }
}

/* Navbar Wrapper */
.navbar-wrapper {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 10000;
    background: white;
    min-height: 80px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

/* Top Bar */
.navbar-top {
    background: linear-gradient(90deg, #1a1547 0%, #2d1b4e 100%);
    color: white;
    min-height: 40px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10001;
    font-size: 0.9rem;
    width: 100%;
}

.navbar-top .container,
.navbar-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-contact {
    display: flex;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item:hover {
    color: #d4af37;
}

.contact-item i {
    color: #d4af37;
    font-size: 0.95rem;
}

.navbar-right-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.navbar-social {
    display: flex;
    gap: 8px;
    align-items: center;
}

.navbar-social a {
    color: #1a1547 !important;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #d4af37 !important;
    text-decoration: none;
    border: 1px solid #d4af37 !important;
}

.navbar-social a:hover {
    background: #ffffff !important;
    color: #d4af37 !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
}

/* Main Navigation Area */
.navbar-main {
    background: white;
    padding: 15px 0;
    display: block;
    position: relative;
    z-index: 10000;
    width: 100%;
}

.navbar-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand */
.navbar-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1a1547;
    font-weight: 800;
    font-size: 1.5rem;
}

.navbar-brand .logo-image {
    max-height: 45px;
    width: auto;
}

.navbar-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
}

/* Desktop Menu */
.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
    /* Reduced from 20px */
}

.navbar-menu>li>a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 8px;
    /* Reduced side padding from 12px */
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    /* Prevent wrapping */
}

.navbar-menu>li>a:hover,
.navbar-menu>li.active>a {
    color: #1a1547;
    background: rgba(212, 175, 55, 0.1);
}

/* Dropdowns */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 3px solid #d4af37;
    list-style: none;
    z-index: 100000;
    display: block;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown::after {
    content: '';
    position: absolute;
    height: 20px;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: #f8f9fa;
    color: #1a1547;
    padding-left: 25px;
}

.dropdown-menu li.view-all a {
    color: #d4af37;
    font-weight: 600;
    border-top: 1px solid #eee;
    margin-top: 5px;
    padding-top: 15px;
}

/* Cart Icon */
.cart-icon {
    position: relative;
    padding: 10px;
    color: #333;
    font-size: 1.2rem;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #d4af37;
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* CTA in Nav */
.navbar-menu .btn-cta {
    background: linear-gradient(135deg, #d4af37 0%, #c19a2e 100%);
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    margin-left: 10px;
    font-weight: 700 !important;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    /* Prevent wrapping */
}

.navbar-menu .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #c19a2e 0%, #d4af37 100%);
}

/* Mobile Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 0;
}

.navbar-toggle span {
    width: 100%;
    height: 3px;
    background: #1a1547;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========================================
   PREMIUM MOBILE ASIDE MENU
   ======================================== */

/* Mobile Aside Menu Container */
.mobile-aside-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 90%;
    max-width: 360px;
    height: 100vh;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    z-index: 100002;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.mobile-aside-menu.active {
    left: 0;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 21, 71, 0.75);
    z-index: 100001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Inner Wrapper */
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

/* PREMIUM HEADER DESIGN */
.mobile-menu-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1a1547 0%, #2d1b4e 100%);
    border-bottom: 3px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-logo-wrapper .logo-image {
    max-height: 45px;
    width: auto;
    filter: none;
}

/* PREMIUM CLOSE BUTTON */
.mobile-close {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    line-height: 1;
}

.mobile-close:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
    transform: rotate(90deg);
}

/* PREMIUM MENU LIST */
.mobile-menu-list {
    padding: 12px 0;
    margin: 0;
    list-style: none;
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom Scrollbar */
.mobile-menu-list::-webkit-scrollbar {
    width: 5px;
}

.mobile-menu-list::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-menu-list::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 10px;
}

.mobile-menu-list::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}

/* PREMIUM MENU ITEMS */
.mobile-menu-list>li {
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-list>li:last-child {
    border-bottom: none;
}

.mobile-menu-list>li>a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 16px 24px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

/* Dropdown Toggle - Arrow close to text */
.mobile-menu-list>li>a.dropdown-toggle {
    justify-content: flex-start;
    gap: 12px;
}

/* Remove Bootstrap Double Arrow */
.mobile-menu-list .dropdown-toggle::after {
    display: none !important;
}

/* Left Border Indicator on Hover */
.mobile-menu-list>li>a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-menu-list>li>a:hover,
.mobile-menu-list>li>a:active {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    color: #1a1547;
}

.mobile-menu-list>li>a:hover::before {
    transform: scaleY(1);
}

/* Icon styling (if you add icons in future) */
.mobile-menu-list>li>a i {
    color: #d4af37;
    font-size: 1.1rem;
}

/* PREMIUM SUBMENU */
.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 3px solid #d4af37;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 500px;
    padding: 8px 0;
}

.mobile-submenu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.mobile-submenu li:last-child {
    border-bottom: none;
}

.mobile-submenu li a {
    display: flex;
    align-items: center;
    padding: 14px 24px 14px 40px;
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

/* Bullet indicator on submenu */
.mobile-submenu li a::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-submenu li a:hover {
    background: rgba(212, 175, 55, 0.08);
    color: #1a1547;
    padding-left: 44px;
}

.mobile-submenu li a:hover::before {
    opacity: 1;
}

/* PREMIUM CTA BUTTON */
.btn-cta-mobile {
    background: linear-gradient(135deg, #1a1547 0%, #2d1b4e 100%);
    color: white !important;
    text-align: center;
    border-radius: 12px;
    margin: 16px 24px;
    padding: 16px !important;
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(26, 21, 71, 0.25);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cta-mobile:hover {
    background: linear-gradient(135deg, #2d1b4e 0%, #1a1547 100%);
    box-shadow: 0 6px 25px rgba(26, 21, 71, 0.35);
    transform: translateY(-2px);
    border-color: #d4af37;
}

/* Cart Badge */
.cart-badge-mobile {
    background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
    color: #1a1547;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    margin-left: 8px;
}

/* PREMIUM FOOTER */
.mobile-menu-footer {
    padding: 24px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
    border-top: 3px solid #d4af37;
    margin-top: auto;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

/* Contact Info */
.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 12px;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-contact-item:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, #ffffff 100%);
    border-color: #d4af37;
    transform: translateX(4px);
}

.mobile-contact-item i {
    color: #1a1547;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.25);
}

/* Social Icons */
.mobile-social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.mobile-social-link {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mobile-social-link:hover {
    background: #d4af37;
    color: white;
    border-color: #d4af37;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Translate Section */
.mobile-translate-section {
    display: flex;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Responsive Adjustments */
@media (max-width: 375px) {
    .mobile-aside-menu {
        max-width: 320px;
    }

    .mobile-menu-list>li>a {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .mobile-submenu li a {
        padding: 12px 20px 12px 36px;
        font-size: 0.9rem;
    }

    .mobile-social-link {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 320px) {
    .mobile-aside-menu {
        max-width: 280px;
        width: 95%;
    }

    .mobile-menu-header {
        padding: 16px 18px;
    }

    .mobile-close {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}

/* Hide on desktop */
@media (min-width: 992px) {

    .mobile-aside-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* =================================
   HOME HERO SECTION
   ================================= */

.home-hero {
    background: linear-gradient(135deg, #1a1547 0%, #2d1b4e 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    color: white;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #d4af37;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff !important;
}

.hero-title .highlight {
    color: #d4af37;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.8;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =================================
   SECTION STYLES
   ================================= */

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background: #f8f9fa;
}

.bg-white {
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: block;
    color: #d4af37;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1547;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* =================================
   GRIDS & CARDS
   ================================= */

.features-grid,
.services-grid,
.products-grid,
.portfolio-grid,
.blog-grid,
.testimonials-grid {
    display: grid;
    gap: 30px;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.portfolio-grid,
.blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-image {
    margin: -30px -30px 20px -30px;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-thumb-small {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Feature Card */
.feature-card-modern {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    color: #1a1547;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.feature-card-modern:hover .feature-icon {
    background: #1a1547;
    color: #d4af37;
}

.feature-card-modern h3 {
    font-size: 1.3rem;
    color: #1a1547;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card-modern p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Service Card */
.service-card-modern {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid #d4af37;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1a1547;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.service-card-modern:hover .service-icon-wrapper {
    background: #1a1547;
    color: #d4af37;
}

.service-card-modern h3 {
    font-size: 1.5rem;
    color: #1a1547;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card-modern p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.service-features-list i {
    color: #d4af37;
}

.service-btn {
    color: #1a1547;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    margin-top: auto;
}

.service-btn:hover {
    color: #d4af37;
    gap: 12px;
}

/* Product Card */
.product-card-modern {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #eee;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card-modern:hover .product-thumb img {
    transform: scale(1.1);
}

.badge-sale {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #dc3545;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 21, 71, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.btn-icon {
    width: 45px;
    height: 45px;
    background: white;
    color: #1a1547;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-icon:hover {
    background: #d4af37;
    color: white;
}

.product-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 600;
}

.product-title {
    margin: 0 0 10px;
    font-size: 1.15rem;
    font-weight: 700;
}

.product-title a {
    color: #1a1547;
    text-decoration: none;
    transition: color 0.3s;
}

.product-title a:hover {
    color: #d4af37;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.current-price {
    color: #1a1547;
    font-weight: 800;
    font-size: 1.2rem;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 5px;
}

.btn-view {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Portfolio & Blog Cards */
.portfolio-card-modern,
.blog-card-modern {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.portfolio-card-modern:hover,
.blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.portfolio-thumb,
.blog-thumb {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #eee;
}

.portfolio-thumb img,
.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-card-modern:hover .portfolio-thumb img,
.blog-card-modern:hover .blog-thumb img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.portfolio-card-modern:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-details,
.blog-details {
    padding: 25px;
}

.category-tag {
    background: rgba(212, 175, 55, 0.1);
    color: #b08d1e;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #d4af37;
    color: #1a1547;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.portfolio-details h3,
.post-title {
    margin-top: 10px;
    font-size: 1.3rem;
    color: #1a1547;
    font-weight: 700;
}

.post-title a {
    color: #1a1547;
    text-decoration: none;
}

.post-title a:hover {
    color: #d4af37;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tech-stack span {
    background: #f1f1f1;
    color: #555;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.post-meta {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 10px;
}

.read-more-link {
    color: #1a1547;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more-link:hover {
    gap: 10px;
    color: #d4af37;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #d4af37;
}

.testimonial-rating {
    color: #d4af37;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #555;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author h4 {
    color: #1a1547;
    font-weight: 700;
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-author p {
    color: #999;
    margin: 0;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1547 0%, #2d1b4e 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =================================
   FOOTER STYLES
   ================================= */

.footer-wrapper {
    background: #0f0b29;
    /* Deep Navy */
    color: #ffffff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.footer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1a1547 0%, #d4af37 50%, #1a1547 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "info info"
            "links services"
            "newsletter newsletter";
        gap: 30px;
    }

    .info-col {
        grid-area: info;
    }

    .links-col:nth-of-type(2) {
        grid-area: links;
    }

    /* Quick Links */
    .links-col:nth-of-type(3) {
        grid-area: services;
    }

    /* Services */
    .newsletter-col {
        grid-area: newsletter;
    }
}

.footer-column h4 {
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #d4af37;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-circle:hover {
    background: #d4af37;
    color: #1a1547;
    transform: translateY(-5px) rotate(360deg);
    border-color: #d4af37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-menu a:hover {
    color: #d4af37;
    padding-left: 5px;
}

/* Newsletter Form */
.footer-newsletter-form .form-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px;
    margin-bottom: 20px;
}

.footer-newsletter-form input {
    background: transparent !important;
    border: none;
    flex-grow: 1;
    padding: 10px 20px;
    color: white;
    outline: none;
    font-size: 0.9rem;
}

.footer-newsletter-form button {
    background: #d4af37;
    color: #1a1547;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-newsletter-form button:hover {
    transform: scale(1.1);
}

.footer-contact-mini p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-mini i {
    color: #d4af37;
    width: 20px;
    text-align: center;
    margin-right: 5px;
}

.footer-contact-mini a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-mini a:hover {
    color: #d4af37;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #d4af37;
}

.separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}

/* =================================
   FLOATING WIDGETS
   ================================= */

.floating-widgets {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    left: auto;
    background: #1a1547;
    color: white;
    border: 2px solid #d4af37;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.widget-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.whatsapp-float {
    background: #25D366;
    color: white;
    text-decoration: none;
    position: relative;
    font-size: 1.8rem;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

.tooltip-text {
    position: absolute;
    left: 60px;
    background: white;
    color: #333;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.whatsapp-float:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    left: 65px;
}

/* =================================
   RESPONSIVE DESIGN
   ================================= */

@media (max-width: 992px) {
    #mobile-translate-top {
        display: block;
        margin-left: 10px;
    }

    /* Hide Desktop Top Bar Content on Mobile */
    /* Show Top Bar on Mobile */
    .navbar-top {
        display: block !important;
        padding: 5px 0;
        /* Reduced padding */
    }

    .navbar-top-content {
        flex-direction: column;
        /* Changed to column for stacking */
        gap: 10px;
        align-items: center;
        text-align: center;
    }

    .navbar-contact {
        justify-content: center;
        /* Center contact info */
        width: 100%;
        margin-bottom: 0;
        gap: 15px;
    }

    .contact-item {
        font-size: 0.8rem;
        /* Smaller font for mobile */
    }

    .contact-item i {
        font-size: 0.8rem;
    }

    .navbar-right-group {
        width: 100%;
        flex-direction: column;
        /* Stack Social and Translate */
        align-items: center;
        gap: 10px;
        margin-left: 0;
    }

    .navbar-social {
        display: flex;
        /* Show social icons */
        gap: 15px;
        justify-content: center;
    }

    .navbar-social a {
        width: 28px;
        /* Slightly smaller icons */
        height: 28px;
        font-size: 0.8rem;
    }

    #mobile-translate-top {
        display: block;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    /* Ensure Translate widget is compact */
    #mobile-translate-top .goog-te-gadget {
        font-size: 0 !important;
        /* Hide "Powered by Google" */
    }

    #mobile-translate-top .goog-te-combo {
        margin: 0 !important;
        padding: 2px !important;
        font-size: 0.8rem !important;
        height: 24px !important;
    }

    /* Hide desktop translate container on mobile to prevent border/spacing issues */
    .google-translate-container {
        display: none !important;
    }

    .navbar-menu {
        display: none !important;
    }

    .navbar-toggle {
        display: flex !important;
        margin-left: auto;
        /* Push to right */
    }

    .home-hero {
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }

    .hero-stats {
        border-top: none;
        padding-top: 20px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .services-grid,
    .products-grid,
    .portfolio-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    /* Mobile Feature Card Optimization */
    .feature-card-modern {
        padding: 20px 15px;
        text-align: center;
    }

    .feature-card-modern .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-card-modern h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .feature-card-modern p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}

/* ============================================================
   ABOUT & SERVICE HERO SECTIONS
   ============================================================ */

.about-hero,
.service-detail-hero {
    background: linear-gradient(135deg, #1a1547 0%, #2d1b69 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    color: white;
}

.about-hero::before,
.service-detail-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-hero .hero-content,
.service-detail-hero .hero-content {
    position: relative;
    z-index: 1;
}

.about-hero .breadcrumb,
.service-detail-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.about-hero .breadcrumb a,
.service-detail-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-hero .breadcrumb a:hover,
.service-detail-hero .breadcrumb a:hover {
    color: #d4af37;
}

.about-hero .breadcrumb i.fa-chevron-right,
.service-detail-hero .breadcrumb i.fa-chevron-right {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}

.about-hero .breadcrumb span,
.service-detail-hero .breadcrumb span {
    color: #d4af37;
    font-weight: 600;
}

.about-hero .hero-title,
.service-detail-hero .hero-title {
    font-size: 3.5rem;
    color: white;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero .hero-title .highlight {
    color: #d4af37;
}

.about-hero .hero-title i,
.service-detail-hero .hero-title i {
    color: #d4af37;
    margin-right: 15px;
}

.about-hero .hero-subtitle,
.service-detail-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-hero .hero-description,
.service-detail-hero .hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn-group .btn {
    border-radius: 50px;
}

/* About and Service Hero Image Wrapper - Consistent styling */
.about-hero-image-wrapper,
.hero-image-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.about-hero-image-wrapper::before,
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 40px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    z-index: 1;
    transform: rotate(3deg);
    transition: all 0.5s ease;
}

.about-hero-image-wrapper:hover::before,
.hero-image-wrapper:hover::before {
    transform: rotate(0deg);
    border-color: rgba(212, 175, 55, 0.6);
}

.about-main-img,
.service-hero-img {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
    width: 100%;
}

.about-main-img:hover,
.service-hero-img:hover {
    transform: translateY(-10px);
}

.about-placeholder-visual,
.service-placeholder-visual {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #d4af37;
}

/* About Overview Section */
.about-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: #1a1547;
    margin-bottom: 25px;
    font-weight: 800;
}

.overview-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-highlights {
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: start;
}

.highlight-item i {
    color: #d4af37;
    font-size: 1.5rem;
    margin-top: 5px;
}

.highlight-item h4 {
    font-size: 1.2rem;
    color: #1a1547;
    margin-bottom: 5px;
}

.highlight-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.overview-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stats-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #d4af37;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    color: #1a1547;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-box .stat-label {
    font-size: 0.95rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.stat-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4af37 0%, #e8c547 100%);
    border-radius: 3px;
    transition: width 1s ease;
}

@media (max-width: 991px) {

    .about-hero,
    .service-detail-hero {
        padding: 100px 0 60px;
        text-align: center;
    }

    .about-hero .hero-title,
    .service-detail-hero .hero-title {
        font-size: 2.5rem;
    }

    .hero-btn-group {
        justify-content: center;
    }

    .about-hero-image-wrapper,
    .hero-image-wrapper {
        margin-top: 40px;
        padding: 10px;
    }

    .about-hero-image-wrapper::before,
    .hero-image-wrapper::before {
        left: 20px;
    }

    .about-placeholder-visual,
    .service-placeholder-visual {
        height: 300px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .about-hero .hero-title,
    .service-detail-hero .hero-title {
        font-size: 2rem;
    }

    .about-hero .hero-subtitle,
    .service-detail-hero .hero-subtitle {
        font-size: 1.1rem;
    }
}

/**
 * Legal Pages Stylesheet - Online Growth Hub
 * Consistent design for Terms, Privacy, and Refund pages
 */

/* ============================================================
   LEGAL PAGE HERO SECTION
   ============================================================ */

.legal-page-hero {
    background: linear-gradient(135deg, #1a1547 0%, #2d1b69 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.legal-page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.legal-page-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.legal-page-hero .hero-content {
    position: relative;
    z-index: 1;
}

.legal-page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.legal-page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-page-hero .breadcrumb a:hover {
    color: #d4af37;
}

.legal-page-hero .breadcrumb i.fa-chevron-right {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}

.legal-page-hero .breadcrumb span {
    color: #d4af37;
    font-weight: 600;
}

.legal-page-hero .hero-title {
    font-size: 3.5rem;
    color: white;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.legal-page-hero .hero-title i {
    color: #d4af37;
}

.legal-page-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.8;
}

/* ============================================================
   MAIN CONTENT SECTION
   ============================================================ */

.legal-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.legal-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* Company Information Box */
.company-info-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    border-left: 5px solid #d4af37;
}

.company-info-box .info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.company-info-box .info-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1a1547 0%, #2d1b69 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.company-info-box .info-item strong {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-info-box .info-item p {
    font-size: 1rem;
    color: #1a1547;
    margin: 0;
    font-weight: 600;
}

/* Legal Content Container */
.legal-content {
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

/* Introduction Section */
.intro-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e9ecef;
}

.main-heading {
    font-size: 2.2rem;
    color: #1a1547;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

/* Content Sections */
.content-section {
    margin-bottom: 50px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    font-size: 1.8rem;
    color: #1a1547;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #d4af37;
    display: flex;
    align-items: center;
    gap: 15px;
}

.content-section h2 .section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #d4af37, #c19a2e);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.content-section h2 i {
    color: #d4af37;
}

.content-section h3 {
    font-size: 1.4rem;
    color: #1a1547;
    font-weight: 600;
    margin: 30px 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-section h3 i {
    color: #d4af37;
}

.content-section h4 {
    font-size: 1.2rem;
    color: #1a1547;
    font-weight: 600;
    margin: 20px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-section h4 i {
    color: #d4af37;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.content-section p strong {
    color: #1a1547;
    font-weight: 600;
}

/* Lists */
.service-list,
.obligation-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-list li,
.obligation-list li {
    padding: 12px 0 12px 40px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.service-list li i,
.obligation-list li i {
    position: absolute;
    left: 0;
    top: 14px;
    color: #d4af37;
    font-size: 1.2rem;
}

.numbered-list {
    counter-reset: item;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.numbered-list li {
    counter-increment: item;
    padding: 12px 0 12px 50px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 10px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #1a1547 0%, #2d1b69 100%);
    color: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

/* Info Boxes */
.info-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
    margin: 25px 0;
}

.info-box h4 {
    margin-top: 0;
    color: #1a1547;
}

.info-box ul,
.info-box ol {
    margin: 15px 0 0;
    padding-left: 25px;
}

.info-box li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.warning-box h4 {
    color: #856404;
    margin-top: 0;
}

.warning-box p,
.warning-box li {
    color: #856404;
}

/* Information Categories */
.info-category {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    margin: 25px 0;
    transition: all 0.3s;
}

.info-category:hover {
    border-color: #d4af37;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
}

.info-category h3 {
    color: #1a1547;
    margin-top: 0;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.usage-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid #d4af37;
    transition: all 0.3s;
}

.usage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.usage-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a1547 0%, #2d1b69 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.usage-card .icon i {
    color: #d4af37;
    font-size: 1.8rem;
}

.usage-card h4 {
    color: #1a1547;
    font-size: 1.3rem;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.usage-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usage-card ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.usage-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: 700;
}

/* Sharing List */
.sharing-list,
.rights-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.share-item,
.right-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #d4af37;
    transition: all 0.3s;
}

.share-item:hover,
.right-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.share-icon,
.right-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #1a1547 0%, #2d1b69 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.share-content h4,
.right-content h4 {
    color: #1a1547;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.share-content p,
.right-content p {
    color: #666;
    margin-bottom: 10px;
}

.share-content ul,
.right-content ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.share-content ul li,
.right-content ul li {
    padding: 6px 0 6px 25px;
    position: relative;
    color: #666;
    font-size: 0.95rem;
}

.share-content ul li::before,
.right-content ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #d4af37;
    font-weight: 700;
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.security-item {
    background: #f8f9fa;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid #d4af37;
    transition: all 0.3s;
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.security-item i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
    display: block;
}

.security-item h4 {
    color: #1a1547;
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    font-weight: 600;
    display: block;
}

.security-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Retention Table */
.retention-table {
    overflow-x: auto;
    margin: 25px 0;
}

.retention-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.retention-table thead {
    background: linear-gradient(135deg, #1a1547 0%, #2d1b69 100%);
}

.retention-table thead th {
    color: white;
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.retention-table tbody tr {
    border-bottom: 1px solid #e9ecef;
}

.retention-table tbody tr:last-child {
    border-bottom: none;
}

.retention-table tbody tr:hover {
    background: #f8f9fa;
}

.retention-table tbody td {
    padding: 18px 20px;
    color: #555;
    font-size: 0.95rem;
}

.retention-table tbody td:first-child {
    font-weight: 600;
    color: #1a1547;
}

/* IP Sections */
.ip-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #d4af37;
}

.ip-section h4 {
    margin-top: 0;
}

.ip-section ul {
    margin: 15px 0 0;
    padding-left: 25px;
}

.ip-section li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid #d4af37;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a1547 0%, #2d1b69 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card .icon i {
    color: #d4af37;
    font-size: 2rem;
}

.contact-card .details h4 {
    color: #1a1547;
    font-size: 1.2rem;
    margin: 0 0 12px 0;
    font-weight: 600;
    display: block;
}

.contact-card .details p {
    color: #666;
    font-size: 0.95rem;
    margin: 5px 0;
}

.contact-card .details a {
    color: #1a1547;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-card .details a:hover {
    color: #d4af37;
}

.contact-card .details small {
    display: block;
    color: #999;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Acknowledgment Box */
.acknowledgment-box {
    background: linear-gradient(135deg, #1a1547 0%, #2d1b69 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    text-align: center;
}

.acknowledgment-box h3 {
    color: white;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.acknowledgment-box h3 i {
    color: #d4af37;
}

.acknowledgment-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.acknowledgment-box p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #d4af37;
}

/* ============================================================
   REFUND POLICY SPECIFIC STYLES
   ============================================================ */

.policy-category {
    margin: 30px 0;
}

/* Refund Stages */
.refund-stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.stage-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.stage-item:hover {
    border-color: #d4af37;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
}

.stage-header {
    background: linear-gradient(135deg, #1a1547 0%, #2d1b69 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stage-percent {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
}

.stage-label {
    font-size: 1rem;
    color: white;
    font-weight: 600;
}

.stage-content {
    padding: 20px;
}

.stage-content p {
    margin: 8px 0;
    font-size: 0.95rem;
}

.stage-content p strong {
    display: block;
    color: #1a1547;
    margin-bottom: 3px;
}

/* Refund Reasons Grid */
.refund-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.reason-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid #d4af37;
    transition: all 0.3s;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reason-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a1547 0%, #2d1b69 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reason-card .icon i {
    color: #d4af37;
    font-size: 2rem;
}

.reason-card h4 {
    color: #1a1547;
    font-size: 1.2rem;
    margin: 0 0 12px 0;
    font-weight: 600;
    display: block;
}

.reason-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Digital Policy Sections */
.digital-policy {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #d4af37;
}

.digital-policy h4 {
    color: #1a1547;
    margin-top: 0;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    margin: 30px 0;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    margin-bottom: 25px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 39px;
    bottom: -25px;
    width: 3px;
    height: 25px;
    background: linear-gradient(to bottom, #d4af37, transparent);
}

.process-step:last-child::after {
    display: none;
}

.process-step .step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a1547 0%, #2d1b69 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step .step-content h4 {
    color: #1a1547;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.process-step .step-content p {
    color: #666;
    margin-bottom: 10px;
}

.process-step .step-content ul {
    margin: 10px 0 0;
    padding-left: 20px;
}

.process-step .step-content li {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.process-step .step-content strong {
    color: #1a1547;
}

/* Dispute Steps */
.dispute-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.dispute-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #d4af37;
    transition: all 0.3s;
}

.dispute-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.dispute-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #1a1547 0%, #2d1b69 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dispute-content h4 {
    color: #1a1547;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.dispute-content p {
    color: #666;
    margin-bottom: 10px;
}

.dispute-content strong {
    color: #1a1547;
}

/* Modification Policy */
.modification-policy {
    margin: 30px 0;
}

.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.alt-card {
    background: #f8f9fa;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid #d4af37;
    transition: all 0.3s;
}

.alt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.alt-card i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
    display: block;
}

.alt-card h5 {
    color: #1a1547;
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.alt-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Warranty Box */
.warranty-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #d4af37;
    margin: 30px 0;
}

.warranty-box h4 {
    color: #1a1547;
    margin-top: 0;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.guarantee-item {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid #d4af37;
    transition: all 0.3s;
}

.guarantee-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.guarantee-item i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
    display: block;
}

.guarantee-item h5 {
    color: #1a1547;
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.guarantee-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.warranty-note {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    border-left: 3px solid #ffc107;
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.legal-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1547 0%, #2d1b69 100%);
    position: relative;
    overflow: hidden;
}

.legal-cta-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.legal-cta-section .cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.legal-cta-section h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 800;
}

.legal-cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #c19a2e);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c19a2e, #d4af37);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1a1547;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 992px) {
    .legal-content {
        padding: 40px 35px;
    }

    .usage-grid,
    .contact-grid,
    .refund-stages,
    .refund-reasons,
    .alternatives-grid,
    .guarantee-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .legal-page-hero {
        padding: 120px 0 60px;
    }

    .legal-page-hero .hero-title {
        font-size: 2.5rem;
    }

    .legal-content {
        padding: 30px 25px;
    }

    .content-section h2 {
        font-size: 1.6rem;
    }

    .company-info-box {
        grid-template-columns: 1fr;
        padding: 25px;
    }

    .usage-grid,
    .contact-grid,
    .security-grid,
    .refund-stages,
    .refund-reasons,
    .alternatives-grid,
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .legal-cta-section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .retention-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .legal-page-hero .hero-title {
        font-size: 2rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-content {
        padding: 25px 20px;
    }

    .content-section h2 {
        font-size: 1.4rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .content-section h2 .section-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .acknowledgment-box {
        padding: 30px 25px;
    }

    .acknowledgment-box h3 {
        font-size: 1.5rem;
        flex-direction: column;
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */

@media print {

    .legal-page-hero,
    .legal-cta-section,
    .btn,
    .cta-buttons {
        display: none;
    }

    .legal-content {
        box-shadow: none;
        padding: 0;
    }

    .company-info-box {
        border: 1px solid #000;
        page-break-inside: avoid;
    }

    .content-section {
        page-break-inside: avoid;
    }
}

/* =================================================================
   PRODUCT DETAIL PAGE - STANDALONE STYLES
   ThemeForest/Envato Inspired Design
   Uses existing CSS variables from main style.css
   ================================================================= */

/* ===== BREADCRUMB NAVIGATION ===== */
.breadcrumb-container {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-nav a:hover {
    color: var(--primary-gold);
}

.breadcrumb-nav .separator {
    color: #ccc;
    font-size: 0.8rem;
}

.breadcrumb-nav .current {
    color: var(--primary-navy);
    font-weight: 500;
}

/* ===== MAIN PRODUCT LAYOUT ===== */
.product-detail-section {
    padding: 60px 0;
    background: #ffffff;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: start;
}

.product-left-col {
    position: relative;
}

/* ===== PRODUCT IMAGE SECTION ===== */
.product-image-section {
    margin-bottom: 40px;
}

.main-product-image {
    position: relative;
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid #e9ecef;
}

.product-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.product-placeholder {
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #adb5bd;
}

.product-placeholder i {
    font-size: 5rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.product-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* ===== PRODUCT BADGES ===== */
.discount-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: white;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* ===== QUICK INFO GRID ===== */
.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.info-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.info-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.info-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* ===== PRODUCT TABS ===== */
.product-tabs-section {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid #f8f9fa;
    background: #fafbfc;
}

.tab-btn {
    flex: 1;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn:hover {
    color: var(--primary-navy);
    background: rgba(212, 175, 55, 0.05);
}

.tab-btn.active {
    color: var(--primary-navy);
    background: #ffffff;
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tabs-content {
    padding: 35px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeInTab 0.4s ease;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== TAB CONTENT STYLES ===== */
.description-content {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

.description-content h1,
.description-content h2,
.description-content h3 {
    color: var(--primary-navy);
    margin-top: 30px;
    margin-bottom: 15px;
}

.description-content p {
    margin-bottom: 15px;
}

.description-content ul,
.description-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.description-content li {
    margin-bottom: 10px;
}

.features-list h3 {
    color: var(--primary-navy);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.feature-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-items li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-size: 1rem;
}

.feature-items li:last-child {
    border-bottom: none;
}

.feature-items i {
    color: #28a745;
    font-size: 1.1rem;
}

/* ===== PRODUCT TAGS ===== */
.product-tags-section {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.product-tags-section h4 {
    color: var(--primary-navy);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-tag {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: var(--text-dark);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.product-tag:hover {
    background: var(--primary-gold);
    color: white;
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    max-width: 100%;
}

.reviews-summary {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
}

.rating-overview {
    text-align: center;
}

.rating-score .score-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    display: block;
    line-height: 1;
}

.stars {
    margin: 10px 0;
    font-size: 1.5rem;
    color: #ffc107;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.review-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 15px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 1.05rem;
}

.review-stars {
    color: #ffc107;
    font-size: 0.9rem;
    margin-top: 5px;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

/* ===== STICKY PURCHASE CARD ===== */
.product-right-col {
    position: relative;
}

.purchase-card-sticky {
    position: sticky;
    top: 100px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.purchase-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.product-title {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 700;
}

.product-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== PRICE SECTION ===== */
.price-section {
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-bottom: 1px solid #e9ecef;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.price-current {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1;
}

.price-original {
    font-size: 1.4rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.save-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.price-note i {
    color: var(--primary-gold);
}

/* ===== ACTION BUTTONS ===== */
.action-buttons {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-add-cart,
.btn-buy-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-add-cart {
    background: var(--bg-gold-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-add-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e8c547, var(--primary-gold));
    color: white;
}

.btn-buy-now {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    color: white;
    box-shadow: 0 4px 15px rgba(26, 21, 71, 0.3);
}

.btn-buy-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 21, 71, 0.4);
    color: white;
}

/* ===== SECURE PAYMENT NOTICE ===== */
.secure-payment-notice {
    padding: 15px 30px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #2e7d32;
    font-size: 0.9rem;
    font-weight: 600;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.secure-payment-notice i {
    font-size: 1.1rem;
}

/* ===== WHAT'S INCLUDED ===== */
.whats-included {
    padding: 25px 30px;
    border-bottom: 1px solid #e9ecef;
}

.section-title {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 18px;
    font-weight: 700;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.included-list i {
    color: #28a745;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===== PRODUCT META ===== */
.product-meta {
    padding: 25px 30px;
    border-bottom: 1px solid #e9ecef;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.meta-item:last-child {
    border-bottom: none;
}

.meta-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-label i {
    color: var(--primary-gold);
    width: 18px;
    text-align: center;
}

.meta-value {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    padding: 25px 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    border-bottom: 1px solid #e9ecef;
}

.trust-badge {
    text-align: center;
    padding: 15px 10px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.trust-badge i {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.trust-badge span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* ===== SHARE SECTION ===== */
.share-section {
    padding: 25px 30px;
}

.share-title {
    font-size: 1rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    color: white;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

/* ===== FEATURES HIGHLIGHTS SECTION ===== */
.features-highlights-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.highlight-card {
    background: white;
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.highlight-card h3 {
    color: var(--primary-navy);
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.highlight-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: var(--radius-lg);
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDownFAQ 0.3s ease;
}

@keyframes slideDownFAQ {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 300px;
    }
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.faq-question i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.faq-question h4 {
    color: var(--primary-navy);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.5;
}

.faq-answer {
    display: none;
    margin-top: 15px;
    padding-left: 42px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-gold);
    font-size: 2rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .product-layout {
        grid-template-columns: 1fr 380px;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .purchase-card-sticky {
        position: static;
    }

    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 40px 0;
    }

    .quick-info-grid {
        grid-template-columns: 1fr;
    }

    .tabs-header {
        flex-direction: column;
    }

    .tab-btn {
        border-bottom: 1px solid #f0f0f0;
    }

    .tab-btn:last-child {
        border-bottom: none;
    }

    .tabs-content {
        padding: 25px 20px;
    }

    .purchase-header,
    .price-section,
    .action-buttons,
    .whats-included,
    .product-meta,
    .trust-badges,
    .share-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .price-current {
        font-size: 2.2rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .breadcrumb-nav {
        font-size: 0.85rem;
    }

    .product-title {
        font-size: 1.3rem;
    }

    .price-current {
        font-size: 2rem;
    }

    .info-card {
        padding: 15px;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .share-buttons {
        justify-content: center;
    }
}

/* Footer Branding Alignment Fix */
.footer-column.info-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-wrapper {
    margin: 0 auto 20px auto;
    display: inline-block;
}

.footer-description {
    text-align: center;
    margin-bottom: 25px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.footer-social-icons {
    justify-content: center;
    margin-top: 5px;
    width: 100%;
    display: flex;
}