/* ===== 纽约整形 - SY Aesthetics 中文网站 ===== */

/* --- CSS Variables --- */
:root {
    --primary-color: #1a3a5c;
    --secondary-color: #c8a96e;
    --accent-color: #d4af37;
    --dark-color: #0d1b2a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --white: #fff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --max-width: 1400px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.8;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    line-height: 1.4;
    font-weight: 700;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.section-title p {
    color: var(--text-light);
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 169, 110, 0.4);
}

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

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

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

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

/* --- Header / Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.logo a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    display: block;
    padding: 0.5rem 0.6rem;
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--secondary-color);
    background: rgba(200, 169, 110, 0.08);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: rgba(200, 169, 110, 0.1);
    color: var(--secondary-color);
    padding-left: 1.5rem;
}

/* Sub-dropdown */
.dropdown-menu .sub-dropdown {
    position: relative;
}

.dropdown-menu .sub-dropdown .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
}

.dropdown-menu .sub-dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav CTA button */
.nav-cta .btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--dark-color);
    overflow: hidden;
    margin-top: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: var(--max-width);
    width: 100%;
    padding: 2rem 1.5rem;
    margin: 0 auto;
}

.hero-content h1 {
    color: var(--dark-color);
    font-size: 3.2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    max-width: 600px;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: left;
}

.hero-stat .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.hero-stat .label {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
}

/* --- Cards --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.card-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top center;
}

.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
}

.card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.card-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.card-link:hover {
    gap: 0.6rem;
}

/* --- Service/Procedure Sections --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.service-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    background: rgba(200, 169, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

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

/* --- Doctor Section --- */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.doctor-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.doctor-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
}

.doctor-info {
    padding: 1.5rem;
}

.doctor-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.doctor-info .title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.doctor-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light-color);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    line-height: 1;
}

.testimonial-card .stars {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.testimonial-card .procedure {
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: normal;
}

/* --- Before & After --- */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.ba-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.ba-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    bottom: 0;
    padding: 0.3rem 0.8rem;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
}

.ba-label.before {
    left: 0;
    background: rgba(0, 0, 0, 0.6);
}

.ba-label.after {
    right: 0;
    background: rgba(200, 169, 110, 0.85);
}

.ba-info {
    padding: 1.2rem;
    text-align: center;
}

.ba-info h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.ba-info p {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* --- Contact / Form --- */
.contact-section {
    background: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-info-item .icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(200, 169, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.contact-info-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

.form-group {
    margin-bottom: 1.2rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

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

.contact-form .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
}

/* --- Location Cards --- */
.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.location-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.location-card .map-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.location-card .location-details {
    padding: 1.5rem;
}

.location-card h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-card .detail-row {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    align-items: flex-start;
}

.location-card .detail-row .label {
    font-weight: 600;
    min-width: 50px;
    color: var(--primary-color);
}

/* --- Page Hero (Inner Pages) --- */
.page-hero {
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(200, 169, 110, 0.1);
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Procedure Detail Page --- */
.procedure-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.procedure-main h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.procedure-main p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.9;
}

.procedure-main ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.procedure-main ul li {
    list-style: disc;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.procedure-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--light-color);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--secondary-color);
}

.sidebar-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-card ul li:last-child {
    border-bottom: none;
}

.sidebar-card ul li a {
    color: var(--text-color);
    font-size: 0.9rem;
}

.sidebar-card ul li a:hover {
    color: var(--secondary-color);
    padding-left: 0.3rem;
}

.info-box {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-box:last-child {
    border-bottom: none;
}

.info-box .info-label {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 80px;
    font-size: 0.9rem;
}

.info-box .info-value {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(200, 169, 110, 0.05);
}

.faq-question .arrow {
    transition: var(--transition);
    font-size: 0.8rem;
    color: var(--secondary-color);
}

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

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

.faq-answer-inner {
    padding: 0 1.5rem 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

/* --- Stats Bar --- */
.stats-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.stat-item .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.3rem;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-banner .btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Media Section --- */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.media-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.media-card .media-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.media-card .media-body {
    padding: 1.5rem;
}

.media-card .source {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.media-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

/* --- Promo Section --- */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.promo-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.promo-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.promo-card .promo-badge {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin: 1.5rem 1.5rem 0;
    border-radius: 20px;
}

.promo-card .promo-body {
    padding: 1rem 1.5rem 1.5rem;
}

.promo-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.promo-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* --- Financing --- */
.financing-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.financing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.financing-card .finance-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.2rem;
    background: rgba(200, 169, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.financing-card h3 {
    margin-bottom: 0.8rem;
}

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

.financing-features {
    max-width: 700px;
    margin: 3rem auto 0;
}

.financing-features li {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
}

.financing-features li .check {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* --- Breadcrumb --- */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb span {
    margin: 0 0.5rem;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

/* --- Phone Float --- */
.phone-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(200, 169, 110, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.phone-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(200, 169, 110, 0.6);
    color: var(--white);
}

/* --- Footer --- */
footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-partner {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-partner a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-partner a:hover {
    color: var(--white);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .hero-content h1 { font-size: 2.5rem; }
    .page-hero h1 { font-size: 2.2rem; }

    .procedure-content {
        grid-template-columns: 1fr;
    }

    .procedure-sidebar {
        position: static;
    }

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

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

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

    .financing-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html { font-size: 15px; }

    section { padding: 3.5rem 0; }

    .hero-content h1 { font-size: 2rem; }
    .page-hero { padding: 7rem 0 3rem; }
    .page-hero h1 { font-size: 1.8rem; }

    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 1.5rem 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links > li {
        width: 100%;
    }

    .nav-links > li > a {
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu .sub-dropdown .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
    }

    .dropdown-menu .sub-dropdown.active .sub-menu {
        display: block;
    }

    .nav-cta {
        width: 100%;
        margin-top: 1rem;
    }

    .nav-cta .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat .number {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cards-grid,
    .ba-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.7rem; }
    .hero-content .subtitle { font-size: 1rem; }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .whatsapp-float,
    .phone-float {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .whatsapp-float { bottom: 1.5rem; right: 1.5rem; }
    .phone-float { bottom: 1.5rem; left: 1.5rem; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-gold { color: var(--secondary-color); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.bg-light { background: var(--light-color); }

/* --- Mobile overlay --- */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

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