/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hidden SEO Content - invisible to users, indexed by search engines */
.seo-hidden-content {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    --primary-color: #2c2c2e;
    --primary-dark: #1d1d1f;
    --primary-light: #48484a;
    --secondary-color: #1d1d1f;
    --accent-color: #ff6b35;
    --text-color: #1d1d1f;
    --text-light: #86868b;
    --bg-light: #f5f5f7;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loading {
    overflow: hidden;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c2c2e 0%, #1d1d1f 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: var(--white);
}

.loader-logo {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.022em;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transition: all 1s ease;
    transform: translateY(30px);
    /* Default fade-bottom */
}

.reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

.fade-bottom {
    transform: translateY(50px);
}

.fade-left {
    transform: translateX(-50px);
}

.fade-right {
    transform: translateX(50px);
}

.zoom-in {
    transform: scale(0.8);
}

/* Delay modifiers */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-top-bar {
    background: var(--bg-light);
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.nav-contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #000000;
    font-weight: 600;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.contact-link, .footer-contact-link, .hero-contact-link, .location-contact-link {
    text-decoration: none;
    color: inherit;
    font-weight: inherit;
    transition: color 0.3s ease;
}

.contact-link:hover, .footer-contact-link:hover, .hero-contact-link:hover, .location-contact-link:hover {
    color: var(--primary-color);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-direction: row;
}

.logo i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-top: 5px;
}

.logo-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
}

.authorized-badge {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: -3px;
    display: block;
}

.authorized-badge {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: -3px;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu .btn-primary {
    color: var(--white);
}

.nav-menu .btn-primary:hover {
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #1d1d1f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-book {
    font-weight: 600;
    padding: 10px 25px;
    font-size: 0.95rem;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-dark);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.btn-device {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

.btn-device:hover {
    background: #1d1d1f;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    margin-top: 140px;
    background: var(--white);
    color: var(--text-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: var(--white);
}

.hero-background::before {
    display: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 1rem;
    background: var(--bg-light);
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.hero-contact-item:hover {
    background: #e8e8ed;
    transform: translateY(-2px);
}

.hero-contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.highlight {
    color: var(--primary-color);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--primary-color);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Devices Section */
.devices {
    padding: 80px 0;
    background: var(--bg-light);
}

.devices h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.device-card {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}

.device-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.device-card:hover .device-image img {
    transform: scale(1.1);
}

.device-images {
    position: relative;
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    overflow: hidden;
}

.device-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.device-image.active {
    opacity: 1;
}

.device-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 2;
    animation: fadeInImage 0.8s ease forwards;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.device-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.device-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

.section-video-background {
    display: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: var(--bg-light);
    border: 1px solid #e0e0e0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-light);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.section-image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.section-image-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    z-index: 1;
}

.section-image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background: rgba(0, 0, 0, 0.6);
    /* Dark semi-transparent background */
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: rgba(0, 0, 0, 0.8);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    /* Kept primary color as requested, or can be changed */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.step-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-card p {
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.testimonial-author strong {
    color: var(--secondary-color);
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Stats */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.stats h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    padding: 30px;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.stat-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
}

/* Locations */
/* Locations with Map Background */
.locations {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #000;
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-background iframe {
    opacity: 1;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    z-index: 2;
}

.locations .container {
    position: relative;
    z-index: 3;
}

.locations-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    max-width: 500px;
    width: 100%;
    border: 1px solid rgba(255,255,255,0.3);
}

.location-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.location-area {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-details p {
    margin-bottom: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.location-details i {
    color: var(--primary-color);
    width: 20px;
}

.location-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.location-actions .btn {
    flex: 1;
    text-align: center;
    padding: 12px;
}

/* Google Reviews Section */
.google-reviews {
    padding: 100px 0;
    background: var(--bg-light);
}

.google-rating-summary {
    text-align: center;
    margin-top: -10px;
    margin-bottom: 40px;
}

.google-rating-summary .score {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
    line-height: 1;
}

.google-rating-summary .stars {
    margin: 10px 0;
    font-size: 1.5rem;
    color: #fbbc04; /* Google Yellow */
}

.google-rating-summary p {
    color: var(--text-light);
    font-weight: 600;
}

.reviews-scroller-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.reviews-scroller-container::before,
.reviews-scroller-container::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.reviews-scroller-container::before {
    left: 0;
    top: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.reviews-scroller-container::after {
    right: 0;
    top: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.reviews-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Total width of unique items (9 * (350px + 30px gap)) */
        transform: translateX(calc(-380px * 9));
    }
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    width: 350px;
    flex-shrink: 0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.review-info h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.review-info .stars {
    font-size: 0.9rem;
    color: #fbbc04;
}

.review-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
}

/* Utilities */
.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }
.text-white { color: #fff !important; }

/* Quote Section */
.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c2c2e 0%, #1d1d1f 100%);
    color: var(--white);
}

.quote-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.quote-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.contact-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}



/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Trade-In Section */
.trade-in {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.trade-in .container {
    position: relative;
    z-index: 2;
}

.trade-in-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.trade-in-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.trade-in-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.trade-in-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.trade-in-visual {
    text-align: center;
}

.trade-in-visual i {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.3;
}

/* Privacy & Security */
.privacy-security {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.privacy-security .container {
    position: relative;
    z-index: 2;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.privacy-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-light);
}

.privacy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2c2c2e 0%, #1d1d1f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-icon i {
    font-size: 2rem;
    color: var(--white);
}

.privacy-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.privacy-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Durability Section */
.durability {
    padding: 80px 0;
    background: var(--bg-light);
}

.durability-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.durability-visual {
    text-align: center;
}

.durability-visual i {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.durability-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.durability-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.durability-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.durability-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.durability-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.durability-feature i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Battery Services */
.battery-services {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.battery-background-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    z-index: -1;
    opacity: 0.1;
    /* Subtle background */
    pointer-events: none;
}

.battery-icon-bg {
    width: 100%;
    height: 100%;
    border: 15px solid var(--primary-color);
    border-radius: 40px;
    position: relative;
    padding: 10px;
    display: flex;
    align-items: center;
}

.battery-icon-bg::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 100px;
    background: var(--primary-color);
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.battery-level-bg {
    height: 100%;
    background: #4cd964;
    /* Apple Green */
    border-radius: 25px;
    width: 0%;
    animation: charging 4s infinite ease-in-out;
}

.battery-bolt-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 150px;
    color: var(--white);
    opacity: 0;
    animation: boltFlash 4s infinite ease-in-out;
    z-index: 2;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

@keyframes charging {
    0% {
        width: 0%;
        background: #ff3b30;
    }

    20% {
        width: 20%;
        background: #ff9500;
    }

    40% {
        width: 40%;
        background: #ffcc00;
    }

    60% {
        width: 60%;
        background: #4cd964;
    }

    80% {
        width: 80%;
        background: #4cd964;
    }

    100% {
        width: 95%;
        background: #4cd964;
    }
}

@keyframes boltFlash {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

.battery-services .container {
    position: relative;
    z-index: 2;
}

/* Quote Section Layout */
.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.quote-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(44, 44, 46, 0.1);
    background: var(--white);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232c2c2e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

@media (max-width: 992px) {
    .quote-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Footer Legal */
.footer-legal {
    margin-bottom: 10px;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(44, 44, 46, 0.8);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.battery-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.battery-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.battery-list {
    list-style: none;
    margin-bottom: 30px;
}

.battery-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.battery-list i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.battery-visual {
    text-align: center;
}

.battery-visual i {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.3;
}

/* Camera Services */
.camera-services {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.camera-services .container {
    position: relative;
    z-index: 2;
}

.camera-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.camera-visual {
    text-align: center;
}

.camera-visual i {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.3;
}

/* SECTION HEADER OVERRIDES for White Backgrounds */
#locations .section-header h2,
.battery-services .section-header h2 {
    color: var(--secondary-color);
    text-shadow: none;
}

#locations .section-header p,
.battery-services .section-header p {
    color: var(--text-light);
    text-shadow: none;
}

.camera-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.camera-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.camera-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.camera-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.camera-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.camera-feature i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Data Transfer */
.data-transfer {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.data-transfer .container {
    position: relative;
    z-index: 2;
}

.transfer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.transfer-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.transfer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-light);
}

.transfer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2c2c2e 0%, #1d1d1f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transfer-icon i {
    font-size: 2rem;
    color: var(--white);
}

.transfer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.transfer-card p {
    color: var(--text-light);
    line-height: 1.6;
    line-height: 1.8;
}

/* Enhanced Support */
.enhanced-support {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c2c2e 0%, #1d1d1f 100%);
    color: var(--white);
}

.support-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.support-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.support-content>p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.support-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.support-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.support-option i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.support-option h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.support-option p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Image Loading Animation */
img {
    opacity: 0;
    animation: imageFadeIn 0.6s ease forwards;
}

img[src] {
    animation-delay: 0.2s;
}

@keyframes imageFadeIn {
    to {
        opacity: 1;
    }
}

/* Staggered Animation Delays */
.fade-in-up[style*="animation-delay"] {
    animation-fill-mode: both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-top-bar {
        display: none;
    }

    .nav-contact-info {
        flex-direction: column;
        gap: 10px;
        font-size: 0.85rem;
    }

    .logo {
        flex-direction: row;
        align-items: flex-start;
    }

    .logo i {
        font-size: 2rem;
        margin-top: 3px;
    }

    .logo-content {
        display: flex;
        flex-direction: column;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .authorized-badge {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .devices-grid {
        grid-template-columns: 1fr;
    }

    .device-images {
        height: 140px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .quote-wrapper {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .trade-in-wrapper {
        grid-template-columns: 1fr;
    }

    .trade-in-visual i {
        font-size: 5rem;
    }

    .privacy-grid {
        grid-template-columns: 1fr;
    }

    .durability-wrapper {
        grid-template-columns: 1fr;
    }

    .durability-visual i {
        font-size: 5rem;
    }

    .battery-wrapper {
        grid-template-columns: 1fr;
    }

    .battery-visual i {
        font-size: 5rem;
    }

    .camera-wrapper {
        grid-template-columns: 1fr;
    }

    .camera-visual i {
        font-size: 5rem;
    }

    .transfer-grid {
        grid-template-columns: 1fr;
    }

    .support-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
        margin-top: 100px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .hero-contact-item {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .container {
        padding: 0 15px;
    }

    .quote-form-wrapper {
        padding: 25px;
    }

    .trade-in-content h2,
    .durability-content h2,
    .camera-content h2 {
        font-size: 2rem;
    }

    .trade-in-subtitle,
    .durability-subtitle,
    .camera-subtitle {
        font-size: 1.1rem;
    }

    .support-content h2 {
        font-size: 2rem;
    }
}