/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #132d52;
    --primary-dark: #0d1a2e;
    --primary-mid: #1e3d6f;
    --accent: #c9a84c;
    --accent-hover: #b89438;
    --accent-light: #d4b85a;
    --gold-glow: rgba(201, 168, 76, 0.25);
    --text: #2c2c2c;
    --text-light: #5a5a5a;
    --bg: #ffffff;
    --bg-light: #f5f6f8;
    --bg-dark: #0d1a2e;
    --border: #e2e2e2;
    --shadow: 0 4px 20px rgba(13, 26, 46, 0.08);
    --shadow-lg: 0 10px 40px rgba(13, 26, 46, 0.14);
    --radius: 10px;
    --radius-sm: 6px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

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

.section {
    padding: 80px 0;
}

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

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

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

.section-header h2 span {
    color: var(--accent);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--gold-glow);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

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

.btn-sm {
    padding: 8px 22px;
    font-size: 13px;
    background: var(--accent);
    color: #fff;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    transition: var(--transition);
}

.btn-sm:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.top-info span i {
    color: var(--accent);
    margin-right: 6px;
}

.top-social {
    display: flex;
    gap: 12px;
}

.top-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.top-social a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ===== Navbar ===== */
.navbar {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--primary-dark);
    white-space: nowrap;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.navbar.scrolled .logo-img {
    height: 42px;
}

.logo i {
    font-size: 28px;
    color: var(--accent);
}

.logo strong {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

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

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

.nav-phone {
    background: var(--accent);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.nav-phone:hover {
    background: var(--accent-hover);
}

.nav-phone i {
    margin-right: 6px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-dark);
    transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

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

.hero-tag {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    color: var(--accent-light);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.hero-content p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* ===== About ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-img-box i {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: #fff;
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
}

.exp-num {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge span {
    font-size: 13px;
    font-weight: 500;
}

.about-content .section-tag {
    display: block;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-content h2 span {
    color: var(--accent);
}

.about-content > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
}

.about-feature i {
    color: var(--accent);
    font-size: 18px;
}

/* ===== Services ===== */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 32px;
    color: #fff;
}

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

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

.service-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-hover);
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 40px;
    border-radius: var(--radius);
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 14px;
    opacity: 0.8;
}

/* ===== Countries ===== */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.country-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.country-flag {
    margin-bottom: 15px;
}

.flag-emoji {
    font-size: 40px;
}

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

.country-card ul {
    margin-bottom: 20px;
}

.country-card li {
    font-size: 13px;
    color: var(--text-light);
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.country-card li i {
    color: var(--accent);
    margin-top: 4px;
    font-size: 12px;
}

/* ===== Why Choose Us ===== */
.why-us {
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 28px;
    color: var(--accent);
}

.why-card h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-light);
    font-size: 14px;
}

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

.faq-item {
    background: #fff;
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
}

.faq-question i {
    color: var(--accent);
    transition: var(--transition);
    font-size: 14px;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-light);
    font-size: 14px;
}

/* ===== Appointment ===== */
.appointment {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.appointment-info .section-tag {
    color: var(--accent);
}

.appointment-info h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #fff;
}

.appointment-info h2 span {
    color: var(--accent);
}

.appointment-info > p {
    opacity: 0.8;
    margin-bottom: 30px;
}

.support-stats {
    display: flex;
    gap: 40px;
}

.support-stat {
    text-align: center;
}

.stat-circle {
    width: 100px;
    height: 100px;
    position: relative;
    margin: 0 auto 10px;
}

.stat-circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 3;
}

.circle-fill {
    fill: none;
    stroke: var(--accent);
    stroke-width: 3;
    stroke-linecap: round;
}

.stat-circle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 700;
}

.support-stat p {
    font-size: 14px;
    opacity: 0.8;
}

.appointment-form-wrap {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
}

.appointment-form h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 25px;
    text-align: center;
}

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

.form-group select,
.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--bg-light);
    transition: var(--transition);
    appearance: auto;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 137, 29, 0.1);
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
}

/* ===== Pricing ===== */
.pricing {
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.pricing-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 35px 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
}

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

.pricing-card.featured {
    border-color: var(--accent);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
}

.price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-card ul {
    margin-bottom: 25px;
    text-align: left;
}

.pricing-card li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card li i {
    color: var(--accent);
    margin-top: 4px;
}

/* ===== Testimonials ===== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.testimonial-stars {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 14px;
}

.testimonial-stars span {
    margin-left: 8px;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 15px;
}

.testimonial-card p {
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-author h4 {
    font-size: 16px;
    color: var(--primary-dark);
}

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

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-card {
    text-align: center;
    padding: 35px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-card i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.footer-logo i {
    color: var(--accent);
    font-size: 28px;
}

.footer-logo strong {
    color: var(--accent);
}

.footer-col > p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.footer-col h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-col ul li {
    padding: 6px 0;
}

.footer-col ul li a {
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

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

.footer-contact li i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}

/* ===== Nav Phones ===== */
.nav-phones {
    display: flex;
    gap: 8px;
}

.nav-phone.secondary {
    background: var(--primary);
}

.nav-phone.secondary:hover {
    background: var(--primary-dark);
}

/* ===== Why Choose Us (Horizontal Cards) ===== */
.why-grid-five {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.why-card-h {
    background: #fff;
    padding: 25px;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--accent);
}

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

.why-icon-h {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon-h i {
    font-size: 22px;
    color: var(--accent);
}

.why-card-h h3 {
    font-size: 17px;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.why-card-h p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
}

/* ===== How It Works ===== */
.how-it-works {
    background: var(--bg-light);
}

.process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    flex: 1;
    min-width: 180px;
    max-width: 240px;
}

.process-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    font-weight: 800;
    color: rgba(26, 58, 92, 0.08);
    line-height: 1;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--transition);
}

.process-step:hover .process-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px var(--gold-glow);
}

.process-icon i {
    font-size: 30px;
    color: #fff;
}

.process-step h3 {
    font-size: 17px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

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

.process-connector {
    color: var(--accent);
    font-size: 22px;
    opacity: 0.5;
    margin: 0 -5px;
}

/* ===== Final CTA ===== */
.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 650px;
    margin: 0 auto;
}

.cta-content .section-tag {
    color: var(--accent);
}

.cta-content h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 15px;
}

.cta-content h2 span {
    color: var(--accent);
}

.cta-content > p {
    font-size: 17px;
    opacity: 0.85;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.btn-lg {
    padding: 15px 35px;
    font-size: 16px;
}

.btn-outline-dark {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    background: transparent;
    padding: 15px 35px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-dark:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.cta-phones {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    opacity: 0.7;
    font-size: 14px;
}

.cta-phones span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-phones i {
    color: var(--accent);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about-grid,
    .appointment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

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

    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-phones {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .process-connector {
        display: none;
    }

    .process-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-step {
        max-width: none;
    }

    .why-grid-five {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .hero {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .section {
        padding: 60px 0;
    }

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

    .services-grid,
    .why-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px;
    }

    .stat-number {
        font-size: 32px;
    }

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

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

    .pricing-card.featured {
        transform: none;
    }

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

@media (max-width: 480px) {
    .hero {
        height: 450px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .about-content h2,
    .appointment-info h2 {
        font-size: 28px;
    }

    .support-stats {
        flex-direction: column;
        align-items: center;
    }

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