/* ============================================
   Deep Roots Beauty Bar — Custom Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --charcoal-900: #1a1a2e;
    --charcoal-800: #2d2d44;
    --charcoal-700: #3d3d5c;
    --charcoal-600: #4a4a6a;
    --charcoal-500: #5c5c7a;
    --coral-500: #E06C5C;
    --coral-400: #E8836F;
    --coral-300: #F0A08E;
    --coral-200: #F7C4B8;
    --coral-100: #FDE8E2;
    --coral-50:  #FFF5F2;
    --white:     #FFFFFF;
    --off-white: #FAFAFA;
    --gray-50:   #F8F8FA;
    --gray-100:  #F1F1F4;
    --gray-200:  #E5E5EB;
    --gray-300:  #D1D1DB;
    --gray-400:  #A1A1B5;
    --gray-500:  #71718A;
    --gray-600:  #52526B;
    --gray-700:  #3A3A52;
    --gray-800:  #252538;
    --gray-900:  #13131F;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 26, 46, 0.10);
    --shadow-lg: 0 8px 32px rgba(26, 26, 46, 0.12);
    --shadow-xl: 0 16px 48px rgba(26, 26, 46, 0.14);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 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.6;
    color: var(--charcoal-800);
    background: var(--white);
    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;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

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

.btn-primary:hover {
    background: var(--coral-400);
    border-color: var(--coral-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 108, 92, 0.35);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--charcoal-800);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--charcoal-800);
    border-color: var(--white);
}

.btn-light:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--coral-500);
    border-color: var(--coral-500);
}

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

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

.mt-2 {
    margin-top: 16px;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--charcoal-900);
}

.nav-logo-icon {
    color: var(--coral-500);
}

.nav-logo-accent {
    color: var(--coral-500);
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal-600);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral-500);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--coral-500);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: var(--coral-500);
    padding: 10px 20px;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--coral-400);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(224, 108, 92, 0.3);
}

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

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal-800);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

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

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--charcoal-900);
    overflow: hidden;
    padding: 100px 0 60px;
}

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

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--coral-500);
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--coral-300);
    bottom: -100px;
    left: 10%;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--coral-400);
    top: 30%;
    left: 40%;
    opacity: 0.1;
}

.hero-shape-4 {
    width: 150px;
    height: 150px;
    background: var(--white);
    top: 20%;
    right: 30%;
    opacity: 0.03;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(224, 108, 92, 0.15);
    border: 1px solid rgba(224, 108, 92, 0.3);
    color: var(--coral-300);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-title-accent {
    color: var(--coral-400);
    display: block;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-main img {
    width: 100%;
    height: 680px;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--coral-500);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.hero-floating-card--1 {
    bottom: 80px;
    left: -30px;
}

.hero-floating-card--2 {
    top: 60px;
    right: -20px;
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--coral-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-500);
    flex-shrink: 0;
}

.floating-card-icon--green {
    background: #E8F5E9;
    color: #4CAF50;
}

.floating-card-label {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
}

.floating-card-value {
    display: block;
    font-size: 14px;
    color: var(--charcoal-800);
    font-weight: 700;
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--coral-500);
    margin-bottom: 16px;
}

.section-tag--light {
    color: var(--coral-300);
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--charcoal-900);
    margin-bottom: 16px;
}

.section-title--light {
    color: var(--white);
}

.section-title--dark {
    color: var(--charcoal-800);
}

.section-title-accent {
    color: var(--coral-500);
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle--light {
    color: rgba(255, 255, 255, 0.7);
}

/* --- Services Section --- */
.services {
    position: relative;
    padding: 100px 0;
    background: var(--gray-50);
    overflow: hidden;
}

.services-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--coral-100);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    pointer-events: none;
}

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

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--coral-500);
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.service-card--highlight {
    background: var(--charcoal-900);
    border-color: var(--charcoal-800);
}

.service-card--highlight::before {
    background: var(--coral-400);
}

.service-card--highlight:hover {
    box-shadow: 0 16px 48px rgba(26, 26, 46, 0.3);
}

.service-card-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--coral-100);
    border-radius: 50%;
    opacity: 0.5;
    transition: var(--transition);
}

.service-card--highlight .service-card-accent {
    background: rgba(224, 108, 92, 0.2);
}

.service-card:hover .service-card-accent {
    transform: scale(1.5);
    opacity: 0.3;
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--coral-500);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--coral-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-500);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card--highlight .service-icon {
    background: rgba(224, 108, 92, 0.2);
    color: var(--coral-300);
}

.service-card:hover .service-icon {
    background: var(--coral-500);
    color: var(--white);
}

.service-card--highlight:hover .service-icon {
    background: var(--coral-500);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal-900);
    margin-bottom: 12px;
}

.service-card--highlight .service-title {
    color: var(--white);
}

.service-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.service-card--highlight .service-description {
    color: rgba(255, 255, 255, 0.65);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--coral-500);
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
}

.service-card--highlight .service-link {
    color: var(--coral-300);
}

/* --- About Section --- */
.about {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

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

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.about-image-secondary img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--coral-500);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.about-exp-text {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.about-content {
    max-width: 520px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0 8px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--coral-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-500);
    flex-shrink: 0;
}

.about-feature span {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal-700);
}

/* --- Gallery Section --- */
.gallery {
    padding: 100px 0;
    background: var(--charcoal-900);
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.gallery-item--large {
    grid-column: span 7;
    grid-row: span 2;
}

.gallery-item--large img {
    height: 100%;
    min-height: 420px;
}

.gallery-item--wide {
    grid-column: span 7;
}

.gallery-item--wide img {
    height: 200px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    grid-column: span 5;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) img {
    height: 200px;
}

/* --- Testimonials Section --- */
.testimonials {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

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

.testimonial-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--coral-500);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--charcoal-700);
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--coral-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-500);
    flex-shrink: 0;
}

.testimonial-name {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: var(--charcoal-800);
}

.testimonial-location {
    display: block;
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 500;
}

/* --- CTA Section --- */
.cta {
    position: relative;
    padding: 100px 0;
    background: var(--coral-500);
    overflow: hidden;
}

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

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: 10%;
}

.cta-shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 30%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
}

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

/* --- Contact Section --- */
.contact {
    padding: 100px 0;
    background: var(--gray-50);
    overflow: hidden;
}

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

.contact-intro {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 32px;
}

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

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--coral-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-500);
    flex-shrink: 0;
}

.contact-detail-label {
    display: block;
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-detail-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal-800);
}

.contact-detail-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--coral-500);
    transition: var(--transition);
}

.contact-detail-link:hover {
    color: var(--coral-400);
    text-decoration: underline;
}

.contact-hours {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--gray-200);
}

.contact-hours-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--charcoal-800);
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.contact-hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.contact-hour-row span:first-child {
    color: var(--gray-500);
    font-weight: 500;
}

.contact-hour-row span:last-child {
    color: var(--charcoal-800);
    font-weight: 600;
}

.contact-hour-row--closed span:last-child {
    color: var(--coral-500);
}

/* --- Contact Form --- */
.contact-form-wrapper {
    max-width: 100%;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form-title {
    font-size: 24px;
    color: var(--charcoal-800);
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 28px;
}

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

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal-700);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--charcoal-800);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--coral-500);
    box-shadow: 0 0 0 3px rgba(224, 108, 92, 0.1);
}

.form-input::placeholder {
    color: var(--gray-300);
}

.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='%2371718A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

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

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

.form-success.show {
    display: block;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #E8F5E9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CAF50;
    margin: 0 auto 20px;
}

.form-success-title {
    font-size: 22px;
    color: var(--charcoal-800);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 15px;
    color: var(--gray-500);
}

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

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

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-icon {
    color: var(--coral-400);
}

.footer-logo span {
    color: var(--coral-400);
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--coral-400);
}

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

.footer-contact-item svg {
    color: var(--coral-400);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--coral-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* --- Scroll Animations --- */
[data-animate] {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="false"] {
    opacity: 0;
    transform: translateY(24px);
}

@media (prefers-reduced-motion: no-preference) {
    [data-animate] {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    [data-animate="true"] {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    .hero-image-main img {
        height: 480px;
    }

    .hero-floating-card--1 {
        left: 10px;
        bottom: 40px;
    }

    .hero-floating-card--2 {
        right: 10px;
        top: 20px;
    }

    .hero-image-accent {
        display: none;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-stat-number {
        font-size: 22px;
    }

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

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

    .about-image-secondary {
        right: 10px;
        bottom: -20px;
        width: 200px;
    }

    .about-image-secondary img {
        height: 170px;
    }

    .about-experience-badge {
        left: 10px;
        top: -15px;
    }

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

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

    .gallery-item--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item--large img {
        min-height: 280px;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
        grid-column: span 1;
    }

    .gallery-item img {
        height: 200px !important;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

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

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

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

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

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

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

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

    .hero-stats {
        flex-wrap: wrap;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .contact-form-card {
        padding: 24px;
    }

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

    .gallery-item--large,
    .gallery-item--wide {
        grid-column: span 1;
    }
}
