/* ========================================
   CSS VARIABLES & RESET
   ======================================== */
:root {
    --navy: #0A2540;
    --ice: #639FAB;
    --white-bg: #F7F9FC;
    --accent: #FF6B35;
    --accent-glow: rgba(255, 107, 53, 0.3);
    --slate: #2C3E50;
    --shadow-sm: 0 25px 40px -12px rgba(0, 0, 0, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #F7F9FC;
    color: #1A2C3E;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ========================================
   LAYOUT & CONTAINERS
   ======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   HEADER / NAV
   ======================================== */
header {
    position: sticky;
    top: 0;
    background: rgba(247, 249, 252, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(99, 159, 171, 0.2);
    transition: var(--transition-smooth);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Impact', 'Inter', sans-serif;
    font-size: 2rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--navy) 0%, var(--ice) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-weight: 600;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    transition: 0.2s;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

/* ========================================
   BUTTONS
   ======================================== */
.cta-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.7rem 1.6rem;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 5px 12px rgba(255, 107, 53, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(255, 107, 53, 0.3);
}

.btn-primary {
    background: var(--navy);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 60px;
    font-weight: 700;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-primary:hover {
    background: #0D3557;
    transform: scale(1.02);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--ice);
    padding: 0.9rem 2rem;
    border-radius: 60px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--ice);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--navy);
    padding: 0.8rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--navy);
    color: white;
}

/* ========================================
   BACK BUTTON
   ======================================== */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--ice);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    background: rgba(99, 159, 171, 0.08);
    border: 1px solid rgba(99, 159, 171, 0.15);
}

.back-link:hover {
    color: var(--accent);
    background: rgba(255, 107, 53, 0.08);
    border-color: var(--accent);
    transform: translateX(-4px);
}

.back-link::before {
    content: "←";
    display: inline-block;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.back-link:hover::before {
    transform: translateX(-3px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 5rem 0 4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.hero-left {
    flex: 1.2;
}

.hero-left h1 {
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--navy), #1F5E6E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-left p {
    font-size: 1.2rem;
    margin: 1.5rem 0;
    color: var(--slate);
}

.btn-group {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hero-right {
    flex: 0.8;
    background: radial-gradient(circle at 30% 20%, rgba(99, 159, 171, 0.1), transparent);
    border-radius: 2rem;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    border-radius: 2rem;
    display: block;
}

.trust-badge {
    margin: 2rem 0;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(120deg, #FF6B35, #FFA069);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ========================================
   SECTION TITLES
   ======================================== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy);
}

/* ========================================
   PAIN POINTS GRID
   ======================================== */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0 4rem;
}

.pain-card {
    background: white;
    border-radius: 32px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(99, 159, 171, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pain-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-sm);
    border-color: var(--ice);
}

.pain-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 1.5rem;
    background: linear-gradient(145deg, #EFF3F8, #E6ECF2);
}

.pain-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.pillar-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.badge-solution {
    background: var(--accent);
    display: inline-block;
    padding: 0.2rem 1rem;
    border-radius: 100px;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* ========================================
   PAGE MANAGEMENT
   ======================================== */
.page {
    display: none;
    animation: fadeIn 0.4s ease;
}

.page.active-page {
    display: block;
}

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

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

/* ========================================
   SERVICES GRID
   ======================================== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: white;
    border-radius: 28px;
    padding: 1.8rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(99, 159, 171, 0.15);
    cursor: pointer;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--ice);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

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

.pricing-badge {
    background: #EFF3F8;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

/* ========================================
   PORTFOLIO GRID
   ======================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.portfolio-card {
    background: white;
    border-radius: 28px;
    padding: 1.8rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(99, 159, 171, 0.15);
    cursor: pointer;
    text-align: center;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    border-color: var(--ice);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.portfolio-card .project-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.portfolio-card p {
    color: var(--slate);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.view-details-btn {
    background: var(--navy);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.view-details-btn:hover {
    background: var(--accent);
    transform: scale(1.05);
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-hero {
    background: linear-gradient(135deg, var(--navy), #1F5E6E);
    border-radius: 32px;
    padding: 3rem;
    color: white;
    text-align: center;
    margin: 2rem 0;
}

.about-hero h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.about-story {
    background: white;
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(99, 159, 171, 0.15);
}

.about-story h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.about-story p {
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-story .highlight {
    color: var(--accent);
    font-weight: 700;
}

.about-team {
    background: white;
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(99, 159, 171, 0.15);
}

.about-team h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.team-member {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.team-member:last-child {
    border-bottom: none;
}

.team-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ice), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.team-info h4 {
    color: var(--navy);
    font-size: 1.1rem;
}

.team-info p {
    color: var(--slate);
    font-size: 0.95rem;
}

/* ========================================
   VALUES GRID
   ======================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-card {
    background: white;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(99, 159, 171, 0.15);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-sm);
    border-color: var(--accent);
}

.value-card .value-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
}

.value-card h4 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.6;
}

.value-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   STATS GRID
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(99, 159, 171, 0.1);
}

.stat-item .number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-item .label {
    color: var(--slate);
    font-size: 0.95rem;
    margin-top: 0.3rem;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    background: linear-gradient(135deg, var(--navy), #1F5E6E);
    border-radius: 32px;
    padding: 3rem;
    margin: 1rem 0 3rem;
    color: white;
    align-items: center;
    justify-content: space-between;
}

.contact-hero-content {
    flex: 1.2;
}

.contact-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
    line-height: 1.8;
}

.contact-trust-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hero-stats {
    display: flex;
    gap: 2rem;
    flex: 0.8;
    justify-content: center;
}

.contact-hero-stats .stat-item {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    min-width: 80px;
}

.contact-hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.contact-hero-stats .stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-form-wrapper {
    background: white;
    border-radius: 32px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(99, 159, 171, 0.12);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: var(--slate);
}

.contact-form-modern .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form-modern .form-group-modern {
    margin-bottom: 1.5rem;
}

.contact-form-modern label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.contact-form-modern label .required {
    color: #e74c3c;
}

.contact-form-modern label .optional {
    color: #999;
    font-weight: 400;
    font-size: 0.8rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    opacity: 0.5;
    pointer-events: none;
}

.input-with-icon textarea~.input-icon {
    top: 20px;
    transform: none;
}

.contact-form-modern input,
.contact-form-modern select,
.contact-form-modern textarea {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    border: 2px solid #EFF3F8;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #FAFBFC;
}

.contact-form-modern input:focus,
.contact-form-modern select:focus,
.contact-form-modern textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.08);
    background: white;
}

.contact-form-modern input.error,
.contact-form-modern textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.08);
}

.contact-form-modern .form-error {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.contact-form-modern .form-error.show {
    display: block;
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.5;
}

.checkbox-label input {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
    margin-top: 1px;
    transition: all 0.3s ease;
}

.checkbox-label input:checked+.checkmark {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox-label input:checked+.checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-actions .btn-primary {
    flex: 1;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-actions .btn-secondary {
    padding: 1rem 1.5rem;
}

.form-success {
    text-align: center;
    padding: 2rem 1rem;
    background: #F0F9F4;
    border-radius: 16px;
    border: 2px solid #2ECC71;
    margin-top: 1.5rem;
}

.form-success .success-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.form-success h4 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--slate);
    margin-bottom: 1rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quick-contact-card,
.schedule-card,
.why-choose-card,
.urgent-support-card {
    background: white;
    border-radius: 24px;
    padding: 1.8rem;
    border: 1px solid rgba(99, 159, 171, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.quick-contact-card:hover,
.schedule-card:hover,
.why-choose-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.quick-contact-card h3,
.schedule-card h3,
.why-choose-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #F7F9FC;
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F7F9FC;
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-method-details {
    flex: 1;
}

.method-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.method-value {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s;
}

.method-value:hover {
    color: var(--accent);
}

.method-availability {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.1rem;
}

.availability-indicators {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.5rem 0;
}

.availability-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.availability-dot.green {
    background: #2ECC71;
}

.availability-text {
    font-size: 0.9rem;
    color: var(--slate);
}

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

.why-choose-list li {
    display: flex;
    gap: 0.8rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--slate);
    border-bottom: 1px solid #F7F9FC;
}

.why-choose-list li:last-child {
    border-bottom: none;
}

.why-choose-list li span {
    flex: 1;
}

.urgent-support-card {
    background: linear-gradient(135deg, #FFF5F5, #FFE8E8);
    border-color: #FECACA;
    text-align: center;
}

.urgent-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.urgent-support-card h4 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.urgent-support-card p {
    color: var(--slate);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-urgent {
    display: inline-block;
    background: #E74C3C;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-urgent:hover {
    background: #C0392B;
    transform: scale(1.02);
}

/* ========================================
   DETAIL PAGES
   ======================================== */
.detail-page {
    padding: 3rem 0;
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-header .icon {
    font-size: 4rem;
}

.detail-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
}

.detail-header .subtitle {
    font-size: 1.2rem;
    color: var(--slate);
    margin-top: 0.5rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.detail-main h2 {
    font-size: 1.8rem;
    color: var(--navy);
    margin: 2rem 0 1rem;
}

.detail-main p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 1rem;
}

.detail-main ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.detail-main ul li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: var(--slate);
    border-bottom: 1px solid #f0f0f0;
}

.detail-main ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.detail-sidebar {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(99, 159, 171, 0.15);
    position: sticky;
    top: 100px;
    align-self: start;
}

.detail-sidebar .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    margin: 0.5rem 0;
}

.detail-sidebar .cta-btn {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
}

.detail-sidebar .feature-list {
    margin: 1.5rem 0;
    list-style: none;
    padding: 0;
}

.detail-sidebar .feature-list li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--slate);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-sidebar .feature-list li::before {
    content: "🔹";
}

/* ========================================
   MODAL STYLES
   ======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    animation: modalFadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-content {
    background: white;
    border-radius: 32px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: sticky;
    top: 0;
    float: right;
    background: #F7F9FC;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -0.5rem;
    margin-right: -0.5rem;
    z-index: 10;
}

.modal-close:hover {
    background: var(--accent);
    color: white;
    transform: rotate(90deg);
}

.modal-icon {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.modal-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.modal-description {
    font-size: 1.05rem;
    color: var(--slate);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.modal-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--ice));
    margin: 1.5rem 0;
    opacity: 0.3;
}

.modal-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--slate);
}

.modal-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.modal-ideal {
    background: #F7F9FC;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--accent);
    margin: 1rem 0;
}

.modal-ideal strong {
    color: var(--navy);
}

.modal-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #EFF3F8;
    text-align: center;
}

.modal-footer p {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.4);
}

/* ========================================
   CALENDAR MODAL
   ======================================== */
.calendar-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    animation: modalFadeIn 0.3s ease;
}

.calendar-modal-overlay.active {
    display: flex;
}

.calendar-modal-content {
    background: white;
    border-radius: 32px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.calendar-modal-close {
    position: sticky;
    top: 0;
    float: right;
    background: #F7F9FC;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -0.5rem;
    margin-right: -0.5rem;
    z-index: 10;
}

.calendar-modal-close:hover {
    background: var(--accent);
    color: white;
    transform: rotate(90deg);
}

.calendar-modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.calendar-modal-header h2 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.calendar-modal-header p {
    color: var(--slate);
}

.calendar-user-form {
    margin: 1rem 0 1.5rem;
    padding: 1.5rem;
    background: #F7F9FC;
    border-radius: 16px;
    border: 1px solid rgba(99, 159, 171, 0.15);
}

.calendar-user-form .form-group {
    margin-bottom: 1rem;
}

.calendar-user-form .form-group:last-child {
    margin-bottom: 0;
}

.calendar-user-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.calendar-user-form label .required {
    color: #e74c3c;
    font-weight: 700;
}

.calendar-user-form label .optional {
    color: #999;
    font-weight: 400;
    font-size: 0.8rem;
}

.calendar-user-form input,
.calendar-user-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.calendar-user-form input:focus,
.calendar-user-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.calendar-user-form input.error,
.calendar-user-form textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.calendar-user-form .error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

.calendar-user-form .error-message.show {
    display: block;
}

.calendar-container {
    margin: 1rem 0;
}

.calendar-modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #EFF3F8;
}

.calendar-modal-footer .btn-secondary {
    padding: 0.7rem 2rem;
}

.calendar-modal-footer .btn-primary {
    padding: 0.7rem 2rem;
}

/* ========================================
   CHAT WIDGET
   ======================================== */
.chat-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: none;
    color: white;
    font-size: 28px;
    transition: transform 0.2s;
}

.chat-toggle:hover {
    transform: scale(1.05);
}

.chat-box {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 350px;
    max-width: 85vw;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.2s;
    border: 1px solid rgba(99, 159, 171, 0.3);
}

.chat-box.hidden {
    display: none;
}

.chat-header {
    background: var(--navy);
    color: white;
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
}

.chat-messages {
    height: 320px;
    overflow-y: auto;
    padding: 1rem;
    background: #F9FBFD;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.message.user {
    align-self: flex-end;
}

.message.bot {
    align-self: flex-start;
}

.msg-bubble {
    padding: 8px 14px;
    border-radius: 18px;
    font-size: 0.85rem;
}

.user .msg-bubble {
    background: var(--accent);
    color: white;
}

.bot .msg-bubble {
    background: #EFF3F8;
    border: 1px solid #e2e8f0;
}

.chat-input-area {
    display: flex;
    padding: 10px;
    gap: 8px;
    border-top: 1px solid #e2e8f0;
    background: white;
}

.chat-input-area input {
    flex: 1;
    padding: 8px 12px;
    border-radius: 40px;
    border: 1px solid #cbd5e1;
}

.chat-input-area button {
    background: var(--navy);
    border: none;
    color: white;
    border-radius: 40px;
    padding: 0 16px;
    cursor: pointer;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--navy);
    color: #ccdde5;
    padding: 3rem 0;
    margin-top: 5rem;
    text-align: center;
}

footer a {
    color: #ccdde5;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-fade {
    animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   CONTRACT PAGE STYLES
   ======================================== */
#contractContent::-webkit-scrollbar {
    width: 6px;
}

#contractContent::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

#contractContent::-webkit-scrollbar-thumb {
    background: #FF6B35;
    border-radius: 3px;
}

#contractContent h3 {
    color: #FF6B35;
    margin: 20px 0 10px;
    font-size: 16px;
}

#contractContent ul {
    margin: 0 0 15px 20px;
    color: #b9c3d0;
}

#contractContent ul li {
    margin-bottom: 4px;
}

#contractPassword {
    max-width: 200px;
    text-align: center;
}

/* ========================================
   MOBILE NAVIGATION
   ======================================== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    background: none;
    border: none;
    outline: none;
    margin-left: auto;
}

.hamburger-menu span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background: var(--accent);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background: var(--accent);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.6);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: white;
    z-index: 1000;
    padding: 2rem 1.5rem;
    transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(99, 159, 171, 0.15);
    margin-bottom: 1.5rem;
}

.mobile-nav-header .logo {
    font-size: 1.6rem;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--navy);
    transition: transform 0.3s ease;
    padding: 4px 8px;
}

.mobile-nav-close:hover {
    transform: rotate(90deg);
    color: var(--accent);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mobile-nav-links li {
    margin-bottom: 0.5rem;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.25s ease;
}

.mobile-nav-links a:hover {
    background: rgba(255, 107, 53, 0.08);
    color: var(--accent);
    transform: translateX(4px);
}

.mobile-nav-links a .nav-icon {
    font-size: 1.2rem;
    width: 28px;
    text-align: center;
}

.mobile-nav-links a.active {
    background: rgba(255, 107, 53, 0.12);
    color: var(--accent);
    border-right: 4px solid var(--accent);
}

.mobile-nav-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(99, 159, 171, 0.15);
    margin-top: auto;
}

.mobile-nav-footer .cta-btn {
    width: 100%;
    text-align: center;
    padding: 0.9rem;
    font-size: 0.95rem;
}

.mobile-nav-footer .contact-info {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--slate);
}

.mobile-nav-footer .contact-info a {
    color: var(--navy);
    text-decoration: none;
}

.mobile-nav-footer .contact-info a:hover {
    color: var(--accent);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 992px) {
    .contact-grid-modern {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .contact-hero-content p {
        max-width: 100%;
    }

    .contact-trust-badges {
        justify-content: center;
    }

    .contact-hero-stats {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 800px) {
    .hero {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .hero-left {
        width: 100% !important;
        text-align: center !important;
        order: 2 !important;
    }

    .hero-right {
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        order: 1 !important;
    }

    .hero-left h1 {
        font-size: 2.2rem !important;
        text-align: center !important;
    }

    .hero-left p {
        text-align: center !important;
    }

    .btn-group {
        justify-content: center !important;
    }

    .btn-group button {
        width: 100% !important;
        max-width: 280px !important;
    }

    .trust-badge {
        text-align: center !important;
    }

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

    .nav-links {
        display: none !important;
    }

    .container {
        padding: 0 1.2rem;
    }

    .hero-image {
        height: 200px;
    }

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-hero h2 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: relative;
        top: 0;
    }

    .detail-header {
        flex-direction: column;
        text-align: center;
    }

    .detail-header h1 {
        font-size: 2rem;
    }

    .modal-list {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 1.5rem;
        margin: 0.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

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

    .modal-overlay {
        padding: 0.5rem;
    }

    .calendar-modal-content {
        padding: 1.5rem;
        margin: 0.5rem;
    }

    .calendar-modal-footer {
        flex-direction: column;
    }

    .calendar-modal-footer button {
        width: 100%;
    }

    .hamburger-menu {
        display: flex !important;
    }

    .back-link {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .cta-btn {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .contact-form-modern .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .contact-hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .contact-hero-stats .stat-item {
        min-width: 60px;
        padding: 0.8rem;
    }

    .contact-hero-stats .stat-number {
        font-size: 1.5rem;
    }

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

    .form-actions .btn-secondary {
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .trust-badge-item {
        width: 100%;
        text-align: center;
    }

    .calendar-modal-footer {
        flex-direction: column;
    }

    .calendar-modal-footer button {
        width: 100%;
    }

    .calendar-user-form {
        padding: 1rem;
    }
}

@media (max-width: 500px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        padding: 2rem 1.5rem;
    }

    .about-hero h2 {
        font-size: 1.6rem;
    }

    .back-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    .back-link::before {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .mobile-nav {
        width: 280px;
        max-width: 90%;
        padding: 1.5rem 1rem;
    }

    .mobile-nav-links a {
        padding: 0.7rem 0.8rem;
        font-size: 0.95rem;
    }
}