/* ============================================
   MUSTANG DENTAL CARE — Custom Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-500: #f59e0b;
    --amber-600: #d97706;

    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-200: #fecdd3;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;

    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-600: #059669;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
    --shadow-soft: 0 8px 30px rgba(13, 148, 136, 0.1);
    --shadow-soft-lg: 0 16px 50px rgba(13, 148, 136, 0.12);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-700);
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* --- Utility --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--teal-600);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

.btn--primary:hover {
    background: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.9);
    color: var(--slate-700);
    border: 1.5px solid var(--slate-200);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: #ffffff;
    border-color: var(--teal-300);
    color: var(--teal-700);
    transform: translateY(-2px);
}

.btn--ghost-sm {
    background: var(--teal-50);
    color: var(--teal-700);
    border: 1.5px solid var(--teal-200);
    padding: 10px 20px;
    font-size: 14px;
    border-radius: var(--radius-full);
}

.btn--ghost-sm:hover {
    background: var(--teal-100);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

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

/* --- Section Header --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.section-header--centered {
    margin-bottom: 60px;
}

.section-header__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--teal-50);
    color: var(--teal-700);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    border: 1px solid var(--teal-100);
}

.section-header__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header__title--left {
    text-align: left;
}

.section-header__subtitle {
    font-size: 17px;
    color: var(--slate-500);
    line-height: 1.7;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(241, 245, 249, 0.8);
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--slate-800);
}

.nav__logo-accent {
    color: var(--teal-600);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__link {
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav__link:hover {
    color: var(--teal-700);
    background: var(--teal-50);
}

.nav__link--cta {
    background: var(--teal-600);
    color: #ffffff !important;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--teal-700);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.nav__toggle:hover {
    background: var(--slate-100);
}

.nav__toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--slate-600);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--teal-50) 0%, #ffffff 40%, var(--slate-50) 100%);
}

.hero__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.hero__blob--1 {
    width: 500px;
    height: 500px;
    background: var(--teal-200);
    top: -100px;
    right: -100px;
    opacity: 0.3;
}

.hero__blob--2 {
    width: 350px;
    height: 350px;
    background: var(--amber-200);
    bottom: -50px;
    left: -50px;
    opacity: 0.25;
}

.hero__blob--3 {
    width: 200px;
    height: 200px;
    background: var(--rose-200);
    top: 40%;
    left: 35%;
    opacity: 0.2;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: var(--teal-700);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--teal-100);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--slate-900);
    margin-bottom: 20px;
}

.hero__title-accent {
    color: var(--teal-600);
    position: relative;
}

.hero__title-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--teal-200);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.7;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--slate-500);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__visual {
    position: relative;
}

.hero__main-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft-lg);
}

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

.hero__main-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
}

.hero__main-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--teal-800);
    box-shadow: var(--shadow-md);
}

.hero__float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.hero__float-card--1 {
    top: 20px;
    left: -30px;
    animation-delay: 0s;
}

.hero__float-card--2 {
    bottom: 120px;
    left: -40px;
    animation-delay: 1.3s;
}

.hero__float-card--3 {
    bottom: 20px;
    right: -20px;
    animation-delay: 2.6s;
}

.hero__float-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.hero__float-card__number {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--slate-800);
    line-height: 1.2;
}

.hero__float-card__label {
    display: block;
    font-size: 12px;
    color: var(--slate-500);
    line-height: 1.3;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero__scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--slate-400);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Services --- */
.services {
    padding: 100px 0;
    background: #ffffff;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--teal-400);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
}

.service-card:hover {
    border-color: var(--teal-200);
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
}

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

.service-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 10px;
}

.service-card__desc {
    font-size: 15px;
    color: var(--slate-500);
    line-height: 1.7;
}

/* --- About --- */
.about {
    padding: 100px 0;
    background: var(--slate-50);
}

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

.about__visual {
    position: relative;
}

.about__image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image-wrapper img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.about__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--teal-200);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.6;
}

.about__experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--teal-600);
    color: #ffffff;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}

.about__experience-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.about__experience-text {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.9;
}

.about__content {
    max-width: 520px;
}

.about__text {
    font-size: 16px;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 32px;
}

.about__highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-700);
}

.about__highlight svg {
    flex-shrink: 0;
}

/* --- Why Choose Us --- */
.why-us {
    padding: 100px 0;
    background: #ffffff;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all var(--transition-base);
    position: relative;
}

.why-card:hover {
    background: #ffffff;
    border-color: var(--teal-200);
    box-shadow: var(--shadow-soft);
    transform: translateY(-3px);
}

.why-card__number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--teal-100);
    line-height: 1;
    margin-bottom: 12px;
    transition: color var(--transition-base);
}

.why-card:hover .why-card__number {
    color: var(--teal-200);
}

.why-card__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 10px;
}

.why-card__text {
    font-size: 15px;
    color: var(--slate-500);
    line-height: 1.7;
}

/* --- Testimonials --- */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-800) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.testimonials .section-header__tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--teal-200);
    border-color: rgba(255, 255, 255, 0.15);
}

.testimonials .section-header__title {
    color: #ffffff;
}

.testimonials .section-header__subtitle {
    color: var(--teal-200);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    backdrop-filter: blur(8px);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.testimonial-card__quote-mark {
    font-family: Georgia, serif;
    font-size: 64px;
    line-height: 1;
    color: var(--teal-400);
    opacity: 0.5;
    margin-bottom: -8px;
}

.testimonial-card__text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--slate-700);
    flex-shrink: 0;
}

.testimonial-card__author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
}

.testimonial-card__location {
    font-size: 13px;
    color: var(--teal-300);
}

/* --- Contact --- */
.contact {
    padding: 100px 0;
    background: var(--slate-50);
}

.contact__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #ffffff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contact__content {
    padding: 56px 48px;
    background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-600) 100%);
    color: #ffffff;
}

.contact__content .section-header__tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--teal-100);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact__content .section-header__title {
    color: #ffffff;
}

.contact__text {
    font-size: 16px;
    color: var(--teal-100);
    line-height: 1.75;
    margin-bottom: 36px;
    margin-top: 16px;
}

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

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.contact__info-item:hover {
    transform: translateX(4px);
}

.contact__info-item span:last-child {
    display: flex;
    flex-direction: column;
}

.contact__info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact__info-label {
    font-size: 12px;
    color: var(--teal-200);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.contact__info-value {
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
}

.contact__form-wrapper {
    padding: 56px 48px;
}

.contact__form-header {
    margin-bottom: 28px;
}

.contact__form-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 6px;
}

.contact__form-header p {
    font-size: 14px;
    color: var(--slate-500);
}

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

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

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--slate-800);
    background: var(--slate-50);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--slate-400);
}

.form-input:focus {
    border-color: var(--teal-400);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

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

.contact__success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.contact__success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--teal-50);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__success h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 8px;
}

.contact__success p {
    font-size: 15px;
    color: var(--slate-500);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* --- Location --- */
.location {
    padding: 100px 0;
    background: #ffffff;
}

.location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.location__info {
    display: flex;
    flex-direction: column;
}

.location__text {
    font-size: 16px;
    color: var(--slate-500);
    line-height: 1.75;
    margin-bottom: 32px;
    margin-top: 16px;
}

.location__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.location__detail {
    display: flex;
    gap: 16px;
}

.location__detail svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.location__detail strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 4px;
}

.location__detail p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.7;
}

.location__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--shadow-lg);
}

/* --- Footer --- */
.footer {
    background: var(--slate-900);
    color: var(--slate-400);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 14px;
}

.footer__logo span {
    color: var(--teal-400);
}

.footer__tagline {
    font-size: 14px;
    line-height: 1.7;
    color: var(--slate-400);
    max-width: 280px;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 14px;
    color: var(--slate-400);
    transition: all var(--transition-fast);
}

.footer__links a:hover {
    color: var(--teal-400);
    padding-left: 4px;
}

.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__contact-list a,
.footer__contact-list span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--slate-400);
    text-decoration: none;
    transition: color var(--transition-fast);
    line-height: 1.5;
}

.footer__contact-list a:hover {
    color: var(--teal-400);
}

.footer__bottom {
    border-top: 1px solid var(--slate-800);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 13px;
    color: var(--slate-500);
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

    .hero__visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero__float-card--1 {
        left: 0;
    }

    .hero__float-card--2 {
        left: -10px;
    }

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

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

    .about__visual {
        max-width: 480px;
    }

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

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

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 20px 24px;
        gap: 4px;
        border-bottom: 1px solid var(--slate-100);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition-base);
        pointer-events: none;
    }

    .nav__links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav__link {
        width: 100%;
        padding: 12px 16px;
    }

    .nav__link--cta {
        margin-left: 0;
        text-align: center;
        justify-content: center;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .hero__float-card {
        display: none;
    }

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

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

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

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

    .location__map {
        min-height: 300px;
    }

    .contact__content,
    .contact__form-wrapper {
        padding: 36px 24px;
    }

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

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

    .about__experience-badge {
        right: 10px;
        bottom: -10px;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__title {
        font-size: 28px;
    }

    .section-header__title {
        font-size: 26px;
    }

    .service-card {
        padding: 28px 22px;
    }

    .why-card {
        padding: 28px 22px;
    }
}
