/* ============================================================
   AJM Consultancy - Main Stylesheet
   Navy Blue (#1B2A4A) | Orange (#FF6B35) | White | Light Grey
   ============================================================ */

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

:root {
    --primary: #1B2A4A;
    --secondary: #FF6B35;
    --white: #FFFFFF;
    --bg-light: #F5F5F5;
    --text: #333333;
    --text-light: #6c757d;
    --border: #e9ecef;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   DISCLAIMER BAR
   ============================================================ */
.disclaimer-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.9);
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    line-height: 1.4;
}

.disclaimer-bar i { color: var(--secondary); margin-right: 6px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

.site-logo { display: flex; align-items: center; flex-shrink: 0; }

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-text span { color: var(--secondary); }

.main-nav ul {
    display: flex;
    gap: 5px;
}

.main-nav a {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    border-radius: 6px;
    transition: var(--transition);
}

.main-nav a:hover {
    background: rgba(255,107,53,0.08);
    color: var(--secondary);
}

.main-nav .has-dropdown { position: relative; }
.main-nav .has-dropdown > a { display: flex; align-items: center; gap: 6px; }
.main-nav .has-dropdown > a i { font-size: 10px; transition: transform 0.3s; opacity: 0.6; }
.main-nav .has-dropdown:hover > a i { transform: rotate(180deg); opacity: 1; }

.dropdown-menu {
    position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(8px);
    display: flex; gap: 4px; white-space: nowrap;
    background: var(--white); box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 50px; padding: 6px 10px; opacity: 0; visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); z-index: 1001;
    border: 1px solid rgba(0,0,0,0.06);
}
.main-nav .has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu li { display: inline-flex; }
.dropdown-menu a {
    display: flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 50px;
    font-size: 13px; font-weight: 500; color: var(--text); transition: all 0.2s ease;
}
.dropdown-menu a i { font-size: 13px; color: var(--secondary); }
.dropdown-menu a:hover { background: var(--secondary); color: var(--white); }
.dropdown-menu a:hover i { color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover { background: #243b5e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,42,74,0.3); }

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

.btn-secondary:hover { background: #e55a2b; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,53,0.3); }

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover { background: var(--bg-light); transform: translateY(-2px); }

.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #2a3f6a 100%);
    color: var(--white);
    padding: 100px 0;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.hero .container { position: relative; z-index: 1; }

.hero-content { max-width: 650px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(255,107,53,0.2);
    border: 1px solid rgba(255,107,53,0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--secondary);
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero h1 span { color: var(--secondary); }

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-disclaimer {
    margin-top: 30px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.05);
    border-left: 3px solid var(--secondary);
    border-radius: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.hero-disclaimer i { color: var(--secondary); margin-right: 6px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 0; }

.section-alt { background: var(--bg-light); }

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(255,107,53,0.1);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255,107,53,0.2);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,107,53,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--secondary);
    color: var(--white);
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-card p { font-size: 14px; color: var(--text-light); margin-bottom: 15px; line-height: 1.6; }

.service-features { margin-top: 15px; }

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text);
    padding: 4px 0;
}

.service-features li i { color: var(--secondary); font-size: 12px; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 1px solid transparent;
}

.pricing-card.popular {
    border-color: var(--secondary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 20px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.pricing-card .description { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }

.pricing-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 5px;
}

.pricing-amount .currency { font-size: 24px; }

.pricing-period { font-size: 14px; color: var(--text-light); margin-bottom: 25px; }

.pricing-features { text-align: left; margin-bottom: 30px; }

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li i { color: var(--secondary); }

.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.popular:hover { transform: scale(1.05) translateY(-5px); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    text-align: center;
    padding: 30px 20px;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin: 0 auto 18px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--secondary);
    transform: scale(1.1);
}

.why-card h3 { font-size: 18px; color: var(--primary); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
}

.process-step h3 { font-size: 16px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--text-light); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 60px;
    color: rgba(255,107,53,0.15);
    font-weight: 800;
    line-height: 1;
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.testimonial-stars { color: #ffc107; margin-bottom: 12px; font-size: 14px; }

.testimonial-card p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}

.testimonial-author h4 { font-size: 15px; color: var(--primary); }
.testimonial-author span { font-size: 13px; color: var(--text-light); }

/* ============================================================
   FAQ SECTION / PAGE
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid transparent;
    transition: var(--transition);
}

.faq-item.active { border-color: var(--secondary); }

.faq-question {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    color: var(--primary);
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover { color: var(--secondary); }

.faq-question i {
    font-size: 18px;
    color: var(--secondary);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 18px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================================
   CONTACT / CTA SECTIONS
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #2a3f6a 100%);
    color: var(--white);
    text-align: center;
    padding: 70px 0;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 { font-size: 22px; color: var(--primary); margin-bottom: 20px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(255,107,53,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item h4 { font-size: 14px; font-weight: 600; color: var(--primary); }
.contact-item p, .contact-item a { font-size: 14px; color: var(--text-light); }
.contact-item a:hover { color: var(--secondary); }

.contact-form .form-group { margin-bottom: 18px; }

.contact-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font);
    transition: var(--transition);
    background: var(--white);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

.contact-form textarea.form-control { min-height: 130px; resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.footer-about p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    transition: var(--transition);
}

.footer-social a:hover { background: var(--secondary); transform: translateY(-3px); }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover { color: var(--secondary); padding-left: 5px; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--secondary); }

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

.footer-disclaimer {
    margin-top: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

.footer-disclaimer i { color: var(--secondary); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 25px rgba(37,211,102,0.6); }
    100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
}

/* ============================================================
   PAGE CONTENT
   ============================================================ */
.page-content {
    padding: 60px 0;
}

.page-content h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.page-content h2 {
    font-size: 28px;
    color: var(--primary);
    margin: 30px 0 15px;
}

.page-content h3 {
    font-size: 22px;
    color: var(--primary);
    margin: 25px 0 12px;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text);
}

.page-content ul, .page-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.page-content li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: var(--text);
}

.page-content ul li { list-style: disc; }
.page-content ol li { list-style: decimal; }

.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #2a3f6a 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 { font-size: 38px; font-weight: 700; margin-bottom: 10px; }
.page-banner p { font-size: 17px; color: rgba(255,255,255,0.8); }

/* ============================================================
   DOCUMENT CHECKLIST
   ============================================================ */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.checklist-category {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

.checklist-category h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist-category h3 i { color: var(--secondary); }

.checklist-category li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
}

.checklist-category li i {
    color: var(--secondary);
    margin-top: 4px;
}

/* ============================================================
   DISCLAIMER PAGE
   ============================================================ */
.disclaimer-notice {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 30px;
}

.disclaimer-notice h3 { color: #856404; margin-bottom: 10px; }
.disclaimer-notice ul { margin: 10px 0; padding-left: 20px; }
.disclaimer-notice ul li { list-style: disc; margin-bottom: 5px; color: #856404; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.mt-20 { margin-top: 20px; }
.text-center { text-align: center; }

/* ============================================================
   FLASH MESSAGES
   ============================================================ */
.flash-messages .alert {
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideDown 0.4s ease;
}

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

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--primary); color: var(--white);
    padding: 16px 0; transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
}
.cookie-text { display: flex; align-items: center; gap: 10px; font-size: 14px; flex: 1; }
.cookie-text i { font-size: 20px; color: var(--secondary); flex-shrink: 0; }
.cookie-text a { color: var(--secondary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner .btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
.cookie-banner .btn-outline:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 600px) {
    .cookie-banner-inner { flex-direction: column; text-align: center; }
    .cookie-actions { justify-content: center; }
    .cookie-text { justify-content: center; font-size: 13px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .services-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    /* Tablet dropdown: switch to vertical list */
    .dropdown-menu {
        display: block; flex-direction: column; gap: 0; white-space: normal;
        min-width: 220px; border-radius: var(--radius-sm); padding: 8px;
    }
    .dropdown-menu li { display: block; }
    .dropdown-menu a { display: flex; padding: 10px 14px; border-radius: 8px; font-size: 13px; }
    .dropdown-menu a:hover { background: rgba(255,107,53,0.06); color: var(--primary); }
    .dropdown-menu a:hover i { color: var(--secondary); }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

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

    .main-nav ul { flex-direction: column; gap: 0; }

    .main-nav a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        font-size: 16px;
    }
    .main-nav .has-dropdown > a { justify-content: space-between; }
    .dropdown-menu {
        position: static; display: block; gap: 0; white-space: normal; transform: none;
        box-shadow: none; border: none; opacity: 1; visibility: visible;
        max-height: 0; overflow: hidden; padding: 0; border-radius: 0;
        background: rgba(0,0,0,0.02); transition: max-height 0.35s ease;
    }
    .dropdown-menu.open { max-height: 300px; padding: 6px 0; }
    .dropdown-menu li { display: block; }
    .dropdown-menu a { display: flex; padding: 8px 20px; font-size: 13px; border-radius: 0; }
    .dropdown-menu a:hover { background: none; color: var(--secondary); }
    .dropdown-menu a:hover i { color: var(--secondary); }

    .mobile-toggle { display: flex; }
    .mobile-overlay.active { display: block; }

    .hero { padding: 60px 0; min-height: auto; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }

    .services-grid,
    .pricing-grid,
    .why-grid,
    .process-steps,
    .testimonials-grid,
    .checklist-grid { grid-template-columns: 1fr; }

    .process-steps::before { display: none; }

    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-5px); }

    .section { padding: 50px 0; }
    .section-header h2 { font-size: 28px; }

    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .page-banner { padding: 40px 0; }
    .page-banner h1 { font-size: 28px; }
    .page-content h1 { font-size: 28px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    .btn { padding: 10px 20px; font-size: 14px; }
    .hero-actions { flex-direction: column; }
    .cta-actions { flex-direction: column; align-items: center; }
}
