/* PROFESSIONAL MOBILE REPAIR - SOPHISTICATED THEME */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #334155;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Professional Utility Classes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.btn-full {
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #1e40af, #3b82f6, #60a5fa);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
}

/* PROFESSIONAL HEADER - CLEAN & SOPHISTICATED */
.top-info-bar {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(30, 41, 59, 0.3);
}

.info-items {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    padding: 0.2rem 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.info-item i {
    width: 1rem;
    height: 1rem;
}


/* PROFESSIONAL NAVIGATION - GLASS MORPHISM */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.nav-link:hover,
.nav-link.active {
    color: #1e40af;
    background: rgba(30, 64, 175, 0.08);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #1e40af;
    border-radius: 50%;
}

.mobile-menu-btn {
    display: none;
}

/* Professional Page System */
.page {
    display: none;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    min-height: 100vh;
    border-radius: 15px 15px 0 0;
    margin-top: 0.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.page.active {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

/* PROFESSIONAL HERO SECTION - CLEAN DESIGN */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    margin-bottom: 1rem;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(59, 130, 246, 0.25) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    color: white;
    max-width: 32rem;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
}

.hero-text .subtitle {
    font-size: 1.25rem;
    color: #fbbf24;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-text .description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 3;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 1rem;
}

.next-btn {
    right: 1rem;
}

.slider-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.indicator {
    width: 0.75rem;
    height: 0.75rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s;
}

.indicator.active {
    background: #fbbf24;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Professional Page Heroes */
.page-hero {
    color: white;
    padding: 6rem 0 4rem;
    margin-bottom: 3rem;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
    border-radius: 0 0 20px 20px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.3) 0%, rgba(59, 130, 246, 0.4) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.page-hero p {
    font-size: 1.5rem;
    text-align: center;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

#about .page-hero {
    background-image: url('https://i.pinimg.com/736x/5b/81/82/5b8182cfcc7adaf5e941d649be2b6725.jpg');
    min-height: 600px;
}

#contact .page-hero {
    background-image: url('https://i.pinimg.com/736x/ed/5c/c0/ed5cc02dd1b99a6cc805a0570977a313.jpg');
    min-height: 600px;
}

/* Professional Device Section */
.device-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    margin: 1rem 0;
}

.device-grid.five-devices {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.device-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    height: 200px;
    border: 2px solid transparent;
}

.device-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.2);
    border: 2px solid rgba(30, 64, 175, 0.3);
}

.device-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.device-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.device-card:hover .device-image img {
    transform: scale(1.05);
}

.device-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 64, 175, 0.9), transparent);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.device-card:hover .device-overlay {
    transform: translateY(0);
}

.device-name {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.device-count {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.device-card.selected {
    border: 3px solid #1e40af;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

/* Enhanced Brands Section with Logo Images */
.brands-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.brand-logo-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.brand-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.brand-logo-card:hover::before {
    left: 100%;
}

.brand-logo-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.brand-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-logo::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-logo-card:hover .brand-logo::after {
    opacity: 1;
}

.brand-logo-card:hover .brand-logo {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
}

.brand-icon {
    width: 40px;
    height: 40px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.brand-logo-card:hover .brand-icon {
    filter: grayscale(0%) brightness(0) invert(1);
    transform: scale(1.1);
}

.brand-name {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    transition: all 0.3s ease;
    display: block;
}

.brand-logo-card:hover .brand-name {
    color: #3b82f6;
    transform: translateY(-2px);
}

.brand-logo-card.selected {
    background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
    border-color: #3b82f6;
    transform: translateY(-8px) scale(1.05);
}

.brand-logo-card.selected .brand-logo {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.brand-logo-card.selected .brand-icon {
    filter: brightness(0) invert(1);
}

.brand-logo-card.selected .brand-name {
    color: white;
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .brand-logo-card {
        padding: 1.5rem 0.75rem;
    }
    
    .brand-logo {
        width: 60px;
        height: 60px;
    }
    
    .brand-icon {
        width: 30px;
        height: 30px;
    }
    
    .brand-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Professional Issues Section - CHANGED TO BLUE SHADES */
.issues-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    margin: 1rem 0;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.issue-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.2s;
    border-left: 4px solid #3b82f6;
}

.issue-card:hover {
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
    transform: translateY(-3px);
}

.issue-icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 0.75rem;
    border-radius: 50%;
    color: #1e40af;
    flex-shrink: 0;
}

.issue-content h3 {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.issue-content p {
    color: #64748b;
}

/* PROFESSIONAL HOW IT WORKS - WITH SUBTLE COLOR EFFECT */
.how-it-works-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    margin: 1rem 0;
}

.steps-grid.three-by-two {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* SUBTLE COLOR EFFECT ON HOVER */
.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.03) 0%, rgba(59, 130, 246, 0.05) 100%);
    transition: left 0.5s ease;
    z-index: 1;
}

.step-card:hover::before {
    left: 0;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
    border: 1px solid rgba(30, 64, 175, 0.2);
}

.step-number {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    position: relative;
    z-index: 2;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.step-card p {
    color: #64748b;
    position: relative;
    z-index: 2;
}

/* Professional Quote Section */
.quote-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 50%, #f0f9ff 100%);
    border-radius: 20px;
    margin: 1rem 0;
}

.quote-form-container {
    max-width: 64rem;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
    border: 2px solid rgba(30, 64, 175, 0.1);
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.2s;
    background: #fefefe;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.other-popup {
    display: none;
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    animation: slideDown 0.3s ease-out;
}

.other-popup.show {
    display: block;
}

.other-input,
.other-textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    padding: 0.5rem;
    font-size: 0.875rem;
}

.other-textarea {
    min-height: 80px;
    resize: vertical;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.other-message {
    display: none;
    font-size: 0.875rem;
    color: #1e40af;
    margin-top: 0.5rem;
}

.other-message.show {
    display: block;
}

/* PROFESSIONAL WHY CHOOSE - WITH LOADING EFFECT */
.why-choose-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    margin: 1rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

/* LOADING EFFECT ON HOVER */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1e40af, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
    transform: translateY(-5px);
    border: 1px solid rgba(30, 64, 175, 0.2);
}

.feature-icon {
    padding: 1rem;
    border-radius: 50%;
    width: fit-content;
    margin: 0 auto 1rem;
    transition: all 0.3s;
    position: relative;
    z-index: 3;
}

/* Professional colors for each card */
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #059669;
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #6366f1;
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #16a34a;
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    color: #ec4899;
}

.feature-card:nth-child(7) .feature-icon {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
}

.feature-card:nth-child(8) .feature-icon {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    color: #7c3aed;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 3;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    position: relative;
    z-index: 3;
}

/* Professional Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    margin: 1rem 0;
}

.reviews-slider-container {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1.5rem;
}

.review-card {
    background: white;
    padding: 1.25rem;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
    transition: all 0.2s;
    width: 320px;
    height: 350px;
    flex-shrink: 0;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 320px;
    max-width: 320px;
    min-height: 350px;
    max-height: 350px;
    overflow: hidden;
    border-top: 3px solid #1e40af;
}

.review-card:hover {
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
    transform: translateY(-3px);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
    height: 28px;
    overflow: hidden;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.star {
    color: #fbbf24;
    font-size: 1.1rem;
    font-style: normal;
}

.reviewer-name {
    font-weight: 600;
    font-size: 1rem;
    color: #1e40af;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-text {
    color: #64748b;
    margin-bottom: 0.75rem;
    height: 60px;
    font-size: 0.9rem;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    hyphens: auto;
}

.before-after {
    margin-bottom: 0.75rem;
    flex-shrink: 0;
    height: 160px;
}

.image-pair {
    display: flex;
    gap: 1rem;
    height: 100%;
    justify-content: center;
}

.image-pair div {
    text-align: center;
    flex: 1;
}

.image-pair p {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    height: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 500;
}

.image-pair img {
    width: 6rem;
    height: 6rem;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
    transition: all 0.2s ease;
}

.review-card:hover .image-pair img {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.25);
}

.device-badge {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #374151;
    padding: 0.4rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    width: fit-content;
    margin: 0 auto;
    flex-shrink: 0;
    height: 28px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    font-weight: 500;
}

.review-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border: none;
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 3;
    font-size: 0.9rem;
}

.review-slider-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    transform: translateY(-50%) scale(1.05);
}

.prev-review-btn {
    left: 1rem;
}

.next-review-btn {
    right: 1rem;
}

.review-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.review-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border: none;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s;
}

.review-indicator.active {
    background: #1e40af;
    transform: scale(1.1);
}

/* Professional FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    margin: 1rem 0;
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(30, 64, 175, 0.2);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: white;
    transition: all 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.faq-question:hover {
    background: rgba(30, 64, 175, 0.05);
}

.faq-question span {
    font-weight: 600;
    color: #0f172a;
}

.faq-question i {
    color: #1e40af;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    background: #f8fafc;
    color: #64748b;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1rem 1.5rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Professional Contact Section */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    border-radius: 20px;
    margin: 1rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-item i {
    color: #fbbf24;
    width: 1.5rem;
    height: 1.5rem;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Professional About Us Styles */
.about-section {
    margin-bottom: 4rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #64748b;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
}

.stat-item:hover {
    border-color: #60a5fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.875rem;
}

.story-section {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2rem;
    border-radius: 20px;
}

.story-section h2 {
    font-size: 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
    margin-bottom: 2rem;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: #64748b;
    line-height: 1.7;
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
    transition: all 0.2s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.15);
}

.feature-item i {
    color: #1e40af;
    background: rgba(30, 64, 175, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.875rem;
    color: #64748b;
}

.values-section {
    margin-bottom: 4rem;
}

.values-section h2 {
    font-size: 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
    transition: all 0.3s;
}

.value-card:hover {
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
    transform: translateY(-5px);
}

.value-icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 1rem;
    border-radius: 50%;
    width: fit-content;
    margin: 0 auto 1rem;
    color: #1e40af;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

.why-choose-about {
    margin-bottom: 4rem;
}

.why-choose-about h2 {
    font-size: 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 3rem;
}

.choose-grid {
    display: grid;
    gap: 2rem;
}

.choose-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
    transition: all 0.3s;
}

.choose-item:hover {
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
    transform: translateY(-3px);
}

.choose-item i {
    color: #1e40af;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.choose-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Professional Contact Page Styles */
.contact-info-section {
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details h2 {
    font-size: 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.contact-details p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 15px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
}

.contact-method:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    transform: translateX(5px);
}

.method-icon {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.method-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.method-content p {
    font-size: 1rem;
    color: #1e40af;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.method-content span {
    font-size: 0.875rem;
    color: #64748b;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.1);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s;
}

.contact-form textarea:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.map-section {
    margin-bottom: 4rem;
}

.map-section h2 {
    font-size: 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 2rem;
}

.map-container-large {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
}

.hours-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 3rem;
    border-radius: 20px;
}

.hours-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.hours-info h2 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
}

.day {
    font-weight: 500;
    color: #0f172a;
}

.time {
    color: #1e40af;
    font-weight: 500;
}

.emergency-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
}

.emergency-note i {
    color: #f59e0b;
    margin-top: 0.125rem;
}

.emergency-note p {
    color: #92400e;
    font-size: 0.875rem;
}

.quick-actions h3 {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.call-btn {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: white;
}

.call-btn:hover {
    background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #22c55e 100%);
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: translateY(-2px);
}

.quote-btn {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.quote-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    transform: translateY(-2px);
}

/* Professional Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    border-radius: 20px 20px 0 0;
    margin-top: 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #fbbf24;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.2s;
}

.social-links a:hover {
    background: #1e40af;
    transform: scale(1.1);
}

.social-links i {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
}

.social-links a:hover i {
    color: white;
}

.footer-section .contact-item {
    margin-bottom: 0.75rem;
}

.footer-section .hours {
    color: #d1d5db;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
}

/* Professional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Professional Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        gap: 1.5rem;
    }
    
    .steps-grid.three-by-two {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        background-attachment: scroll;
        padding: 4rem 0 3rem;
        min-height: 400px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1.25rem;
    }
    
    .page-hero .container {
        min-height: 300px;
    }
    
    #about .page-hero,
    #contact .page-hero {
        min-height: 450px;
    }
    
    .info-items {
        justify-content: center;
        text-align: center;
        gap: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        cursor: pointer;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .quote-form {
        grid-template-columns: 1fr;
    }
    
    .image-pair {
        flex-direction: column;
        align-items: center;
    }
    
    .device-grid.five-devices {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .device-card {
        height: 150px;
    }
    
    .device-section {
        padding: 1.5rem 0;
    }
    
    .steps-grid.three-by-two {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hours-content {
        grid-template-columns: 1fr;
    }
    
    .choose-item {
        flex-direction: column;
        text-align: center;
    }
    
    .review-card {
        width: 280px;
        height: 320px;
        min-width: 280px;
        max-width: 280px;
        min-height: 320px;
        max-height: 320px;
        padding: 1.125rem;
    }
    
    .reviews-slider {
        gap: 1.25rem;
    }
    
    .image-pair img {
        width: 5rem;
        height: 5rem;
    }
    
    .review-text {
        height: 55px;
        -webkit-line-clamp: 3;
    }
    
    .before-after {
        height: 135px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 3rem 0 2rem;
        min-height: 350px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1.125rem;
    }
    
    .page-hero .container {
        min-height: 250px;
    }
    
    #about .page-hero,
    #contact .page-hero {
        min-height: 400px;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .device-grid.five-devices {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .device-card {
        height: 120px;
    }
    
    .device-name {
        font-size: 0.95rem;
    }
    
    .device-count {
        font-size: 0.8rem;
    }
    
    .device-section {
        padding: 1rem 0;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .action-buttons {
        gap: 0.75rem;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .review-card {
        width: 260px;
        height: 310px;
        min-width: 260px;
        max-width: 260px;
        min-height: 310px;
        max-height: 310px;
        padding: 1rem;
    }
    
    .image-pair img {
        width: 4.5rem;
        height: 4.5rem;
    }
    
    .review-text {
        font-size: 0.85rem;
        height: 50px;
        -webkit-line-clamp: 3;
    }
    
    .reviewer-name {
        font-size: 0.9rem;
    }
    
    .before-after {
        height: 125px;
    }
    
    .reviews-slider {
        gap: 1rem;
    }
}
/* Top Header */
.top-header {
    background: #2c3e50;
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-info i {
    color: #3498db;
    font-size: 0.85rem;
}

/* Main Navigation */
.navbar {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    display: block;
}

.logo:hover {
    color: #3498db;
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #3498db;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        padding-top: 50px;
        gap: 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu a {
        padding: 20px;
        font-size: 1.1rem;
        width: 100%;
        display: block;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .top-header-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .top-header {
        display: none;
    }
    
    .logo {
        font-size: 1.8rem;
    }
}
/* FAQ Styling */
.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question span {
    font-weight: 600;
    color: #2c3e50;
}

.faq-answer {
    padding: 0 20px;
    background: #f8f9fa;
    color: #666;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
}

[data-lucide="chevron-down"] {
    transition: transform 0.3s ease;
    color: #3498db;
}

/* MOBILE REVIEWS SECTION FIX */
@media (max-width: 768px) {
    
    /* Reviews container */
    .reviews-section {
        padding: 60px 20px !important;
        background: #f8f9fa !important;
    }
    
    /* Hide slider controls on mobile */
    .review-slider-btn,
    .review-indicators {
        display: none !important;
    }
    
    /* Reviews slider - show all cards */
    .reviews-slider {
        display: block !important;
        position: static !important;
        transform: none !important;
        overflow: visible !important;
        height: auto !important;
    }
    
    /* Individual review cards */
    .review-card {
        display: block !important;
        width: 90% !important;
        max-width: 350px !important;
        margin: 0 auto 40px auto !important;
        padding: 30px 25px !important;
        background: white !important;
        border-radius: 15px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Review header */
    .review-header {
        display: block !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    
    /* Stars */
    .stars {
        display: block !important;
        font-size: 20px !important;
        color: #ffd700 !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }
    
    .star {
        color: #ffd700 !important;
        font-size: 20px !important;
    }
    
    /* Reviewer name */
    .reviewer-name {
        display: block !important;
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        color: #3498db !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }
    
    /* Review text */
    .review-text {
        display: block !important;
        font-size: 1rem !important;
        line-height: 1.6 !important;
        color: #666 !important;
        margin-bottom: 30px !important;
        text-align: center !important;
        padding: 0 10px !important;
    }
    
    /* Before/After section */
    .before-after {
        margin: 25px 0 !important;
        display: block !important;
    }
    
    /* Image pair - horizontal layout */
    .image-pair {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        align-items: flex-start !important;
        gap: 25px !important;
        padding: 0 15px !important;
        width: 100% !important;
    }
    
    /* Make sure both image containers are visible */
    .image-pair > div {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        flex: 1 !important;
        max-width: 45% !important;
        text-align: center !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Ensure both Before/After labels show */
    .image-pair > div > p {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        color: #666 !important;
        margin-bottom: 12px !important;
        text-align: center !important;
        display: block !important;
        visibility: visible !important;
    }
    
    /* Make sure both images display */
    .image-pair img {
        width: 120px !important;
        height: 120px !important;
        border-radius: 12px !important;
        object-fit: cover !important;
        border: 2px solid #e0e0e0 !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Force the second div (After) to show */
    .image-pair > div:nth-child(2) {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Force the After image to show */
    .image-pair > div:nth-child(2) img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Force the After label to show */
    .image-pair > div:nth-child(2) p {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Device badge */
    .device-badge {
        display: block !important;
        margin-top: 25px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #2c3e50 !important;
        background: #f8f9fa !important;
        padding: 12px 20px !important;
        border-radius: 25px !important;
        text-align: center !important;
        border: 1px solid #e0e0e0 !important;
    }
    
    /* Section header */
    .section-header {
        text-align: center !important;
        margin-bottom: 40px !important;
    }
    
    .section-header h2 {
        font-size: 2.2rem !important;
        margin-bottom: 15px !important;
        color: #2c3e50 !important;
    }
    
    .section-header p {
        font-size: 1.1rem !important;
        color: #666 !important;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .image-pair img {
        width: 100px !important;
        height: 100px !important;
    }
    
    .image-pair {
        gap: 20px !important;
    }
}

/*to be removed if the text icon is changed to images*/
/* Oppo, Vivo, Realme - Black Text that turns White on Hover */

/* OPPO - Normal: Black, Hover: White */
.brand-logo-card[data-brand="Oppo"] .text-icon {
    color: #000000 !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    letter-spacing: 0.5px !important;
}

.brand-logo-card[data-brand="Oppo"]:hover .text-icon {
    color: #ffffff !important;  /* WHITE on hover */
    font-weight: 900 !important;
    transform: scale(1.1) !important;
}

/* VIVO - Normal: Black, Hover: White */
.brand-logo-card[data-brand="Vivo"] .text-icon {
    color: #000000 !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    letter-spacing: 0.5px !important;
}

.brand-logo-card[data-brand="Vivo"]:hover .text-icon {
    color: #ffffff !important;  /* WHITE on hover */
    font-weight: 900 !important;
    transform: scale(1.1) !important;
}

/* REALME - Normal: Black, Hover: White */
.brand-logo-card[data-brand="Realme"] .text-icon {
    color: #000000 !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    letter-spacing: 0.5px !important;
}

.brand-logo-card[data-brand="Realme"]:hover .text-icon {
    color: #ffffff !important;  /* WHITE on hover */
    font-weight: 900 !important;
    transform: scale(1.1) !important;
}

/* Background styling for all three */
.brand-logo-card[data-brand="Oppo"] .brand-logo,
.brand-logo-card[data-brand="Vivo"] .brand-logo,
.brand-logo-card[data-brand="Realme"] .brand-logo {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border: 2px solid #dee2e6 !important;
}

.brand-logo-card[data-brand="Oppo"]:hover .brand-logo,
.brand-logo-card[data-brand="Vivo"]:hover .brand-logo,
.brand-logo-card[data-brand="Realme"]:hover .brand-logo {
    background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%) !important;
    border: 2px solid #3b82f6 !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
}

@media (max-width: 767px) {
  body,
  html {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .gallery-sidebar {
    display: none !important;
    position: fixed !important;
    left: -9999px !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
    visibility: hidden !important;
  }
  .gallery-wrapper {
    overflow-x: hidden !important;
  }
}
