/* Font setup */
@font-face {
    font-family: 'Silk Serif';
    src: url('fonts/silk-serif.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Yassitf';
    src: url('fonts/yassitf.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

/* Base Styles */
:root {
    --white-main: #FFFFFF;
    --white-off: #F9F9F9;
    --black-main: #000000;
    --black-soft: #333333;
    --accent: #8E4A64;
    --accent-light: rgba(142, 74, 100, 0.1);
    --accent-gradient: linear-gradient(135deg, #8E4A64, #A86B83);
}

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

html {
    overflow-x: clip;
}

body {
    position: relative;
    width: 100%;
}

body {
    font-family: 'Yassitf', 'Helvetica', 'Arial', sans-serif;
    background-color: var(--white-main);
    color: var(--black-main);
    line-height: 1.8;
    font-weight: 300;
}

/* Subtle Background Texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/noise-pattern.svg');
    opacity: 0.015;
    pointer-events: none;
    z-index: 9999;
}

img,
video {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Silk Serif', 'Times New Roman', serif;
    font-weight: 300;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1 {
    font-size: 4.2rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 2rem;
}

h2 {
    font-size: 3.6rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

h3 {
    font-size: 2.8rem;
    letter-spacing: -0.5px;
    margin-bottom: 1.8rem;
}

h4 {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

p {
    font-size: 1rem;
    color: var(--black-soft);
    margin-bottom: 1.2rem;
    line-height: 1.9;
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* Pull Quotes */
.pull-quote {
    font-family: 'Silk Serif', serif;
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 300;
    font-style: italic;
    padding: 2rem 0;
    color: var(--accent);
    opacity: 0.9;
    position: relative;
}

.pull-quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    left: -1.5rem;
    top: 1rem;
    opacity: 0.2;
}

/* Layout and Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

section {
    padding: 120px 0;
    overflow-x: hidden;
}

/* Section header spacing */
section > h2, section > h3 {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

/* Vertical Rhythm Enhancement */
.vertical-rhythm > * + * {
    margin-top: 1.5rem;
}

/* Strategic Asymmetry */
.asymmetric-layout {
    display: grid;
    grid-template-columns: 1.618fr 1fr;
    gap: 4rem;
    align-items: center;
}

.asymmetric-layout.reverse {
    grid-template-columns: 1fr 1.618fr;
}

/* Content Container */
.content-container {
    max-width: 85%;
    margin: 0 auto;
}

/* Section Dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.1), rgba(0,0,0,0));
    margin: 3rem 0;
    width: 100%;
}

/* UI Elements */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--white-main);
    color: var(--black-main);
    border: 1px solid var(--black-main);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: var(--black-main);
    color: var(--white-main);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(0,0,0,0.05);
    transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: -1;
}

.btn:hover::after {
    width: 100%;
}

.accent-btn {
    background: var(--accent-gradient);
    color: var(--white-main);
    border: none;
    box-shadow: 0 2px 10px rgba(142, 74, 100, 0.2);
}

.accent-btn:hover {
    background: var(--black-main);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 1rem;
    color: var(--accent);
    font-family: 'Yassitf', 'Helvetica', 'Arial', sans-serif;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Staggered fade-in for lists */
.staggered-fade-in > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.staggered-fade-in > *.visible:nth-child(1) { transition-delay: 0s; }
.staggered-fade-in > *.visible:nth-child(2) { transition-delay: 0.1s; }
.staggered-fade-in > *.visible:nth-child(3) { transition-delay: 0.2s; }

/* Make service cards visible by default even without animation */
.services-grid > .service-card {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background-color: var(--accent);
    z-index: 1000;
    width: 0;
    transition: width 0.1s ease;
}

/* Header */
header {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    width: 100%;
    overflow-x: hidden;
    position: sticky;
    top: 0;
    background-color: var(--white-main);
    z-index: 100;
}

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

.logo {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Yassitf', 'Helvetica', 'Arial', sans-serif;
    font-weight: 300;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-link:hover,
.logo-link:focus-visible {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--black-main);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    position: relative;
    font-family: 'Yassitf', 'Helvetica', 'Arial', sans-serif;
    font-weight: 300;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--black-main);
    transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: relative;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 100;
}

.mobile-menu-toggle span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--black-main);
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 9px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 18px;
}

/* Hero Section (Artist Feature) */
.hero {
    padding: 120px 0;
    display: flex;
    background-color: var(--white-main);
}

.hero .container {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.hero-img {
    width: 45%;
    flex-shrink: 0;
}

.hero-img img {
    width: 100%;
    display: block;
    filter: brightness(0.98) contrast(1.02);
    transition: filter 0.5s ease;
}

.hero-content {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    margin-top: -0.15em;
    margin-bottom: 0.6rem;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 2rem;
    font-family: 'Open Sans', 'Helvetica', sans-serif;
    font-weight: 300;
}

.hero-content .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--black-main);
    margin-bottom: 1rem;
}

.hero-cta {
    margin-top: 2.5rem;
}

/* Artist Info (below hero image) */
.artist-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.artist-info h4 {
    font-family: 'Silk Serif', 'Times New Roman', serif;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.artist-info p {
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
    color: var(--black-soft);
}

.biotek-logo-link {
    display: inline-block;
    margin-top: 0.8rem;
}

.artist-info .biotek-logo {
    display: block;
    width: 85px;
    max-width: 100%;
    height: auto;
}

.artist-info .instagram-link {
    display: block;
    width: max-content;
    margin-top: 0.6rem;
}

/* Transformations Section (Before/After) */
.transformations {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(to bottom, var(--white-main), var(--white-off));
}

.transformations-content {
    max-width: 650px;
    margin: 0 auto 3rem;
}

.before-after-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.before-after {
    display: flex;
    max-width: 800px;
}

.before-after-img {
    position: relative;
    width: 50%;
}

.before-after-img img {
    width: 100%;
    display: block;
    transition: filter 0.5s ease;
}

.before-after-img img:hover {
    filter: brightness(1) contrast(1.05);
}

.before-after-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.12em;
}

/* Services Section */
.services {
    padding: 120px 0;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    width: calc(50% - 1rem);
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--white-main);
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, var(--accent), transparent);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    opacity: 0.7;
}

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

.service-img {
    width: 100%;
    margin-bottom: 1.5rem;
}

.service-img img {
    width: 100%;
    display: block;
    filter: brightness(0.98) contrast(1.02);
}

.service-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    font-family: 'Yassitf', 'Helvetica', 'Arial', sans-serif;
    font-weight: 300;
    letter-spacing: 0.12em;
}

.service-description {
    font-size: 0.95rem;
    color: var(--black-soft);
    line-height: 1.8;
}

.arrow-icon {
    margin-left: 0.5rem;
}

/* Artist Badge */
.artist-badge {
    padding: 60px 0;
    background-color: var(--white-off);
}

.artist-badge-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.artist-badge-photo {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.artist-badge-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-badge-info h4 {
    font-family: 'Silk Serif', 'Times New Roman', serif;
    margin-bottom: 0.3rem;
}

.artist-badge-info p {
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.instagram-link {
    display: inline-block;
    margin-top: 0.5rem;
    text-decoration: none;
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: var(--black-main);
}

/* Process Steps */
.process-step {
    position: relative;
}

.process-step-number {
    font-family: 'Silk Serif', 'Times New Roman', serif;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.15;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 5rem 3rem;
    background-color: var(--white-off);
    margin: 0 0 5rem;
}

.cta-section h3 {
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 550px;
    margin: 0 auto 2rem;
}

.cta-section .btn {
    padding: 16px 40px;
    font-size: 0.95rem;
}

/* Service Detail Pages */
.service-detail {
    padding: 120px 0;
}

.service-detail-header {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    font-family: 'Yassitf', 'Helvetica', 'Arial', sans-serif;
    font-weight: 300;
    color: var(--accent);
}

.service-detail-content {
    display: flex;
    margin-bottom: 4rem;
    align-items: flex-start;
    gap: 3rem;
}

.service-detail-text {
    width: 50%;
    padding-top: 1rem;
}

.service-detail-img {
    width: 50%;
}

.service-detail-img img {
    width: 100%;
    display: block;
    filter: brightness(0.98) contrast(1.02);
}

.service-reverse {
    flex-direction: row-reverse;
}

.service-reverse .service-detail-text {
    padding-top: 1rem;
}

/* Image Treatments */
.framed-image {
    position: relative;
    padding: 0.5rem;
    background-color: var(--white-main);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.framed-image::before {
    content: '';
    position: absolute;
    top: 1rem;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    border: 1px solid rgba(0,0,0,0.05);
    pointer-events: none;
}

.accent-border-image {
    position: relative;
}

.accent-border-image::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent);
    z-index: -1;
}

/* Decorative Elements */
.decorative-element {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: var(--accent);
    opacity: 0.5;
}

.decorative-line {
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: var(--accent);
    opacity: 0.3;
}

/* Section Introductions */
.section-introduction {
    max-width: 650px;
    margin: 0 auto 5rem;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 120px 0;
}

.contact-grid {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    width: 40%;
}

.contact-form {
    width: 60%;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Yassitf', 'Helvetica', 'Arial', sans-serif;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-detail p {
    margin-bottom: 0.3rem;
}

/* Form Elements */
form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.form-group:focus-within::after {
    width: 100%;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black-soft);
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: var(--accent);
}

input, textarea, select {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background-color: transparent;
    font-family: 'Yassitf', 'Helvetica', 'Arial', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button {
    align-self: flex-start;
}

/* Submission Success Modal */
.success-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.success-modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.success-modal {
    width: min(460px, 100%);
    background: var(--white-main);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    padding: 2rem 1.6rem 1.6rem;
    position: relative;
    text-align: center;
}

.success-modal-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--accent-gradient);
    color: var(--white-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.success-modal h4 {
    margin-bottom: 0.5rem;
    text-transform: none;
    font-size: 1.6rem;
    letter-spacing: 0;
}

.success-modal p {
    margin-bottom: 1.2rem;
}

.success-modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.7rem;
    border: none;
    background: transparent;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    color: var(--black-soft);
    padding: 0.2rem;
}

.success-modal-close:hover {
    color: var(--black-main);
}

.success-modal-ok {
    align-self: center;
}

/* Custom Select Styling */
select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

/* Map */
.map {
    margin-top: 4rem;
    height: 400px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Columns */
.content-columns {
    column-count: 2;
    column-gap: 3rem;
    margin-bottom: 3rem;
}

.content-columns p:first-of-type::first-letter {
    font-size: 3.5em;
    float: left;
    padding-right: 0.1em;
    line-height: 0.7;
    color: var(--accent);
    font-family: 'Silk Serif', serif;
}

/* Key Feature List */
.key-feature-list {
    counter-reset: feature-counter;
    list-style: none;
    padding: 0;
}

.key-feature-list li {
    padding-left: 3rem;
    position: relative;
    margin-bottom: 1.5rem;
}

.key-feature-list li::before {
    counter-increment: feature-counter;
    content: "0" counter(feature-counter);
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 0.8rem;
    font-family: 'Silk Serif', serif;
    color: var(--accent);
    opacity: 0.8;
}

/* Featured Testimonial */
.featured-testimonial {
    padding: 4rem 3rem;
    background-color: var(--white-off);
    position: relative;
    margin: 5rem 0;
}

.featured-testimonial::before {
    content: "\201D";
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 8rem;
    font-family: 'Silk Serif', serif;
    color: var(--accent);
    opacity: 0.1;
    line-height: 0;
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    background-color: var(--white-off);
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-column {
    width: 30%;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--black-soft);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--black-main);
}

.social-links {
    display: flex;
    list-style: none;
    margin-top: 1rem;
}

.social-links li {
    margin-right: 1rem;
}

.social-links a {
    text-decoration: none;
    color: var(--black-soft);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

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

.copyright {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.8rem;
    color: var(--black-soft);
}

/* Media Queries */
@media (max-width: 991px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 1.5rem;
        box-sizing: border-box;
    }
}

@media (max-width: 767px) {
    /* Typography adjustments */
    h1 {
        font-size: 2.5rem;
        letter-spacing: -0.01em;
        margin-bottom: 1rem;
    }
    
    h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    section {
        padding: 70px 0;
    }
    
    .section-header {
        font-size: 0.8rem;
        letter-spacing: 0.1em;
    }
    
    /* Navigation adjustments */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        background-color: var(--white-main);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        padding: 6rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        z-index: 90;
        flex-direction: column;
    }
    
    .nav-open .nav-links {
        transform: translateX(0);
    }
    
    .nav-open .mobile-menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-open .mobile-menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .nav-links li {
        margin-left: 0;
        margin-bottom: 1rem;
    }
    
    /* Hero section adjustments */
    .hero {
        padding: 70px 0;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero .container {
        gap: 0;
    }

    .hero-img, .hero-content {
        width: 100%;
    }
    
    .hero-img {
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        text-align: left;
    }
    
    /* Content column adjustments */
    .content-columns {
        column-count: 1;
    }
    
    /* Contact section adjustments */
    .contact-grid {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
    
    /* Fix for services section */
    .services-grid {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
        margin-bottom: 2rem;
    }

    /* Artist badge mobile */
    .artist-badge-content {
        flex-direction: column;
        text-align: center;
    }

    /* Process steps mobile */
    .process-step-number {
        font-size: 2.5rem;
    }

    /* CTA mobile */
    .cta-section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 576px) {
    /* Typography further refinements */
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* Before/After section adjustments */
    .before-after {
        flex-direction: column;
    }
    
    .before-after-img {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    /* Service detail adjustments */
    .service-detail-content {
        flex-direction: column;
    }

    .service-detail-text, .service-detail-img {
        width: 100%;
        padding: 0;
    }

    .service-detail-img {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .service-reverse .service-detail-text {
        padding: 0;
    }

    .service-detail-content {
        margin-bottom: 4rem;
    }
    
    .accent-border-image::after {
        bottom: -5px;
        right: -5px;
    }
    
    .featured-testimonial {
        padding: 3rem 1.5rem;
    }
    
    .featured-testimonial::before {
        font-size: 5rem;
        top: 1rem;
        left: 1rem;
    }

    .success-modal {
        padding: 1.5rem 1rem 1.2rem;
    }

    .success-modal h4 {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    /* Even smaller devices */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-header {
        font-size: 0.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}