/* ===== CSS Variables ===== */
:root {
    /* Apple Bright Orange & Copper Theme */
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --primary-light: #FF8C5A;
    --secondary: #B87333;
    --accent: #D4A574;
    --copper: #C67D4A;
    --wood: #8B5A2B;
    --gold: #DAA520;

    /* Light Mode Colors */
    --bg-primary: #FFFBF7;
    --bg-secondary: #FFF5EB;
    --bg-card: #FFFFFF;
    --bg-gradient: linear-gradient(135deg, #FFFBF7 0%, #FFF0E5 50%, #FFE8D6 100%);

    /* Text Colors */
    --text: #2D1810;
    --text-secondary: #5D4037;
    --text-muted: #8D6E63;

    /* Borders & Shadows */
    --border: rgba(139, 90, 43, 0.15);
    --shadow-sm: 0 2px 10px rgba(139, 90, 43, 0.08);
    --shadow-md: 0 10px 40px rgba(139, 90, 43, 0.12);
    --shadow-lg: 0 20px 60px rgba(139, 90, 43, 0.15);

    /* Status Colors */
    --success: #4CAF50;
    --warning: #FF9800;
    --danger: #F44336;
    --whatsapp: #25D366;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 50%, #FFB088 100%);
    --gradient-copper: linear-gradient(135deg, #B87333 0%, #D4A574 100%);
    --gradient-warm: linear-gradient(135deg, #FF6B35 0%, #B87333 100%);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.35);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-light {
    background: white;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* ===== Topbar ===== */
.topbar {
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.topbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.topbar-item:hover {
    color: var(--primary-light);
}

.topbar-item i {
    color: var(--primary);
}

.topbar-center {
    display: flex;
    align-items: center;
}

.topbar-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
}

.topbar-badge i {
    color: var(--primary);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar-social {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.topbar-social:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Topbar responsive */
@media (max-width: 1024px) {
    .topbar-item span {
        display: none;
    }

    .topbar-left {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    box-shadow: 0 4px 30px rgba(139, 90, 43, 0.08);
}

@media (max-width: 768px) {
    .navbar {
        top: 0;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
}

.logo-img {
    height: 42px;
    width: auto;
}

.logo i {
    font-size: 1.8rem;
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links>li>a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-links>li:hover>a i {
    transform: rotate(180deg);
}

.nav-links>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links>li>a:hover::after,
.nav-links>li>a.active::after {
    width: 100%;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
    color: var(--primary);
}

/* Homepage Transparent Styles */
.home-page .navbar {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.home-page .nav-links>li>a {
    color: rgba(255, 255, 255, 0.9);
}

.home-page .nav-links>li>a:hover,
.home-page .nav-links>li>a.active {
    color: var(--primary);
}

.home-page .mobile-menu-btn {
    color: white;
}

/* Homepage Scrolled Navbar State */
.home-page .navbar.scrolled {
    background: #ffffff !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12) !important;
}

.home-page .navbar.scrolled .nav-links>li>a {
    color: #1a1a1a !important;
    font-weight: 500;
}

.home-page .navbar.scrolled .nav-links>li>a:hover,
.home-page .navbar.scrolled .nav-links>li>a.active {
    color: var(--primary) !important;
}

.home-page .navbar.scrolled .mobile-menu-btn {
    color: #1a1a1a !important;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 15px;
    padding: 15px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(139, 90, 43, 0.15);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding-left: 30px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--whatsapp);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-animation::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.hero-bg-animation::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-left: 5%;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.phone-mockup {
    width: 300px;
    height: 400px;
    background: linear-gradient(145deg, #FFFFFF 0%, #FFF5EB 100%);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 107, 53, 0.2);
    box-shadow: var(--shadow-lg);
    animation: phoneFloat 6s ease-in-out infinite;
}

.phone-mockup i {
    font-size: 5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Services Section ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.service-tag {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== How We Work ===== */
.how-we-work {
    background: var(--bg-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1) rotate(10deg);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.step-card[data-step="1"] .step-icon {
    color: var(--primary);
}

.step-card[data-step="2"] .step-icon {
    color: var(--danger);
}

.step-card[data-step="3"] .step-icon {
    color: var(--warning);
}

.step-card[data-step="4"] .step-icon {
    color: var(--success);
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Why Us Section ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--gradient-warm);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 30px;
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #1e1e1e 0%, #1e1e1e 100%);
    padding: 80px 0 30px;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
}

.footer-logo i {
    font-size: 1.8rem;
    color: var(--primary);
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact ul li {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 3px;
}

/* Footer Trust Badges */
.footer-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 30px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.trust-badge img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.trust-badge:hover img {
    opacity: 1;
    filter: none;
}

.trust-badge-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.trust-badge-text i {
    color: var(--primary-light);
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .footer-trust-badges {
        flex-direction: column;
        gap: 20px;
    }

    .trust-badge-text {
        text-align: center;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== Page Header ===== */
.page-header {
    padding: 200px 0 80px;
    /* extra 50px for topbar */
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.08) 0%, transparent 100%);
}

@media (max-width: 768px) {
    .page-header {
        padding: 130px 0 60px;
        /* topbar hidden on mobile */
    }
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Services Full Page ===== */
.services-full {
    padding: 60px 0 100px;
}

.service-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: var(--primary);
}

.services-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.service-card-full {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.service-card-full:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon-full {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card-full:hover .service-icon-full {
    background: var(--gradient-primary);
    color: white;
}

.service-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.service-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.service-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.service-tag.success {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.service-tag.primary {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
}

.service-tag.warning {
    background: rgba(249, 115, 22, 0.1);
    color: var(--warning);
}

.service-tag.danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

/* ===== About Page ===== */
.about-content {
    padding: 60px 0 100px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-stat {
    text-align: center;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.about-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.about-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* About Gallery */
.about-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.about-gallery-item.large {
    grid-column: span 2;
}

.about-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-gallery-item.large img {
    height: 250px;
}

.about-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-gallery-item.large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .about-image img {
        height: 300px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-gallery {
        grid-template-columns: 1fr;
    }

    .about-gallery-item.large {
        grid-column: span 1;
    }

    .about-gallery-item img,
    .about-gallery-item.large img {
        height: 200px;
    }
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 60px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.contact-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-info a {
    color: var(--primary);
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary);
}

.contact-map {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: var(--shadow-sm);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== FAQ Page ===== */
.faq-section {
    padding: 60px 0 100px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px 25px;
    color: var(--text-muted);
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== Gallery Page ===== */
.gallery-section {
    padding: 60px 0 100px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    height: 250px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.gallery-caption {
    padding: 20px;
    text-align: center;
}

.gallery-caption h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.gallery-caption p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== iPhone Models Page ===== */
.models-section {
    padding: 60px 0 100px;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.model-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.model-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.model-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.model-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.model-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.model-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.model-btn:hover {
    background: var(--gradient-primary);
    color: white;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid rgba(255, 107, 53, 0.15);
        box-shadow: 0 20px 40px rgba(139, 90, 43, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-cta span {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .phone-mockup {
        width: 200px;
        height: 280px;
    }

    .phone-mockup i {
        font-size: 3rem;
    }
}

/* ===== Slider System ===== */
.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-slide {
    min-width: 100%;
    flex-shrink: 0;
}

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--text);
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.slider-nav:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: var(--primary-light);
}

/* ===== Hero Slider ===== */
.hero-slider {
    min-height: 100vh;
    padding-top: 132px;
    /* navbar (80px) + topbar (52px) */
}

.hero-slider .slider-wrapper {
    height: 100%;
    display: flex;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.hero-slider .slider-slide {
    min-height: calc(100vh - 132px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(255, 240, 229, 0.5) 100%);
}

.home-page .hero-slider {
    padding-top: 0;
}

.home-page .hero-slider .slider-slide {
    height: 100vh;
    min-height: 800px;
    padding-top: 132px;
    background: linear-gradient(135deg,
            rgba(10, 10, 10, 0.94) 0%,
            rgba(25, 25, 25, 0.85) 60%,
            rgba(230, 90, 40, 0.15) 100%),
        url('../images/about-us/1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.home-page .hero-slider .slider-slide::before {
    display: none;
}

.home-page .hero-slider .hero-slide-inner {
    position: relative;
    z-index: 2;
}

.home-page .hero-slider .hero-slide-content h1,
.home-page .hero-slider .hero-slide-content p {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.home-page .hero-slider .hero-slide-content h1 {
    color: white;
}

.home-page .hero-slider .hero-slide-content p {
    color: rgba(255, 255, 255, 0.95);
}

.home-page .hero-slider .hero-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.home-page .hero-slider .hero-bg-animation {
    display: none;
}

/* Premium Hero Stats Styles */
.home-page .hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 45px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.home-page .hero-stats .stat-item {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 16px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.home-page .hero-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.home-page .hero-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.home-page .hero-stats .stat-number {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    font-family: 'Outfit', sans-serif;
}

.home-page .hero-stats .stat-label {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.home-page .hero-stats .stat-divider {
    display: none !important;
}

.hero-slider .hero-bg-animation {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slider .hero-bg-animation::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.hero-slider .hero-bg-animation::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 12s ease-in-out infinite reverse;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 800px;
    padding: 60px 20px;
    animation: fadeInUp 0.8s ease;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 25px;
}

.hero-slide-content .hero-badge i {
    font-size: 1rem;
}

.hero-slide-content .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-slide-content .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-slide-content .hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 0 30px 0;
    line-height: 1.7;
}

.hero-slide-content .hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-slide-content .hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-slide-content .stat-item {
    text-align: center;
}

.hero-slide-content .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-slide-content .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-slide-content .stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Slide Inner Layout */
.hero-slide-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
}

.hero-slide-inner .hero-slide-content {
    flex: 1;
    text-align: left;
    padding: 0;
    animation: none;
}

.hero-slide-inner .hero-buttons {
    justify-content: flex-start;
}

.hero-slide-inner .hero-stats {
    justify-content: flex-start;
}

/* Hero Slide Image */
.hero-slide-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-image img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Hero Image Placeholder */
.hero-image-placeholder {
    width: 350px;
    height: 450px;
    background: var(--gradient-primary);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: floatImage 4s ease-in-out infinite;
}

.hero-image-placeholder i {
    font-size: 8rem;
    color: white;
    opacity: 0.9;
}

/* Hero Slider Navigation */
.hero-slider .slider-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-slider .slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
}

/* Hero Slider Responsive */
@media (max-width: 1024px) {
    .hero-slide-inner {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
        text-align: center;
    }

    .hero-slide-inner .hero-slide-content {
        text-align: center;
    }

    .hero-slide-inner .hero-buttons {
        justify-content: center;
    }

    .hero-slide-inner .hero-stats {
        justify-content: center;
    }

    .hero-slide-image {
        order: -1;
    }

    .hero-image-placeholder {
        width: 250px;
        height: 320px;
    }

    .hero-image-placeholder i {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {

    /* Hero Slider Container */
    .hero-slider {
        padding-top: 70px;
        min-height: auto;
        overflow: hidden !important;
    }

    .hero-slider .slider-slide {
        min-height: auto;
        padding: 20px 0 30px;
        overflow: hidden !important;
    }

    /* Hero Slide Inner - Column Layout - CRITICAL FIXES */
    .hero-slide-inner {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 0 15px !important;
        text-align: center !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    /* Image First on Mobile */
    .hero-slide-image {
        order: -1 !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        padding: 0 !important;
        flex: none !important;
    }

    .hero-slide-image img {
        max-height: 180px !important;
        max-width: 220px !important;
        width: auto;
        height: auto;
        border-radius: 20px;
        margin: 0 auto;
        display: block;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* Content Section - CRITICAL */
    .hero-slide-inner .hero-slide-content {
        text-align: center !important;
        order: 1 !important;
        padding: 0 10px !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
        flex: none !important;
        box-sizing: border-box !important;
    }

    .hero-slide-content {
        padding: 10px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Badge */
    .hero-slide-content .hero-badge {
        padding: 6px 14px;
        font-size: 0.75rem;
        margin-bottom: 10px;
        display: inline-flex;
    }

    .hero-slide-content .hero-badge i {
        font-size: 0.8rem;
    }

    /* Title - CRITICAL: Prevent text overflow */
    .hero-slide-content .hero-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .hero-slide-content .hero-title br {
        display: none !important;
    }

    .hero-slide-content .gradient-text {
        display: inline;
    }

    /* Description */
    .hero-slide-content .hero-description {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        padding: 0 5px !important;
        margin-bottom: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Buttons */
    .hero-slide-content .hero-buttons {
        gap: 8px !important;
        margin-bottom: 15px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .hero-slide-inner .hero-buttons {
        justify-content: center !important;
    }

    .hero-slide-content .hero-buttons .btn {
        padding: 10px 16px !important;
        font-size: 0.8rem !important;
    }

    /* Stats - Horizontal layout */
    .hero-slide-content .hero-stats {
        gap: 10px !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        flex-direction: row !important;
        width: 100% !important;
    }

    .hero-slide-inner .hero-stats {
        justify-content: center !important;
    }

    .hero-slide-content .stat-item {
        text-align: center;
    }

    .hero-slide-content .stat-number {
        font-size: 1rem !important;
    }

    .hero-slide-content .stat-label {
        font-size: 0.65rem !important;
    }

    .hero-slide-content .stat-divider {
        height: 20px;
        width: 1px;
    }

    /* Slider Navigation - Hide on mobile */
    .hero-slider .slider-nav {
        display: none !important;
    }

    .hero-slider .slider-prev {
        display: none !important;
    }

    .hero-slider .slider-next {
        display: none !important;
    }

    /* Slider Dots */
    .hero-slider .slider-dots {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 10px;
        padding-bottom: 5px;
    }

    .hero-slider .slider-dot {
        width: 8px;
        height: 8px;
    }

    /* Image Placeholder */
    .hero-image-placeholder {
        width: 160px;
        height: 200px;
    }

    .hero-image-placeholder i {
        font-size: 3rem;
    }
}

/* Extra small screens (iPhone SE, etc) */
@media (max-width: 400px) {
    .hero-slide-content .hero-title {
        font-size: 1.4rem;
    }

    .hero-slide-image img {
        max-height: 160px;
        max-width: 200px;
    }

    .hero-slide-content .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .hero-slide-content .hero-buttons .btn {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }

    .hero-slide-content .hero-stats {
        gap: 8px;
    }

    .hero-slide-content .stat-number {
        font-size: 1rem;
    }

    .hero-slide-content .stat-label {
        font-size: 0.65rem;
    }

    .hero-slide-content .stat-divider {
        height: 20px;
    }

    .hero-slider .slider-nav {
        display: none;
    }
}

/* ===== Card Slider ===== */
.card-slider .slider-wrapper {
    gap: 20px;
}

.card-slider .slider-slide {
    min-width: calc(33.333% - 14px);
}

@media (max-width: 1024px) {
    .card-slider .slider-slide {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .card-slider .slider-slide {
        min-width: 100%;
    }
}

/* ===== Testimonial Slider ===== */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #f59e0b;
    margin-top: 15px;
    font-size: 1.2rem;
}

/* ===== Logo Slider ===== */
.logo-slider {
    padding: 20px 0;
    overflow: hidden;
}

.logo-slider .slider-wrapper {
    animation: logoSlide 20s linear infinite;
}

.logo-slider:hover .slider-wrapper {
    animation-play-state: paused;
}

.logo-slider .slider-slide {
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.logo-slider .slider-slide img {
    max-height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-slider .slider-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes logoSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== Gallery Slider ===== */
.gallery-slider .slider-slide {
    padding: 10px;
}

.gallery-slider .gallery-slide-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.gallery-slider .gallery-slide-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-slider .gallery-slide-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-slider .gallery-slide-item .caption {
    padding: 20px;
    background: var(--bg-card);
    text-align: center;
}

.gallery-slider .gallery-slide-item .caption h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.gallery-slider .gallery-slide-item .caption p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Slider Responsive */
@media (max-width: 768px) {
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .hero-slider .slide-content h2 {
        font-size: 2rem;
    }

    .hero-slider .slide-content p {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 25px;
    }
}

/* ===== Certificates Page ===== */
.certificates-section {
    padding: 60px 0 100px;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.certificate-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.certificate-image {
    position: relative;
    overflow: hidden;
}

.certificate-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.certificate-card:hover .certificate-image img {
    transform: scale(1.05);
}

.certificate-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 107, 53, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.certificate-overlay i {
    font-size: 3rem;
}

.certificate-overlay span {
    font-size: 1rem;
    font-weight: 500;
}

.certificate-card:hover .certificate-overlay {
    opacity: 1;
}

.certificate-info {
    padding: 25px;
    text-align: center;
}

.certificate-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.certificate-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-content p {
    color: white;
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .certificates-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }
}

/* ===== Gallery Overlay for About Page ===== */
.about-gallery-item {
    cursor: pointer;
    position: relative;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 107, 53, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: white;
}

.about-gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ===== iPhone Models Page ===== */
.iphone-models-section {
    padding: 60px 0 100px;
}

/* Intro Banner */
.intro-banner {
    background: var(--gradient-warm);
    border-radius: 24px;
    padding: 40px;
    margin-top: -30px;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
    gap: 30px;
}

.intro-text h2 {
    color: white;
    margin: 0 0 15px 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.intro-text h2 i {
    color: rgba(255, 255, 255, 0.9);
}

.intro-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.7;
}

.intro-img img {
    max-height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    animation: floatImage 4s ease-in-out infinite;
}

/* iPhone Models Grid */
.iphone-models-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.iphone-model-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.iphone-model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.iphone-model-card:hover::before {
    transform: scaleX(1);
}

.iphone-model-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

/* Featured card (iPhone 17) */
.iphone-model-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, #FFFBF7 0%, #FFF5EB 100%);
}

/* Air card */
.iphone-model-card.air {
    border: 2px solid #00d2ff;
}

.iphone-model-card.air:hover {
    border-color: #00d2ff;
}

/* Wide card (Diğer Modeller) */
.iphone-model-card.wide {
    grid-column: span 2;
}

/* Model Badge */
.model-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.model-badge.new {
    background: var(--gradient-primary);
    color: white;
}

.model-badge.air {
    background: linear-gradient(135deg, #00d2ff 0%, #00b4d8 100%);
    color: white;
}

/* Model Image */
.iphone-model-card .model-img {
    width: 100px;
    min-width: 100px;
    text-align: center;
}

.iphone-model-card .model-img img {
    max-height: 120px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.iphone-model-card:hover .model-img img {
    transform: scale(1.08);
}

/* Model Info */
.model-info {
    flex: 1;
}

.model-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
    display: block;
}

/* Sub Models */
.sub-models {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sub-model-link {
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: rgba(255, 107, 53, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sub-model-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* SEO Text Area */
.seo-text-area {
    padding: 40px 0;
    text-align: justify;
}

.seo-text-area p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Feature Banner Large */
.feature-banner-large {
    background: var(--gradient-warm);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.feature-banner-large .fb-content {
    max-width: 60%;
    position: relative;
    z-index: 2;
    color: white;
}

.feature-banner-large .fb-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.feature-banner-large .fb-content h3 {
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    color: white;
}

.feature-banner-large .fb-content p {
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.7;
    color: white;
}

.feature-banner-large .fb-img img {
    max-height: 200px;
    transform: rotate(-10deg);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
    animation: floatImage 4s ease-in-out infinite;
}

/* iPhone Models Responsive */
@media (max-width: 1024px) {
    .intro-banner {
        flex-direction: column;
        text-align: center;
    }

    .intro-img {
        margin-top: 20px;
    }

    .feature-banner-large {
        flex-direction: column;
        text-align: center;
    }

    .feature-banner-large .fb-content {
        max-width: 100%;
    }

    .feature-banner-large .fb-icon {
        margin: 0 auto 20px;
    }

    .feature-banner-large .fb-img {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .iphone-models-grid {
        grid-template-columns: 1fr;
    }

    .iphone-model-card.wide {
        grid-column: span 1;
    }

    .iphone-model-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .iphone-model-card .model-img {
        width: 100%;
        margin-bottom: 15px;
    }

    .sub-models {
        justify-content: center;
    }

    .intro-banner {
        margin-top: 0;
        padding: 30px 20px;
    }

    .feature-banner-large {
        padding: 30px 20px;
    }

    .feature-banner-large .fb-content h3 {
        font-size: 1.4rem;
    }

    .seo-text-area p {
        font-size: 0.9rem;
        text-align: left;
    }
}

/* ===== Device Repair Page ===== */
.device-repair-section {
    padding: 60px 0 100px;
}

/* Breadcrumb */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.breadcrumb-nav a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--primary);
}

.breadcrumb-nav span {
    color: var(--text-muted);
}

.breadcrumb-nav .current {
    color: var(--primary);
    font-weight: 500;
}

/* Repair Grid */
.repair-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: start;
}

/* Product Visual Card */
.product-visual-card {
    position: sticky;
    top: 160px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.product-visual-card:hover {
    box-shadow: var(--shadow-lg);
}

.product-visual-card .device-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.product-visual-card .product-image {
    padding: 20px;
}

.product-visual-card .product-image img {
    max-width: 200px;
    max-height: 280px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-visual-card:hover .product-image img {
    transform: scale(1.05);
}

.product-visual-card .device-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
}

.product-visual-card .device-specs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.product-visual-card .device-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255, 107, 53, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
}

.product-visual-card .device-specs i {
    color: var(--primary);
    font-size: 0.7rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Services Main */
.services-main {
    min-width: 0;
}

.service-list-header {
    margin-bottom: 30px;
}

.service-list-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin: 10px 0;
}

.service-list-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Service List */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-item {
    background: var(--bg-card);
    padding: 20px 25px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-left-color: var(--primary);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.service-item.featured {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 2px solid #f59e0b;
    border-left: 5px solid #f59e0b;
    position: relative;
    overflow: hidden;
}

.service-item.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
}

.service-item.featured .svc-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
}

.svc-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.svc-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 90, 0.1) 100%);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.svc-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.svc-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

/* Service Status Badges */
.svc-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    background: rgba(107, 114, 128, 0.1);
    color: var(--text-secondary);
}

.svc-status.stocked {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.svc-status.original {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.svc-status.health {
    background: rgba(168, 85, 247, 0.1);
    color: #9333ea;
}

.svc-status.fast {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
}

.svc-status.warranty {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.svc-status.highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #b45309;
    font-weight: 600;
    animation: pulse-highlight 2s ease-in-out infinite;
    border: 1px solid #f59e0b;
}

@keyframes pulse-highlight {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
    }
}

/* Price CTA Box */
.price-cta-box {
    background: var(--gradient-warm);
    padding: 35px;
    border-radius: 20px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: var(--shadow-lg);
}

.price-cta-box .cta-text h3 {
    margin: 0 0 8px 0;
    color: white;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-cta-box .cta-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.price-cta-box .cta-buttons {
    display: flex;
    gap: 12px;
}

.price-cta-box .btn {
    white-space: nowrap;
}

/* Other Models Section */
.other-models-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.other-models-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.other-model-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.other-model-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.other-model-card img {
    max-height: 80px;
    object-fit: contain;
}

.other-model-card span {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}

.other-model-card.all {
    background: var(--gradient-primary);
    border: none;
}

.other-model-card.all i {
    font-size: 2rem;
    color: white;
}

.other-model-card.all span {
    color: white;
}

/* Device Repair Responsive */
@media (max-width: 1024px) {
    .repair-grid {
        grid-template-columns: 1fr;
    }

    .product-visual-card {
        position: static;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .product-visual-card .product-image {
        padding: 10px;
    }

    .product-visual-card .product-image img {
        max-width: 150px;
        max-height: 200px;
    }

    .product-visual-card .product-details {
        text-align: left;
    }

    .product-visual-card .device-specs {
        justify-content: flex-start;
    }

    .product-visual-card .btn-block {
        flex-basis: 100%;
    }
}

@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 18px 20px;
    }

    .svc-status {
        align-self: flex-start;
    }

    .price-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .price-cta-box .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .price-cta-box .btn {
        width: 100%;
        justify-content: center;
    }

    .other-models-grid {
        justify-content: center;
    }

    .other-model-card {
        min-width: 120px;
        padding: 20px 15px;
    }

    .product-visual-card {
        flex-direction: column;
    }

    .product-visual-card .product-details {
        text-align: center;
    }

    .product-visual-card .device-specs {
        justify-content: center;
    }
}