/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Serif Display', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
    overflow-x: hidden;
    width: 100%;
    min-width: 320px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Luxury Pastel Color Variables */
:root {
    --dusty-rose: #E8C4C4;
    --sage-green: #B8C5B8;
    --warm-cream: #F7F3E9;
    --lavender-grey: #D4CCE0;
    --champagne: #F2E7D5;
    --deep-plum: #6B4E71;
    --warm-charcoal: #4A4A4A;
    --soft-pearl: #FEFCF8;
    --light-dusty-rose: rgba(232, 196, 196, 0.15);
    --light-sage: rgba(184, 197, 184, 0.2);
}

/* Navigation */
.navbar {
    background: rgba(254, 252, 248, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(107, 78, 113, 0.08);
    border-bottom: 1px solid var(--light-dusty-rose);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo-icon {
    transform: rotate(5deg) scale(1.05);
}

.nav-logo h1 {
    color: var(--deep-plum);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--warm-charcoal);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--dusty-rose);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--dusty-rose), var(--sage-green));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Mobile menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    height: calc(100vh - 80px);
    position: relative;
    background: linear-gradient(135deg, var(--soft-pearl) 0%, var(--warm-cream) 50%, var(--champagne) 100%);
    scroll-margin-top: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('images/background.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    mask: linear-gradient(to right, transparent 0%, black 50%, black 100%);
    -webkit-mask: linear-gradient(to right, transparent 0%, black 50%, black 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content,
.hero-image {
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 700px;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--light-dusty-rose);
    border: 1px solid var(--dusty-rose);
    border-radius: 25px;
    color: var(--deep-plum);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(232, 196, 196, 0.2);
}

.hero h1 {
    font-size: 4rem;
    color: var(--warm-charcoal);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--deep-plum) 0%, var(--dusty-rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    color: var(--warm-charcoal);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Serif Display', serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--deep-plum) 100%);
    color: var(--soft-pearl);
    box-shadow: 0 6px 20px rgba(232, 196, 196, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, var(--deep-plum) 0%, var(--dusty-rose) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(107, 78, 113, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--deep-plum);
    border: 2px solid var(--sage-green);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: var(--sage-green);
    color: var(--soft-pearl);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(184, 197, 184, 0.3);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dusty-rose);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--warm-charcoal);
    margin-top: 0.5rem;
    font-weight: 500;
    opacity: 0.7;
}


/* About Us Section */
.about-us {
    padding: 60px 20px 160px 20px;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-pearl) 50%, var(--champagne) 100%);
    position: relative;
    scroll-margin-top: 80px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, var(--sage-green) 30%, var(--dusty-rose) 70%, transparent 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.about-text {
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-badge {
    display: inline-block;
    width: fit-content;
    padding: 6px 12px;
    margin-top: 0;
    margin-bottom: 0.5rem;
    background: var(--light-dusty-rose);
    border: 1px solid var(--dusty-rose);
    border-radius: 25px;
    color: var(--deep-plum);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(232, 196, 196, 0.2);
}

.about-us h2 {
    font-size: 2.6rem;
    color: var(--warm-charcoal);
    margin-bottom: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--deep-plum) 0%, var(--dusty-rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-intro {
    font-size: 1.15rem;
    color: var(--warm-charcoal);
    line-height: 1.65;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.personal-story p {
    font-size: 1.15rem;
    color: var(--warm-charcoal);
    line-height: 1.65;
    margin-bottom: 1.8rem;
    opacity: 0.9;
}

.about-highlights {
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 0.6rem;
    padding: 0.6rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 243, 235, 0.98) 100%);
    border-radius: 8px;
    border: 1.5px solid rgba(232, 196, 196, 0.6);
    box-shadow: 0 4px 16px rgba(107, 78, 113, 0.08), 
                0 1px 4px rgba(232, 196, 196, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.highlight-item:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(107, 78, 113, 0.12), 
                0 2px 8px rgba(232, 196, 196, 0.2);
    border-color: rgba(232, 196, 196, 0.8);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-content h3 {
    font-size: 0.9rem;
    color: var(--deep-plum);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.highlight-content p {
    color: var(--warm-charcoal);
    opacity: 0.8;
    line-height: 1.55;
    font-size: 0.95rem;
}

.about-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-visual {
    position: relative;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(107, 78, 113, 0.15);
    margin-bottom: 0;
    margin-top: -35px;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--soft-pearl);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(15px);
    border: 1px solid var(--light-dusty-rose);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.overlay-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dusty-rose);
    line-height: 1;
}

.overlay-stat .stat-label {
    font-size: 0.9rem;
    color: var(--warm-charcoal);
    opacity: 0.8;
    margin-top: 0.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-card {
    background: var(--soft-pearl);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--light-dusty-rose);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(107, 78, 113, 0.12);
}

.stat-card .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sage-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 0.8rem;
    color: var(--warm-charcoal);
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 80px 20px 20px 20px;
    background: linear-gradient(135deg, var(--lavender-grey) 0%, var(--warm-cream) 50%, var(--soft-pearl) 100%);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, var(--dusty-rose) 30%, var(--sage-green) 70%, transparent 100%);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--warm-charcoal);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--deep-plum) 0%, var(--dusty-rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: var(--warm-charcoal);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.service-card-link:hover {
    transform: translateY(-2px);
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 243, 235, 0.98) 100%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: left;
    box-shadow: 0 8px 32px rgba(107, 78, 113, 0.08), 
                0 2px 8px rgba(232, 196, 196, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid rgba(232, 196, 196, 0.6);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/section-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    transition: all 0.4s ease;
    z-index: 1;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(107, 78, 113, 0.15), 
                0 4px 12px rgba(232, 196, 196, 0.2);
    border-color: rgba(232, 196, 196, 0.8);
}

.service-card:hover::before {
    transform: scale(1.1);
    opacity: 0.08;
}


.service-card::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2.5rem;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--dusty-rose), var(--sage-green));
    border-radius: 2px;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.75rem;
    color: var(--deep-plum);
    margin-bottom: 1.25rem;
    margin-top: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--warm-charcoal);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.service-card .service-number {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--dusty-rose), var(--sage-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--soft-pearl);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(232, 196, 196, 0.3);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--soft-pearl) 0%, var(--champagne) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}


.how-it-works h2 {
    text-align: center;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--deep-plum) 0%, var(--dusty-rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.how-it-works .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 243, 235, 0.98) 100%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: left;
    position: relative;
    box-shadow: 0 8px 32px rgba(107, 78, 113, 0.08), 0 2px 8px rgba(232, 196, 196, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid rgba(232, 196, 196, 0.6);
    overflow: visible;
    z-index: 2;
}




.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--deep-plum) 0%, var(--dusty-rose) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

/* Add arrows between steps */
.step:not(:last-child)::after {
    content: '→';
    position: absolute;
    left: calc(100% - 0.1rem);
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--dusty-rose);
    font-weight: bold;
    z-index: 10;
    opacity: 1;
    transition: all 0.3s ease;
    pointer-events: none;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.step:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(5px);
    color: var(--deep-plum);
}



.step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(107, 78, 113, 0.15), 0 4px 12px rgba(232, 196, 196, 0.2);
    border-color: rgba(232, 196, 196, 0.8);
}

.step:hover::before {
    transform: scaleX(1);
}

.step-number {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--dusty-rose), var(--sage-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    z-index: 2;
}

.step h3 {
    font-size: 1.75rem;
    color: var(--deep-plum);
    margin-bottom: 1.25rem;
    margin-top: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.step p {
    color: var(--warm-charcoal);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.step > * {
    position: relative;
    z-index: 2;
}

/* Step-specific styling - consistent pastel blue for all */
.step-bring .step-number,
.step-discuss .step-number,
.step-alterations .step-number,
.step-ready .step-number {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
}

/* Step images */
.step-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    position: relative;
}

.step-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 78, 113, 0.1) 0%, rgba(232, 196, 196, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step:hover .step-image::after {
    opacity: 1;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--soft-pearl) 0%, var(--champagne) 50%);
}

.step:hover .step-image img {
    transform: scale(1.08) rotate(1deg);
}

/* Dual image layout for first step */
.step-image-dual {
    display: flex;
    gap: 8px;
}

.step-image-dual img {
    width: calc(50% - 4px);
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Specific positioning for third card second image */
.step-alterations .step-image-dual img:last-child {
    object-position: 25% center;
}

/* Specific positioning for fourth card second image */
.step-ready .step-image-dual img:last-child {
    object-position: 60% center;
}

.step-image-dual img:first-child {
    transform: perspective(200px) rotateY(5deg);
}

.step-image-dual img:last-child {
    transform: perspective(200px) rotateY(-5deg);
}

.step:hover .step-image-dual img:first-child {
    transform: perspective(200px) rotateY(8deg) scale(1.05);
}

.step:hover .step-image-dual img:last-child {
    transform: perspective(200px) rotateY(-8deg) scale(1.05);
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--champagne) 0%, var(--soft-pearl) 50%, var(--lavender-grey) 100%);
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
    scroll-margin-top: 93px;
}

.contact .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--light-dusty-rose);
    border: 1px solid var(--dusty-rose);
    border-radius: 30px;
    color: var(--deep-plum);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(232, 196, 196, 0.3);
}

.contact h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--deep-plum) 0%, var(--dusty-rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--warm-charcoal);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.contact-method {
    background: var(--soft-pearl);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1.5px solid var(--dusty-rose);
    box-shadow: 0 8px 32px rgba(232, 196, 196, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.contact-method.primary-method {
    border: 2px solid var(--dusty-rose);
    box-shadow: 0 12px 40px rgba(232, 196, 196, 0.25);
}

.contact-method:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(232, 196, 196, 0.3);
    border-color: var(--deep-plum);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    color: var(--dusty-rose);
}

.method-content h3 {
    font-size: 1.5rem;
    color: var(--deep-plum);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.method-content p {
    color: var(--warm-charcoal);
    opacity: 0.8;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.method-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.whatsapp-btn {
    background: linear-gradient(135deg, var(--deep-plum) 0%, var(--dusty-rose) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(232, 196, 196, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 196, 196, 0.4);
}

.email-btn {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--dusty-rose) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(184, 197, 184, 0.3);
}

.email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 197, 184, 0.4);
}

.contact-guarantees {
    max-width: 1200px;
    margin: 0 auto;
}

.guarantees-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--deep-plum);
    margin-bottom: 2.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--deep-plum) 0%, var(--dusty-rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.guarantee-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 243, 235, 0.98) 100%);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1.5px solid rgba(232, 196, 196, 0.6);
    box-shadow: 0 8px 32px rgba(107, 78, 113, 0.08), 0 2px 8px rgba(232, 196, 196, 0.15);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dusty-rose) 0%, var(--sage-green) 50%, var(--dusty-rose) 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.guarantee-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(107, 78, 113, 0.15), 0 4px 20px rgba(232, 196, 196, 0.2);
    border-color: rgba(232, 196, 196, 0.8);
}

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

.guarantee-icon-wrapper {
    margin-bottom: 1.5rem;
}

.guarantee-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-dusty-rose) 0%, rgba(248, 243, 235, 0.9) 100%);
    border-radius: 50%;
    font-size: 2.5rem;
    border: 3px solid rgba(232, 196, 196, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.guarantee-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.guarantee-card:hover .guarantee-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--sage-green) 100%);
    border-color: var(--dusty-rose);
    color: white;
    box-shadow: 0 8px 25px rgba(232, 196, 196, 0.4);
}

.guarantee-card:hover .guarantee-icon::before {
    transform: rotate(45deg) translateX(100%);
}

.guarantee-content h4 {
    font-size: 1.3rem;
    color: var(--deep-plum);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.guarantee-content p {
    color: var(--warm-charcoal);
    opacity: 0.85;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.guarantee-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--dusty-rose) 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(232, 196, 196, 0.3);
    transition: all 0.3s ease;
}

.guarantee-card:hover .guarantee-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(232, 196, 196, 0.4);
}

/* Service Page Styles */
.service-page {
    margin-top: 80px;
}

.service-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--soft-pearl) 0%, var(--warm-cream) 50%, var(--champagne) 100%);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
}

.service-hero-content {
    flex: 1;
    max-width: 600px;
    padding: 0 20px;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--light-dusty-rose);
    border: 1px solid var(--dusty-rose);
    border-radius: 25px;
    color: var(--deep-plum);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(232, 196, 196, 0.2);
}

.service-hero h1 {
    font-size: 4rem;
    color: var(--warm-charcoal);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--deep-plum) 0%, var(--dusty-rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero p {
    font-size: 1.3rem;
    color: var(--warm-charcoal);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.8;
}

.service-hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.service-hero-visual {
    flex: 1;
    padding: 0 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    background: var(--soft-pearl);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(107, 78, 113, 0.08);
    border: 1px solid var(--light-dusty-rose);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 30px rgba(107, 78, 113, 0.12);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--dusty-rose), var(--sage-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--soft-pearl);
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(232, 196, 196, 0.3);
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--deep-plum);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--warm-charcoal);
    opacity: 0.8;
    line-height: 1.6;
}

.service-details {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--lavender-grey) 0%, var(--warm-cream) 100%);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.detail-card {
    background: var(--soft-pearl);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(107, 78, 113, 0.08);
    border: 1px solid var(--light-dusty-rose);
}

.detail-card h3 {
    font-size: 1.5rem;
    color: var(--deep-plum);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.detail-card ul {
    list-style: none;
    padding: 0;
}

.detail-card li {
    padding: 0.5rem 0;
    color: var(--warm-charcoal);
    opacity: 0.8;
    position: relative;
    padding-left: 1.5rem;
}

.detail-card li::before {
    content: '•';
    color: var(--dusty-rose);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-dusty-rose);
    color: var(--warm-charcoal);
}

.pricing-item:last-of-type {
    border-bottom: none;
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--warm-charcoal);
    opacity: 0.6;
    font-style: italic;
    margin-top: 1rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.process-step .step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--sage-green), var(--dusty-rose));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--soft-pearl);
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--deep-plum);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--warm-charcoal);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

/* Pricing Section */
.pricing {
    padding: 20px 20px 40px 20px;
    background: var(--soft-pearl);
    scroll-margin-top: 93px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, var(--dusty-rose) 30%, var(--sage-green) 70%, transparent 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--light-dusty-rose);
    border: 1px solid var(--dusty-rose);
    border-radius: 25px;
    color: var(--deep-plum);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(232, 196, 196, 0.2);
}

.pricing h2 {
    font-size: 3rem;
    color: var(--warm-charcoal);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--deep-plum) 0%, var(--dusty-rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: var(--warm-charcoal);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.pricing-card {
    background: var(--soft-pearl);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    border: 2px solid var(--light-dusty-rose);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(107, 78, 113, 0.15);
}

.pricing-card.popular {
    border-color: var(--dusty-rose);
    box-shadow: 0 15px 35px rgba(232, 196, 196, 0.2);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--dusty-rose), var(--sage-green));
    color: var(--soft-pearl);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(232, 196, 196, 0.3);
}

.pricing-tier {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-plum);
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 2.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dusty-rose);
    display: block;
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: var(--warm-charcoal);
    opacity: 0.7;
    margin-top: 0.5rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2.5rem;
}

.pricing-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--sage-green), var(--dusty-rose));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--soft-pearl);
    font-weight: 700;
    flex-shrink: 0;
}

.feature-text {
    color: var(--warm-charcoal);
    opacity: 0.9;
    line-height: 1.4;
}

.pricing-cta {
    width: 100%;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Serif Display', serif;
    border: none;
    font-size: 1rem;
}

.pricing-cta.primary {
    background: linear-gradient(135deg, var(--dusty-rose), var(--deep-plum));
    color: var(--soft-pearl);
    box-shadow: 0 6px 20px rgba(232, 196, 196, 0.3);
}

.pricing-cta.primary:hover {
    background: linear-gradient(135deg, var(--deep-plum), var(--dusty-rose));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 78, 113, 0.4);
}

.pricing-cta.secondary {
    background: transparent;
    color: var(--deep-plum);
    border: 2px solid var(--sage-green);
}

.pricing-cta.secondary:hover {
    background: var(--sage-green);
    color: var(--soft-pearl);
    transform: translateY(-2px);
}

.pricing-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--light-dusty-rose);
}

.pricing-note {
    text-align: left;
}

.pricing-note p {
    color: var(--warm-charcoal);
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.pricing-contact {
    text-align: center;
    padding: 2.5rem;
    background: var(--soft-pearl);
    border-radius: 20px;
    border: 1px solid var(--light-dusty-rose);
    backdrop-filter: blur(10px);
}

.pricing-contact h3 {
    font-size: 1.4rem;
    color: var(--deep-plum);
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-contact p {
    color: var(--warm-charcoal);
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: var(--deep-plum);
    color: var(--soft-pearl);
    text-align: center;
    padding: 2rem 0;
    scroll-margin-top: 93px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 20px;
        text-align: center;
        height: auto;
        min-height: calc(100vh - 80px);
        justify-content: center;
    }
    
    .hero::after {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .cta-button {
        min-width: 120px;
        padding: 14px 24px;
    }

    .services {
        padding: 80px 20px;
    }

    .services h2 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    .service-card {
        padding: 2.5rem 2rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guarantees-title {
        font-size: 1.5rem;
    }
    
    .contact {
        padding: 60px 20px;
    }
    
    .contact h2 {
        font-size: 2.5rem;
    }
    
    .contact-header {
        margin-bottom: 2.5rem;
    }
    
    .contact-methods {
        margin-bottom: 1rem;
    }
    
    .contact-method {
        padding: 2rem 1.5rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .service-hero {
        flex-direction: column;
        padding: 60px 20px;
        text-align: center;
    }

    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-hero-visual {
        margin-top: 3rem;
    }

    .service-features {
        gap: 1.5rem;
    }

    .feature-item:hover {
        transform: none;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-us {
        padding: 60px 20px 120px 20px;
        min-height: auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .about-visual {
        order: -1;
    }

    .about-text {
        padding-right: 0;
        text-align: center;
        width: 100%;
    }

    .about-visual {
        padding-left: 0;
        width: 100%;
    }

    .about-us h2 {
        font-size: 2.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-cta {
        justify-content: center;
    }

    .pricing {
        padding: 80px 20px;
    }

    .pricing h2 {
        font-size: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }

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

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .pricing-footer {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .pricing-note {
        text-align: center;
    }

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

    .contact-buttons .cta-button {
        min-width: 200px;
    }

    .nav-logo h1 {
        font-size: 1.6rem;
    }

    .logo-icon svg {
        width: 32px;
        height: 32px;
    }

    .nav-logo {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .services h2,
    .how-it-works h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .step {
        padding: 1.5rem;
    }
    
    .contact {
        padding: 40px 15px;
    }
    
    .contact-header {
        margin-bottom: 2rem;
    }
    
    .contact-methods {
        gap: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-method {
        padding: 1.5rem 1rem;
    }
    
    footer {
        padding: 1.5rem 15px;
    }
    
    .method-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .about-us {
        padding: 40px 20px 80px 20px;
    }
    
    .about-content {
        gap: 1.5rem;
    }
    
    .about-us h2 {
        font-size: 2rem;
    }
    
    .about-intro {
        font-size: 1rem;
    }
    
}

/* New Fornet-inspired Pricing Styles */
.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing h2 {
    font-size: 2.5rem;
    color: var(--deep-plum);
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-subtitle {
    color: var(--warm-charcoal);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.pricing-garments {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.garment-card {
    background: white;
    border-radius: 12px;
    padding: 1.2rem 1rem;
    border: 1px solid rgba(232, 196, 196, 0.3);
    box-shadow: 0 3px 12px rgba(107, 78, 113, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.garment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dusty-rose) 0%, var(--sage-green) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.garment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(107, 78, 113, 0.15);
    border-color: var(--dusty-rose);
}

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

.garment-icon {
    display: none;
}

.garment-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.garment-content h3 {
    font-size: 1.3rem;
    color: var(--deep-plum);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.garment-services {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-align: left;
    flex: 1;
    justify-content: center;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.8rem;
    background: rgba(232, 196, 196, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0.3rem;
}

.service-item:hover {
    background: rgba(232, 196, 196, 0.15);
    transform: translateX(4px);
}

.service-name {
    color: var(--warm-charcoal);
    font-weight: 500;
    font-size: 0.85rem;
}

.service-price {
    color: var(--deep-plum);
    font-weight: 700;
    font-size: 0.9rem;
}

.custom-card {
    background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--sage-green) 100%);
    color: white;
    border-color: var(--dusty-rose);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 1.5rem 1.2rem;
}

.custom-card h3 {
    color: white;
}

.custom-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    flex: 1;
}

.custom-cta {
    display: inline-block;
    background: white;
    color: var(--deep-plum);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    align-self: center;
}

.custom-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.pricing-disclaimer {
    text-align: center;
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(232, 196, 196, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(232, 196, 196, 0.2);
}

.pricing-disclaimer p {
    color: var(--warm-charcoal);
    opacity: 0.8;
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.4;
}

.pricing-guarantee {
    background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--sage-green) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.guarantee-content h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.guarantee-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.guarantee-point {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 500;
}

.guarantee-icon {
    font-size: 1.2rem;
}

.pricing-cta {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    color: var(--deep-plum);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .pricing {
        padding: 60px 15px;
    }
    
    .pricing-garments {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .garment-card {
        padding: 2rem 1.5rem;
    }
    
    .garment-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .garment-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .pricing {
        padding: 40px 10px;
    }
    
    .garment-card {
        padding: 1.5rem 1rem;
    }
    
    .garment-icon {
        font-size: 2rem;
    }
    
    .garment-content h3 {
        font-size: 1.2rem;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        text-align: left;
    }
    
    .custom-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}