:root {
    --primary: #00B4D8;
    --primary-dark: #0077B6;
    --primary-glow: rgba(0, 180, 216, 0.25);
    --secondary: #E0FBFC;
    --accent: #48CAE4;
    --text-main: #1A1D2E;
    --text-light: #8D99AE;
    --bg-light: #F0F7FF;
    --white: #FFFFFF;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 15px rgba(0, 119, 182, 0.08);
    --shadow-md: 0 10px 40px rgba(0, 119, 182, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 119, 182, 0.18);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    max-width: 100%;
    position: relative; /* Safari fix */
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.section {
    padding: 5.5rem 0;
    overflow: hidden; /* Safari fix */
}

.section-title {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    position: relative;
    width: 100%;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
    letter-spacing: -0.5px;
    word-break: break-word;
    overflow-wrap: break-word;
    padding: 0 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
    margin: 0.75rem auto 0;
    transition: width 0.4s ease;
}

.section-title:hover::after {
    width: 120px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 20px rgba(0,119,182,0.06);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.7);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 119, 182, 0.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.55s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.99);
}

/* Secondary Button */
.btn-secondary {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    color: var(--white);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.99);
}

.btn-large {
    padding: 1.1rem 2.8rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(0, 30, 70, 0.72) 0%,
        rgba(0, 119, 182, 0.45) 60%,
        rgba(0, 180, 216, 0.25) 100%);
}

/* Floating orbs */
.hero::before {
    content: '';
    position: absolute;
    width: min(500px, 80vw);
    height: min(500px, 80vw);
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -50px;
    animation: floatOrb 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: min(300px, 50vw);
    height: min(300px, 50vw);
    background: radial-gradient(circle, rgba(72, 202, 228, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 10%;
    right: 20%;
    animation: floatOrb 6s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-40px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4.2rem;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    letter-spacing: -1px;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, #48CAE4, #ADE8F4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 560px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.15);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 3.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    max-width: 600px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-stat {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
}

.stat-num {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.85);
    line-height: 1;
}

.stat-label {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    display: block;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.hero-stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    margin: 0 0.25rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 820px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: left;
    border: 1px solid rgba(0, 119, 182, 0.07);
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 180, 216, 0.15);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.04);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Advantages */
.bg-light {
    background: linear-gradient(180deg, #F0F7FF 0%, #E8F4FD 100%);
    position: relative;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.advantage-item {
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,180,216,0.08);
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0,180,216,0.2);
}

.adv-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--secondary), #c0effc);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: var(--primary-dark);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.15);
}

.advantage-item:hover .adv-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.3);
}

.advantage-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.advantage-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Order & Contact */
.form-subtitle {
    text-align: center;
    max-width: 600px;
    margin: -1.5rem auto 3rem auto;
    color: var(--text-light);
    font-size: 1.1rem;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.glass-panel {
    background: rgba(255, 255, 255, 1);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-form-container {
    padding: 3rem;
    border-radius: 30px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--primary-dark);
    font-size: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.contact-item p {
    color: var(--text-light);
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--text-light);
    pointer-events: none;
    transition: var(--transition);
    z-index: 2;
}

.form-group:focus-within i {
    color: var(--primary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.25rem;
    border: 2px solid transparent;
    background-color: #f1f5f9;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238D99AE' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 12px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background-color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.15);
}

.form-group input::placeholder {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--text-main);
    color: var(--white);
    padding: 2rem 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    .section {
        padding: 3rem 0;
    }
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        width: 100%;
        display: block;
        padding: 0 0.5rem;
    }
    .nav-container {
        height: 65px;
    }
    .logo {
        font-size: 1.25rem;
    }
    .nav-links {
        display: none;
    }
    .nav-container .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    .hero {
        align-items: flex-end;
        padding-bottom: 1.5rem;
        overflow: hidden; /* Safari fix */
    }
    .hero::before,
    .hero::after {
        display: none; /* Hide large orbs on mobile */
    }
    .hero-content {
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        padding: 2rem 1.25rem;
        border-radius: 24px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: auto;
    }
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.85rem;
        text-shadow: none;
        color: var(--white);
        letter-spacing: -0.5px;
    }
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        color: rgba(255,255,255,0.85);
        opacity: 1;
        text-shadow: none;
        line-height: 1.6;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 0.6rem;
    }
    .hero-buttons .btn {
        width: 100%;
        border-radius: 14px;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding: 1.25rem 1rem;
        max-width: 100%;
    }
    .hero-stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.15rem;
    }
    .hero-stat-divider {
        display: none;
    }
    .stat-num {
        font-size: 1.4rem;
    }
    .stat-label {
        font-size: 0.72rem;
    }
    .btn:active {
        transform: scale(0.96) !important;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
    .service-img {
        height: 200px;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
    .advantage-item {
        padding: 1.25rem 1.25rem;
        background: var(--white);
        border-radius: 16px;
        box-shadow: 0 5px 15px rgba(0,119,182,0.05);
        display: flex;
        align-items: center;
        gap: 1.25rem;
        text-align: left;
    }
    .adv-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
        margin: 0;
        flex-shrink: 0;
    }
    .advantage-item h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    .advantage-item p {
        font-size: 0.82rem;
        line-height: 1.45;
    }
    .contact-form-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .form-subtitle {
        margin-bottom: 2rem;
        font-size: 1rem;
    }
    .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .process-connector {
        display: none;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .hamburger {
        display: flex;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu.open {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

/* Hamburger & Mobile Menu */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    z-index: 999;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    flex-direction: column;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-link {
    display: block;
    padding: 1rem 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--bg-light);
    transition: color 0.2s;
}

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

.mobile-link-btn {
    display: inline-block;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    border: none;
}

/* Service Card Enhanced */
.service-body {
    padding: 1.5rem;
}

.service-body h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.service-body p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.service-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.service-includes li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

.service-includes li i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--bg-light);
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.service-time {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    align-items: center;
    gap: 0;
}

.process-step {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bg-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 1.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.process-connector {
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-connector::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(0,180,216,0.07);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(0, 180, 216, 0.08);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0,180,216,0.18);
}

.review-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.75;
    flex: 1;
    font-size: 0.97rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light);
}

.review-avatar {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,119,182,0.25);
}

.review-name {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Scroll Reveal */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.will-animate .reveal {
    opacity: 0;
    transform: translateY(35px);
}

.will-animate .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items */
.will-animate .reveal:nth-child(1) { transition-delay: 0ms; }
.will-animate .reveal:nth-child(2) { transition-delay: 100ms; }
.will-animate .reveal:nth-child(3) { transition-delay: 200ms; }
.will-animate .reveal:nth-child(4) { transition-delay: 300ms; }

/* Success Modal */
.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.success-modal.active {
    opacity: 1;
    pointer-events: all;
}

.success-content {
    background: var(--white);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-modal.active .success-content {
    transform: scale(1);
}

.success-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1;
}

.success-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

/* Mobile overrides — must be last to take priority */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .process-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .process-connector {
        display: none !important;
    }

    .process-step {
        padding: 1.5rem 1.5rem 1.5rem 1.25rem;
        text-align: left;
        display: grid;
        grid-template-columns: 56px 1fr;
        grid-template-rows: auto auto;
        gap: 0.25rem 1rem;
        align-items: start;
        border-left: 3px solid var(--primary);
        border-radius: 16px;
    }

    .step-number {
        display: none;
    }

    .step-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        flex-shrink: 0;
        margin: 0;
        grid-row: 1 / 3;
        align-self: center;
    }

    .process-step h4 {
        margin-bottom: 0;
        font-size: 1.05rem;
        align-self: end;
    }

    .process-step p {
        font-size: 0.9rem;
        line-height: 1.5;
        color: var(--text-light);
        align-self: start;
    }

    .service-body {
        padding: 1.25rem;
    }
}


.success-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}
