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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f7f8fc;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

picture {
    display: block;
}

a {
    color: #5b6ee1;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 22px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #667eea;
}

.nav-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600 !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
}

.hero {
    padding: 90px 0 80px;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 18px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
    line-height: 1.15;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 28px;
    opacity: 0.95;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-badges span {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.section {
    padding: 72px 0;
}

.section-alt {
    background: #fff;
}

.section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #222;
}

.section-lead {
    text-align: center;
    color: #666;
    max-width: 720px;
    margin: 0 auto 42px;
    font-size: 1.05rem;
}

.feature-grid,
.service-grid,
.card-grid,
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature-card,
.service-card,
.content-card,
.guide-card,
.step-card,
.faq-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.feature-card {
    padding: 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.service-card:hover,
.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.feature-card h3,
.service-card h3,
.guide-card h3,
.content-card h3,
.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #222;
}

.feature-card p,
.service-card p,
.guide-card p,
.content-card p,
.step-card p {
    color: #666;
}

.service-card {
    overflow: hidden;
}

.service-card img,
.guide-card img,
.page-hero-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card .content,
.guide-card .content,
.content-card {
    padding: 22px;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #667eea;
    margin-top: 10px;
}

.about-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    color: #666;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-content .btn {
    margin-top: 12px;
}

.testimonials {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonials h2,
.testimonials .section-lead {
    color: #fff;
}

.testimonials .section-lead {
    opacity: 0.9;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    padding: 28px;
    border-radius: 18px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-card .author {
    font-weight: bold;
}

.contact {
    background: #fff;
}

.testimonial-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.testimonial-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}

.author-handle {
    font-weight: 400;
    opacity: 0.85;
    font-size: 0.9rem;
}

.author-meta {
    font-size: 0.85rem;
    opacity: 0.75;
    margin-top: 2px;
}

.read-more {
    margin-top: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonial Carousel */
.testimonial-carousel {
    position: relative;
    padding: 0 24px;
}

.carousel-track-container {
    overflow: hidden;
    margin: 0 -10px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 10px 0;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 280px;
    margin-right: 24px;
}

.carousel-slide:last-child {
    margin-right: 0;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #667eea;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.08);
}

.carousel-arrow.prev { left: -10px; }
.carousel-arrow.next { right: -10px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #fff;
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .carousel-slide {
        flex: 0 0 100%;
    }
    .carousel-arrow {
        display: none;
    }
    .testimonial-carousel {
        padding: 0;
    }
}

/* Reviews page - Apple Style */
.review-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 860px;
    margin: 0 auto;
}

.review-detail {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-detail:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.review-detail-header {
    padding: 32px 36px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-meta h2 {
    font-size: 1.2rem;
    color: #1d1d1f;
    margin-bottom: 4px;
}

.review-sub {
    color: #86868b;
    font-size: 0.92rem;
}

.review-body {
    padding: 24px 36px 36px;
}

.review-body .review-quote {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #333;
    margin-bottom: 24px;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.review-tags span {
    background: #f5f5f7;
    color: #1d1d1f;
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 500;
}

.review-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.review-photos img {
    border-radius: 16px;
    height: 260px;
    width: 100%;
    object-fit: cover;
}

.review-photos figcaption {
    font-size: 0.88rem;
    color: #86868b;
    margin-top: 8px;
    text-align: center;
}

.review-highlight {
    border-left: 3px solid #667eea;
    background: #fbfbfc;
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    color: #555;
    font-size: 0.95rem;
    margin-top: 18px;
}

@media (max-width: 768px) {
    .review-photos {
        grid-template-columns: 1fr;
    }
    .review-photos img {
        height: 200px;
    }
    .review-detail-header {
        padding: 20px 20px 0;
    }
    .review-body {
        padding: 16px 20px 20px;
    }
}


.contact-box {
    text-align: center;
    padding: 48px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    max-width: 720px;
    margin: 0 auto;
    color: white;
}

.contact-box p {
    font-size: 1.08rem;
    margin-bottom: 18px;
    opacity: 0.95;
}

.email-address {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 22px;
    word-break: break-all;
}

.contact-box a.btn {
    margin-top: 8px;
}

.page-hero {
    padding: 70px 0 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.6rem;
    margin-bottom: 14px;
    line-height: 1.2;
}

.page-hero p {
    max-width: 760px;
    margin: 0 auto;
    opacity: 0.95;
    font-size: 1.1rem;
}

.breadcrumb {
    margin-bottom: 18px;
    font-size: 0.92rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.prose {
    max-width: 820px;
    margin: 0 auto;
}

.prose h2 {
    text-align: left;
    font-size: 1.7rem;
    margin: 36px 0 14px;
}

.prose h3 {
    font-size: 1.25rem;
    margin: 24px 0 10px;
    color: #222;
}

.prose p,
.prose li {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.prose ul,
.prose ol {
    margin: 0 0 18px 22px;
}

.prose a {
    color: #5b6ee1;
    font-weight: 600;
}

.cta-banner {
    margin-top: 40px;
    padding: 32px 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.cta-banner h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 18px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.step-card {
    padding: 24px;
    text-align: center;
}

.step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: bold;
    margin-bottom: 12px;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    padding: 20px 22px;
}

.faq-item h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
}

.city-links,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.city-links a,
.tag-list span {
    background: #fff;
    border: 1px solid #e6e8f0;
    color: #444;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
}

.sticky-cta {
    display: none;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 200;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

footer {
    background: #2b2b2b;
    color: white;
    padding: 48px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}

footer h4 {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

footer p,
footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .review-list {
        gap: 32px;
    }
    .review-detail-header {
        padding: 24px 24px 0;
        align-items: flex-start;
    }
    .review-body {
        padding: 20px 24px 28px;
    }
    .review-photos {
        grid-template-columns: 1fr;
    }
    .review-photos img {
        height: 200px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        padding: 18px 20px 22px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        gap: 14px;
        align-items: flex-start;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 64px 0 56px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2rem;
    }

    .hero p,
    .page-hero p {
        font-size: 1rem;
    }

    .section {
        padding: 52px 0;
    }

    .section h2 {
        font-size: 1.7rem;
    }

    .about-content,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 72px;
    }

    .service-card img,
    .guide-card img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.25rem;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 1.7rem;
    }

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

    .btn-row {
        flex-direction: column;
    }

    .email-address {
        font-size: 1.2rem;
    }
}
