/* 
 * Megabre - Creative Solutions at the Peak
 * Custom CSS - 2025 Modern Design
 */

:root {
    /* Main Colors */
    --primary: #212b43;
    --primary-light: #2D4A8A;
    --primary-dark: #212b43;
    --secondary: #4F95DA;
    --secondary-light: #70B0F5;
    --secondary-dark: #3577BC;
    --accent: #FF8A00;
    --accent-light: #FFA233;
    --accent-dark: #E67A00;
    
    /* Background Colors */
    --bg-light: #FAFAFA;
    --bg-dark: #121926;
    --bg-gray: #F4F7FB;
    
    /* Text Colors */
    --text-dark: #202B3D;
    --text-gray: #5A6A85;
    --text-light: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-accent: linear-gradient(135deg, var(--accent), #FF5E62);
    --gradient-dark: linear-gradient(135deg, var(--primary-dark), var(--bg-dark));
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    
    /* Borders */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    
    /* Transitions */
    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.5s ease;
    --transition-slow: all 0.8s ease;
}

/* =========== GENERAL STYLES =========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: #FFFFFF;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--accent);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-gray {
    background-color: var(--bg-gray);
}

.section-divider {
    height: 5px;
    width: 80px;
    background: var(--gradient-primary);
    margin: 0 auto 2rem;
    border-radius: 5px;
}

/* =========== BUTTONS =========== */
.btn {
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    text-transform: capitalize;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-light);
}

.btn-primary:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
}

.btn-accent {
    background: var(--gradient-accent);
    border: none;
    color: var(--text-light);
}

.btn-accent:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.btn-light {
    background: var(--text-light);
    border: none;
    color: var(--primary);
}

.btn-light:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.875rem;
}

/* =========== NAVBAR =========== */
.navbar {
    padding: 1.2rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand img.logo {
    height: 40px;
    transition: var(--transition-fast);
}

.navbar.scrolled .navbar-brand img.logo {
    height: 35px;
}

.navbar-nav .nav-item {
    margin: 0 0.5rem;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
    width: 30px;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Language Dropdown */
.lang-dropdown .nav-link {
    display: flex;
    align-items: center;
}

.lang-flag {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    border-radius: 2px;
    object-fit: cover;
}

.lang-text {
    font-size: 0.9rem;
}

.customer-btn {
    margin-left: 0.5rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    text-transform: none;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-md);
    padding: 0.5rem 0;
    min-width: 12rem;
}

.dropdown-item {
    padding: 0.6rem 1.5rem;
    font-weight: 500;
}

.dropdown-item.active, 
.dropdown-item:active,
.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

.dropdown-item .lang-flag {
    margin-right: 10px;
}

/* =========== HERO SECTION =========== */
.hero-section {
    padding: 180px 0 100px;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-title span {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Hero Shapes */
.hero-shape {
    position: absolute;
    z-index: 1;
}

.hero-shape-1 {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(79, 149, 218, 0.1);
    border-radius: 50%;
}

.hero-shape-2 {
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: rgba(255, 138, 0, 0.05);
    border-radius: 50%;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-slider .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Terminal Code Box */
.terminal-code {
    background-color: var(--bg-dark);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 400px;
    position: relative;
    z-index: 2;
}

.terminal-header {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    display: flex;
    align-items: center;
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background-color: #FF5F56; }
.dot-yellow { background-color: #FFBD2E; }
.dot-green { background-color: #27C93F; }

.terminal-title {
    color: var(--text-light);
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    opacity: 0.7;
}

.terminal-body {
    padding: 20px;
    height: calc(100% - 48px);
    overflow-y: auto;
    font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #A9B7C6;
}

.terminal-line {
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s forwards;
}

.terminal-prompt {
    color: #6A8759;
    font-weight: bold;
    margin-right: 8px;
}

.terminal-command {
    color: #CC7832;
}

.terminal-param {
    color: #6A8759;
}

.terminal-result {
    color: #A9B7C6;
    padding-left: 20px;
}

/* =========== SERVICES SECTION =========== */
.services-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-primary);
    transition: var(--transition-medium);
    z-index: -1;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition-medium);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--text-light);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-desc {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

/* Featured Service Cards */
.featured-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 5px solid var(--accent);
}

.featured-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 138, 0, 0.05);
    border-radius: 50%;
    z-index: -1;
    transition: var(--transition-medium);
}

.featured-card:hover::after {
    width: 200px;
    height: 200px;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--text-light);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--border-radius-xl);
    text-transform: uppercase;
}

/* =========== WHY CHOOSE US SECTION =========== */
.why-choose-section {
    padding: 100px 0;
    background-color: var(--bg-gray);
    position: relative;
    overflow: hidden;
}

.feature-box {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 30px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition-medium);
    position: relative;
    z-index: 1;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: var(--transition-medium);
}

.feature-box:hover .feature-icon {
    color: var(--text-light);
}

.feature-box:hover .feature-icon::before {
    opacity: 1;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--text-gray);
}

/* =========== STATS SECTION =========== */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/pattern.png');
    background-size: cover;
    opacity: 0.1;
}

.stat-card {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--text-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.stat-text {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
}

/* =========== TESTIMONIALS SECTION =========== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 30px;
    margin: 15px;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.2;
    font-family: 'Georgia', serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-gray);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--bg-light);
}

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

.testimonial-author-info h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author-info p {
    font-size: 0.9rem;
    color: var(--accent);
    margin: 0;
}

/* References Slider */
.reference-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    margin: 15px;
    padding: 15px;
    transition: var(--transition-fast);
}

.reference-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.reference-logo img {
    max-width: 80%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition-fast);
    opacity: 0.7;
}

.reference-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* =========== PARTNERS SECTION =========== */
.partners-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.partners-slider .swiper-slide {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    max-width: 120px;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-fast);
}

.partners-slider .swiper-slide:hover .partner-logo {
    filter: grayscale(0);
    opacity: 1;
}

/* =========== RECENT CONTENT SECTION =========== */
.recent-content {
    padding: 100px 0;
    background-color: var(--bg-gray);
    position: relative;
    overflow: hidden;
}

.content-box {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    overflow: hidden;
    transition: var(--transition-fast);
}

.content-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.content-header {
    background-color: var(--primary-light);
    padding: 15px 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.code-dots {
    display: flex;
    gap: 6px;
}

.content-title {
    color: var(--text-light);
    margin-left: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.content-body {
    padding: 0;
}

.content-items {
    max-height: 350px;
    overflow-y: auto;
}

.content-item {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.content-item:hover {
    background-color: var(--bg-light);
}

.content-item a {
    color: var(--text-dark);
    text-decoration: none;
}

.content-item-date {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.content-footer {
    padding: 15px 20px;
    text-align: center;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* =========== CTA SECTION =========== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/pattern.png');
    background-size: cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* =========== FOOTER =========== */
.footer {
    background-color: #333a47;
    color: var(--text-light);
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-logo img {
    height: 50px;
}

.footer-desc {
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--accent);
    color: var(--text-light);
    transform: translateY(-5px);
}

.footer-widget-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

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

.footer-contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact-info i {
    color: var(--accent);
    font-size: 1rem;
    margin-right: 15px;
    margin-top: 5px;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

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

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* =========== BACK TO TOP BUTTON =========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    color: var(--text-light);
}

/* =========== ANIMATIONS =========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate__fadeInUp {
    animation-delay: 0.3s;
}

.terminal-line:nth-child(1) { animation-delay: 0.2s; }
.terminal-line:nth-child(2) { animation-delay: 0.5s; }
.terminal-line:nth-child(3) { animation-delay: 0.8s; }
.terminal-line:nth-child(4) { animation-delay: 1.1s; }
.terminal-line:nth-child(5) { animation-delay: 1.4s; }
.terminal-line:nth-child(6) { animation-delay: 1.7s; }
.terminal-line:nth-child(7) { animation-delay: 2.0s; }
.terminal-line:nth-child(8) { animation-delay: 2.3s; }
.terminal-line:nth-child(9) { animation-delay: 2.6s; }
.terminal-line:nth-child(10) { animation-delay: 2.9s; }

/* =========== ABOUT PAGE =========== */
.page-header {
    padding: 150px 0 80px;
    background: var(--gradient-primary);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/pattern.png');
    background-size: cover;
    opacity: 0.1;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
    padding: 0;
    justify-content: center;
    margin-top: 1.5rem;
}

.breadcrumb-item, 
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: var(--text-light);
}

/* About Content */
.about-section {
    padding: 100px 0;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mission-vision-box {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 30px;
    height: 100%;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mission-vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    z-index: -1;
}

.mission-vision-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mission-vision-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Timeline */
.timeline-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--primary-light);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 15px;
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content {
    float: left;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content {
    float: right;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.timeline-desc {
    color: var(--text-gray);
}

/* Team Section */
.team-section {
    padding: 100px 0;
}

.team-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-fast);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    transition: var(--transition-medium);
}

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

.team-social {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: var(--transition-fast);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.team-social a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-position {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* =========== CONTACT PAGE =========== */
.contact-section {
    padding: 100px 0;
}

.contact-form {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
    height: 100%;
}

.contact-form-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

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

.form-control {
    height: 50px;
    border-radius: var(--border-radius-md);
    border: 1px solid #e0e0e0;
    padding: 10px 20px;
    transition: var(--transition-fast);
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

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

.contact-info {
    background-color: var(--primary);
    color: var(--text-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 100%;
    position: relative;
}

.contact-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/pattern.png');
    background-size: cover;
    opacity: 0.1;
}

.contact-info-content {
    position: relative;
    z-index: 1;
    padding: 40px;
}

.contact-info-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--accent);
    font-size: 1.2rem;
}

.contact-info-text h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-info-text p,
.contact-info-text a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-info-text a:hover {
    color: var(--accent);
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 50px;
}

/* =========== RESPONSIVE STYLES =========== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-btns {
        flex-wrap: wrap;
    }
    
    .hero-slider .swiper-slide img {
        height: 350px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-icon {
        left: 20px;
        transform: translateX(0);
    }
    
    .timeline-content {
        width: calc(100% - 70px);
        float: right !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -10px;
        right: auto;
    }
    
    .contact-info {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-slider .swiper-slide img {
        height: 300px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .service-card,
    .feature-box {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-text {
        font-size: 0.9rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-desc {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .contact-form,
    .contact-info-content {
        padding: 30px 20px;
    }
}

@media (max-width: 575px) {
    .navbar-brand img.logo {
        height: 35px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-year {
        font-size: 1.3rem;
    }
    
    .timeline-title {
        font-size: 1.1rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
}

/* =========== PRODUCTS PAGE STYLES =========== */
.product-filter {
    padding: 20px 0;
}

.product-filter .nav-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.product-filter .nav-link {
    padding: 8px 20px;
    border-radius: var(--border-radius-xl);
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-fast);
}

.product-filter .nav-link.active,
.product-filter .nav-link:hover {
    background: var(--gradient-primary);
    color: var(--text-light);
}

.product-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-medium);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.product-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: var(--transition-fast);
}

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

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-category {
    margin-bottom: 15px;
}

.product-desc {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.product-price {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.product-price span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.product-actions {
    display: flex;
    gap: 10px;
}

/* =========== PRODUCT DETAIL PAGE STYLES =========== */
.product-detail-main {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 30px;
    margin-bottom: 30px;
}

.product-gallery-main {
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.product-gallery-thumbs .swiper-slide {
    opacity: 0.5;
    transition: var(--transition-fast);
    cursor: pointer;
}

.product-gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.pricing-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.pricing-header {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 20px 25px;
}

.pricing-title {
    margin: 0;
    font-size: 1.5rem;
}

.pricing-body {
    padding: 25px;
}

.pricing-plan {
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
}

.featured-plan {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-sm);
}

.ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 30px;
    transform: rotate(45deg);
}

.plan-header {
    text-align: center;
    margin-bottom: 20px;
}

.plan-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.plan-price {
    margin-bottom: 15px;
}

.plan-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.plan-price .period {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.plan-features {
    margin-bottom: 20px;
}

.plan-features li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.plan-action .btn-block {
    width: 100%;
}

.product-actions-card,
.support-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.btn-block {
    display: block;
    width: 100%;
}

.related-products {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 25px;
}

.sidebar-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.related-product-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.related-product-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-product-img {
    flex: 0 0 60px;
    margin-right: 15px;
}

.related-product-img img {
    border-radius: var(--border-radius-sm);
}

.related-product-info h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.related-product-info .product-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.how-it-works .timeline {
    position: relative;
    padding: 20px 0;
}

.how-it-works .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background: var(--primary-light);
}

.how-it-works .timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.how-it-works .timeline-item:last-child {
    margin-bottom: 0;
}

.how-it-works .timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    z-index: 1;
}

.how-it-works .timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.highlight {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--accent);
}

.highlight h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.highlight h4 i {
    margin-right: 10px;
    color: var(--accent);
}

/* Responsive styles for product pages */
@media (max-width: 991px) {
    .product-detail-main {
        padding: 20px;
    }
    
    .product-sidebar {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .product-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0 0 10px 0 !important;
    }
}

/* =========== PRODUCTS PAGE STYLES =========== */
.product-filter {
    padding: 20px 0;
}

.product-filter .nav-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.product-filter .nav-link {
    padding: 8px 20px;
    border-radius: var(--border-radius-xl);
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-fast);
}

.product-filter .nav-link.active,
.product-filter .nav-link:hover {
    background: var(--gradient-primary);
    color: var(--text-light);
}

.product-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-medium);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.product-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: var(--transition-fast);
}

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

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-category {
    margin-bottom: 15px;
}

.product-desc {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.product-price {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.product-price span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.product-actions {
    display: flex;
    gap: 10px;
}

/* =========== PRODUCT DETAIL PAGE STYLES =========== */
.product-detail-main {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 30px;
    margin-bottom: 30px;
}

.product-gallery-main {
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.product-gallery-thumbs .swiper-slide {
    opacity: 0.5;
    transition: var(--transition-fast);
    cursor: pointer;
}

.product-gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.pricing-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.pricing-header {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 20px 25px;
}

.pricing-title {
    margin: 0;
    font-size: 1.5rem;
}

.pricing-body {
    padding: 25px;
}

.pricing-plan {
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
}

.featured-plan {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-sm);
}

.ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 30px;
    transform: rotate(45deg);
}

.plan-header {
    text-align: center;
    margin-bottom: 20px;
}

.plan-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.plan-price {
    margin-bottom: 15px;
}

.plan-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.plan-price .period {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.plan-features {
    margin-bottom: 20px;
}

.plan-features li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.plan-action .btn-block {
    width: 100%;
}

.product-actions-card,
.support-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.btn-block {
    display: block;
    width: 100%;
}

.related-products {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 25px;
}

.sidebar-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.related-product-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.related-product-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-product-img {
    flex: 0 0 60px;
    margin-right: 15px;
}

.related-product-img img {
    border-radius: var(--border-radius-sm);
}

.related-product-info h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.related-product-info .product-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.how-it-works .timeline {
    position: relative;
    padding: 20px 0;
}

.how-it-works .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background: var(--primary-light);
}

.how-it-works .timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.how-it-works .timeline-item:last-child {
    margin-bottom: 0;
}

.how-it-works .timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    z-index: 1;
}

.how-it-works .timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.highlight {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--accent);
}

.highlight h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.highlight h4 i {
    margin-right: 10px;
    color: var(--accent);
}

/* Responsive styles for product pages */
@media (max-width: 991px) {
    .product-detail-main {
        padding: 20px;
    }
    
    .product-sidebar {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .product-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0 0 10px 0 !important;
    }
}