:root {
    /* Color Palette - Apple Minimalist Light */
    --bg-color: #ffffff;
    --bg-secondary: #f5f5f7;
    --text-color: #1d1d1f;
    --text-muted: #86868b;
    --primary-color: #0071e3;
    /* Apple Blue */
    --primary-hover: #0077ed;
    --accent-color: #0071e3;
    --border-color: #d2d2d7;
    --success-color: #34c759;
    --danger-color: #ff3b30;
    --star-color: #f5a623;

    /* Spacing & Radius */
    --radius-md: 12px;
    --radius-lg: 20px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --section-spacing: 100px;
    /* Adjusted for better flow */

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.glass-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.glass-header.header-hidden {
    transform: translateY(-100%);
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-image {
    height: 70px;
    width: auto;
    display: block;
    mix-blend-mode: darken;
    filter: contrast(1.2);
}

.logo-slogan {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    padding-left: 12px;
    border-left: 1px solid var(--border-color);
    line-height: 1.2;
}

@media (max-width: 600px) {
    .logo-image {
        height: 45px;
    }

    .logo-slogan {
        display: none;
    }

    /* Adjust header for mobile - smaller spacing */
    .glass-header {
        padding: 10px 12px;
    }

    /* Instagram banner mobile adjustments */
    .instagram-banner {
        padding: 6px 0;
    }

    .instagram-banner-link {
        font-size: 0.85rem;
    }

    /* Push navigation to the right with margin */
    nav {
        gap: 8px;
        margin-left: auto;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 0;
    }

    .btn-primary {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Centered Instagram between logo and nav */
.header-instagram-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: rgba(228, 64, 95, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.header-instagram-center:hover {
    background: rgba(228, 64, 95, 0.2);
    transform: scale(1.1);
}

.instagram-center-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* Instagram Banner Below Header */
.instagram-banner {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.03) 100%);
    padding: 8px 0;
    text-align: center;
    position: relative;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.instagram-banner-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.instagram-banner-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: invert(30%) sepia(80%) saturate(1500%) hue-rotate(320deg) brightness(90%);
}

.instagram-banner-link:hover {
    transform: scale(1.05);
    color: #c4305a;
}

.instagram-banner-link:hover .instagram-banner-icon {
    filter: invert(20%) sepia(90%) saturate(1800%) hue-rotate(320deg) brightness(80%);
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    font-weight: 400;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--text-color);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 980px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: scale(1.02);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 980px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    background-color: rgba(0, 113, 227, 0.05);
}

.btn-large {
    font-size: 1.1rem;
    padding: 14px 28px;
}

.btn-danger {
    background-color: var(--danger-color);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
}

.btn-success {
    background-color: var(--success-color);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
}

/* Main Content */
main {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Sections General */
section {
    padding: var(--section-spacing) 0;
    /* opacity: 0; REMOVED for stability */
    /* transform: translateY(40px); REMOVED for stability */
    /* transition: opacity 0.8s ease-out, transform 0.8s ease-out; */
}

section.visible-scroll {
    opacity: 1;
    transform: translateY(0);
}

.hidden-section {
    display: none !important;
}

/* Landing Page */
#landing-section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding-top: 40px;
    padding-bottom: 60px;
}

/* Hero Container - Two Column Layout */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

/* Hero Content (Left Side) */
.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.1;
}

.hero-subtitle-main {
    font-size: 1.3rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Opening Hours Card */
.opening-hours {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    border-left: 4px solid var(--primary-color);
}

.opening-hours h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.opening-hours p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 6px;
    line-height: 1.5;
}

.opening-hours p:last-child {
    margin-bottom: 0;
}

/* Contact Buttons */
.hero-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-color);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.btn-phone {
    background: linear-gradient(135deg, #34c759 0%, #30d158 100%);
    color: white;
    border: none;
}

.btn-email {
    background: var(--bg-secondary);
}

/* Hero CTA */
.hero-cta {
    margin-top: 16px;
    width: 100%;
    text-align: center;
}

/* Hero Image (Right Side) */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}


/* Services & Features Section */
#services-features-section {
    padding: 80px 0;
}

/* Services Grid (Device Icons) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 16px;
    transition: var(--transition-fast);
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

/* iPad icon - make it wider to differentiate from iPhone */
.service-icon.ipad-icon {
    transform: scaleX(1.3);
    display: inline-block;
}

.service-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

/* Features Banner (Benefits Row) */
.features-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.feature-badge {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: var(--text-color);
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}


/* SEO Content Section */
#seo-content-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.seo-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.seo-container h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--text-color);
}

.seo-container p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.seo-container h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--text-color);
}

.seo-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.seo-list li {
    position: relative;
    padding-left: 24px;
    font-size: 1.05rem;
    color: var(--text-color);
}

.seo-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .seo-list {
        grid-template-columns: 1fr;
    }
}

/* Service Categories Grid */
.service-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.category-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.category-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.category-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.4;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.category-card .btn-small {
    padding: 6px 18px;
    font-size: 0.85rem;
    background: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-fast);
}

.category-card .btn-small:hover {
    background: var(--primary-color);
}

@media (max-width: 900px) {
    .service-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .service-categories-grid {
        grid-template-columns: 1fr;
    }
}


/* Courier Delivery Section */
#courier-section {
    padding: 100px 0;
}

.courier-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Courier Info (Left Side) */
.courier-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 700;
}

.courier-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.courier-subtitle strong {
    color: var(--text-color);
}

/* How It Works Box */
.how-it-works {
    background: white;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.how-it-works h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-color);
}

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

.steps-list li {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.5;
}

.steps-list li:last-child {
    margin-bottom: 0;
}

/* Benefits Badges */
.courier-benefits {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.benefit-badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 980px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Tagline */
.courier-tagline {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
    font-style: italic;
}

/* Courier Form (Right Side) */
.courier-form-container {
    position: sticky;
    top: 100px;
}

#courier-form h3 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
}


/* About Us - New Image + Text Layout */
.about-container-new {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    color: var(--text-color);
    line-height: 1.2;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-content p strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Contact Box Centering */
.contact-box {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-secondary);
    border-radius: 12px;
    text-align: center;
    /* Centered text */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centered items */
}



/* Devices We Repair Section */
#devices-section {
    background: var(--bg-secondary);
}

.devices-container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.devices-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    color: var(--text-color);
    line-height: 1.2;
}

.devices-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.devices-list {
    display: grid;
    gap: 25px;
}

.device-item {
    background: transparent;
    padding: 10px 0;
    border-radius: 0;
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
    padding-left: 20px;
}

.device-item:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
}

.device-item h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 600;
}

.device-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.devices-images {
    display: grid;
    gap: 30px;
}

.devices-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.devices-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Pricing Section */

.pricing-container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    color: var(--text-color);
    line-height: 1.3;
}

.pricing-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.pricing-categories {
    display: grid;
    gap: 15px;
}

.price-category {
    background: white;
    padding: 25px;
    border-radius: 12px;
    transition: var(--transition-fast);
    border-top: 3px solid transparent;
}

.price-category:hover {
    border-top-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.price-category h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-color);
    font-weight: 600;
}

.price-category p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.pricing-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Comparison Section */
#comparison-section {
    background: var(--bg-secondary);
}

.comparison-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    color: var(--text-color);
    line-height: 1.3;
}

.comparison-intro {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.comparison-intro strong {
    color: var(--text-color);
    font-weight: 600;
}

.comparison-features {
    display: grid;
    gap: 18px;
    margin: 30px 0;
}

.comparison-feature {
    background: transparent;
    padding: 10px 0;
    /* Reduced padding since no card bg */
    border-radius: 0;
    transition: var(--transition-fast);
    border-left: 3px solid var(--primary-color);
    /* Always show accent line? Or keep transparent? User didn't specify, but usually lists look good with accent. Let's keep the hover effect or make it static? Original was transparent border. Let's keep it transparent but maybe add it on hover. */
    border-left: 3px solid transparent;
    padding-left: 20px;
    /* Keep indentation */
}

.comparison-feature:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    /* Removed box-shadow as it looks bad on transparent bg */
}

.comparison-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 600;
}

.comparison-feature p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.comparison-conclusion {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 20px;
}

.comparison-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.comparison-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Shipping Repair Section */

.shipping-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.shipping-content {
    max-width: 600px;
}

.shipping-content h2 {
    font-size: 1.9rem;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    color: var(--text-color);
    line-height: 1.3;
}

.shipping-content h3 {
    font-size: 1.3rem;
    margin: 30px 0 20px;
    color: var(--text-color);
    font-weight: 600;
}

.shipping-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.shipping-benefits {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.shipping-benefits li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.shipping-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.shipping-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.shipping-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Data Security Section */
#data-security-section {
    background: var(--bg-secondary);
}

.data-security-container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.data-security-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    color: var(--text-color);
    line-height: 1.3;
}

.data-security-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.data-security-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.data-security-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.data-security-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.data-security-conclusion {
    margin-top: 30px;
}

.data-security-conclusion strong {
    color: var(--text-color);
    font-weight: 600;
}

.data-security-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.data-security-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.data-security-image:hover img {
    transform: scale(1.05);
}

/* Reviews - Grid Layout */
#reviews-section {
    text-align: center;
}

#reviews-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    text-align: left;
}

.review-card {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: var(--star-color);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.review-author {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.review-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.add-review-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

/* Form Section - Centered */
#form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.form-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    /* Explicit centering */
}

.glass-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
}

input,
select,
textarea {
    width: 100%;
    padding: 14px;
    background: var(--bg-secondary);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

/* Success Section */
#success-section {
    display: none;
    text-align: center;
    padding: 100px 0;
}

.success-card {
    max-width: 500px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px;
}

/* Admin Sections */
#admin-login-section,
#admin-dashboard-section {
    display: none;
    min-height: 60vh;
}

.active-admin-section {
    display: block !important;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Admin Styles Reuse */
.admin-login-container {
    text-align: center;
    max-width: 360px;
    margin: 60px auto;
}

.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    background: var(--bg-secondary);
    padding: 5px;
    border-radius: 980px;
    width: fit-content;
}

.admin-tab-btn {
    background: transparent;
    border: none;
    padding: 10px 30px;
    border-radius: 980px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.admin-tab-btn.active {
    background: white;
    color: var(--text-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.request-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
    margin-top: auto;
}

/* Instagram Button in Footer */
.footer-instagram-section {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: white;
    border: 2px solid #E1E8ED;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.instagram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #E4405F;
}

.instagram-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    object-fit: contain;
}

.instagram-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.instagram-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.01em;
}

.instagram-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Header Instagram Icon */
.instagram-header-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(228, 64, 95, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.instagram-header-link:hover {
    background: rgba(228, 64, 95, 0.2);
    transform: translateY(-1px);
}

.instagram-header-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Star Rating */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 28px;
    color: var(--border-color);
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating input:checked~label,
.star-rating label:hover,
.star-rating label:hover~label {
    color: var(--star-color);
}

/* Responsive */
@media (max-width: 900px) {
    .about-container-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
        /* Image stays on top */
    }

    .about-content h2 {
        font-size: 1.75rem;
    }

    .devices-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .devices-images {
        order: 2;
        /* Images go to bottom */
        gap: 20px;
        /* Smaller gap on mobile */
    }

    .devices-content h2 {
        font-size: 1.75rem;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-image {
        order: 2;
        /* Image goes to bottom */
    }

    .pricing-content h2 {
        font-size: 1.75rem;
    }

    .comparison-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comparison-image {
        order: 2;
        /* Image goes to bottom */
    }

    .comparison-content h2 {
        font-size: 1.75rem;
    }

    .shipping-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .shipping-image {
        order: -1;
        /* Image stays on top */
    }

    .shipping-content {
        max-width: 100%;
    }

    .shipping-content h2 {
        font-size: 1.75rem;
    }

    .data-security-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .data-security-image {
        order: 2;
        /* Image goes to bottom */
    }

    .data-security-content h2 {
        font-size: 1.75rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    /* Hero Container - Stack on tablet */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
        /* Move image above content on mobile */
    }

    .hero-image img {
        max-width: 400px;
    }

    /* Services Grid - 3 columns on tablet */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Features Banner - 2 columns on tablet */
    .features-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
    }

    /* Courier Section - Stack on tablet */
    .courier-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .courier-form-container {
        position: static;
    }
}

@media (max-width: 768px) {
    .glass-header {
        padding: 16px 20px;
    }

    main {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle-main {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .glass-card {
        padding: 24px;
        box-shadow: none;
        border: none;
        background: transparent;
    }

    .form-actions {
        flex-direction: column-reverse;
    }

    .btn-secondary,
    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .request-card {
        flex-direction: column;
        gap: 16px;
    }

    .nav-link {
        margin-right: 12px;
        font-size: 0.85rem;
    }

    .hero-icons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-image img {
        max-width: 100%;
    }

    .hero-container {
        gap: 30px;
    }

    /* Services Grid - 2 columns on mobile */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-item {
        padding: 15px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-item h3 {
        font-size: 0.85rem;
    }

    /* Features Banner - 1 column on mobile */
    .features-banner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .feature-badge {
        padding: 15px;
        background: var(--bg-secondary);
        border-radius: 12px;
    }

    /* Courier Section - Mobile adjustments */
    .courier-info h2 {
        font-size: 2rem;
    }

    .courier-subtitle {
        font-size: 1rem;
    }

    .how-it-works {
        padding: 20px;
    }

    .courier-benefits {
        gap: 8px;
    }

    .benefit-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
}

/* --- Service Page Styles --- */

/* Service Hero */
.service-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Configurator Section */
.configurator-section {
    padding: 60px 0;
    background: white;
}

.configurator-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    text-align: center;
}

.configurator-container h2 {
    margin-bottom: 30px;
}

.model-select-group {
    margin-bottom: 30px;
}

.model-select-group select {
    width: 100%;
    max-width: 400px;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #f9f9f9;
}

.price-display-box {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: none;
    /* Hidden by default */
}

.price-display-box.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

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

/* Pricing Table */
.pricing-table-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.pricing-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-table th,
.pricing-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background: #f4f4f4;
    font-weight: 600;
    color: var(--text-color);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover {
    background: #f9f9f9;
}

.price-col {
    font-weight: 700;
    color: var(--primary-color);
    text-align: right !important;
}

/* Combined Contact & Form Section */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-info-side {
    position: sticky;
    top: 100px;
}

.contact-info-side .contact-box {
    text-align: left;
    padding: 40px;
    height: 100%;
    margin-top: 0;
    display: block;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

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

.contact-icon-small {
    font-size: 1.5rem;
    background: var(--bg-secondary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-link {
    font-size: 1.05rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--primary-color);
}

.contact-text {
    font-size: 1.05rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
}

/* Update Form Container for Grid Context */
.contact-form-wrapper .form-container {
    margin: 0;
    /* Reset auto margin */
    max-width: 100%;
}

/* Responsive for Contact Form */
@media (max-width: 900px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-side {
        position: static;
        order: 0;
    }

    .contact-info-side .contact-box {
        padding: 30px;
    }
}

/* Configurator Styles */
.configurator-container {
    max-width: 900px;
    margin: 0 auto;
}

.config-step {
    margin-bottom: 40px;
}

.config-step h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-color);
}

.device-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.device-btn {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.device-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.15);
}

.device-btn.selected {
    border-color: var(--primary-color);
    background: rgba(0, 113, 227, 0.05);
}

.device-btn .device-icon {
    font-size: 2.5rem;
}

.device-btn span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-select {
    width: 100%;
    padding: 14px;
    background: var(--bg-secondary);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.config-results {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.result-box {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.result-box h3 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-display,
.time-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

@media (max-width: 768px) {
    .device-selector {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .device-btn {
        padding: 16px;
    }

    .device-btn .device-icon {
        font-size: 2rem;
    }
}

/* Order Page Styles */
.order-container {
    max-width: 900px;
    margin: 0 auto;
}

.order-summary-box {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.order-summary-box h3 {
    margin-bottom: 16px;
    color: var(--text-color);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.summary-value {
    font-weight: 600;
    color: var(--text-color);
    text-align: right;
}

.delivery-selection {
    margin: 30px 0;
}

.delivery-selection h3 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.delivery-options {
    display: grid;
    gap: 16px;
}

.delivery-option {
    cursor: pointer;
}

.delivery-option input[type="radio"] {
    display: none;
}

.delivery-card {
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-fast);
    background: white;
}

.delivery-option input:checked+.delivery-card {
    border-color: var(--primary-color);
    background: rgba(0, 113, 227, 0.05);
}

.delivery-card:hover {
    border-color: var(--primary-color);
}

.delivery-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.delivery-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.delivery-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.express-selection {
    margin: 30px 0;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.express-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.express-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.express-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#order-success-section {
    padding: 100px 20px;
}

@media (max-width: 768px) {
    .summary-item {
        flex-direction: column;
        gap: 4px;
    }

    .summary-value {
        text-align: left;
    }
}
/* MacBook Page Specific Styles - Premium Light Theme */
.macbook-layout-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px 0;
}

.macbook-column-left {
    flex: 1;
    min-width: 300px;
}

.macbook-column-right {
    flex: 2;
    min-width: 300px;
}

/* Premium List Styling */
.premium-list ul {
    list-style: none;
    padding: 0;
}

.premium-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.5;
}

.premium-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1em;
}

/* Premium FAQ Box */
.premium-faq {
    background: #f9f9fb; /* Slightly off-white for distinction */
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.06);
}

.premium-faq-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.premium-faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.premium-faq-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--text-color); /* Dark text */
}

.premium-faq-item span {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Premium Service Cards */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.premium-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06); /* Soft premium shadow */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border-color: rgba(0, 113, 227, 0.3);
}

.premium-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-color);
    font-weight: 600;
}

.premium-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.premium-card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.premium-card-link:hover {
    gap: 10px;
}

@media (max-width: 900px) {
    .macbook-layout-container {
        flex-direction: column;
    }
}
