/* ============================================
   Lauren Xera UGC Portfolio - Styles
   Pink White Modern Scrapbook Aesthetic
   ============================================ */

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

:root {
    --pink-light: #fdf2f8;
    --pink-soft: #fce7f3;
    --pink-medium: #f9a8d4;
    --pink-dark: #ec4899;
    --pink-accent: #db2777;
    --cream: #fefcf3;
    --paper: #f5f0e6;
    --paper-lines: #c4d4e0;
    --text-dark: #1f1f1f;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.15);
    --glow-pink: rgba(249, 168, 212, 0.4);
    --glow-purple: rgba(196, 181, 253, 0.4);
    --glow-coral: rgba(251, 146, 146, 0.4);
    --glow-mint: rgba(167, 243, 208, 0.3);
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--pink-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ============================================
   Navigation Dots
   ============================================ */
.nav-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--pink-medium);
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot:hover,
.dot.active {
    opacity: 1;
    transform: scale(1.3);
    background: var(--pink-dark);
}

/* ============================================
   Slides / Sections
   ============================================ */
.slide {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 40px;
    scroll-snap-align: start;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-soft) 50%, #fff 100%);
    overflow: hidden;
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    z-index: 10;
}

/* ============================================
   Typography
   ============================================ */
.title-group {
    margin-bottom: 40px;
}

.title-main {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 0.9;
    letter-spacing: -2px;
}

.title-script {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 700;
    color: var(--pink-dark);
    line-height: 0.8;
    margin-top: -10px;
}

.pink-text {
    color: var(--pink-dark);
}

/* ============================================
   Decorative Flowers
   ============================================ */
.decorative-flowers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.flower {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.6;
}

.flower::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, var(--pink-medium) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, var(--pink-medium) 0%, transparent 50%),
                radial-gradient(circle at 50% 70%, var(--pink-medium) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, var(--pink-medium) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, var(--pink-medium) 0%, transparent 50%);
}

.flower::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: #fbbf24;
    border-radius: 50%;
}

.flower-1 { top: 5%; left: 5%; transform: scale(0.8); }
.flower-2 { top: 10%; right: 15%; transform: scale(1.2); }
.flower-3 { bottom: 15%; left: 10%; transform: scale(0.9); }
.flower-4 { bottom: 5%; right: 5%; transform: scale(0.7); }
.flower-5 { top: 40%; right: 3%; transform: scale(0.6); }

/* Flower SVG alternative styling */
.flower {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='25' r='20' fill='%23f9a8d4' opacity='0.8'/%3E%3Ccircle cx='25' cy='50' r='20' fill='%23f9a8d4' opacity='0.8'/%3E%3Ccircle cx='75' cy='50' r='20' fill='%23f9a8d4' opacity='0.8'/%3E%3Ccircle cx='35' cy='75' r='20' fill='%23f9a8d4' opacity='0.8'/%3E%3Ccircle cx='65' cy='75' r='20' fill='%23f9a8d4' opacity='0.8'/%3E%3Ccircle cx='50' cy='50' r='12' fill='%23fbbf24'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.flower::before,
.flower::after {
    display: none;
}

/* ============================================
   Cloud Decoration
   ============================================ */
.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 100px;
    z-index: 2;
}

.cloud-top {
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80px;
}

.cloud-top::before,
.cloud-top::after {
    content: '';
    position: absolute;
    background: inherit;
    border-radius: 50%;
}

.cloud-top::before {
    width: 100px;
    height: 100px;
    top: -40px;
    left: 20%;
}

.cloud-top::after {
    width: 120px;
    height: 120px;
    top: -50px;
    right: 25%;
}

/* ============================================
   Star Decorations
   ============================================ */
.star-decoration {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 5;
}

.star-1 {
    bottom: 20%;
    left: 15%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ec4899'%3E%3Cpath d='M12 2l2.4 7.4h7.6l-6 4.6 2.3 7-6.3-4.6-6.3 4.6 2.3-7-6-4.6h7.6z'/%3E%3C/svg%3E");
    background-size: contain;
}

.star-silver {
    top: 30%;
    right: 20%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239ca3af'%3E%3Cpath d='M12 2l2.4 7.4h7.6l-6 4.6 2.3 7-6.3-4.6-6.3 4.6 2.3-7-6-4.6h7.6z'/%3E%3C/svg%3E");
    background-size: contain;
}

.star-pink {
    bottom: 25%;
    right: 10%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f472b6'%3E%3Cpath d='M12 2l2.4 7.4h7.6l-6 4.6 2.3 7-6.3-4.6-6.3 4.6 2.3-7-6-4.6h7.6z'/%3E%3C/svg%3E");
    background-size: contain;
}

.star-decoration.large {
    width: 60px;
    height: 60px;
}

/* ============================================
   Polaroid Frames
   ============================================ */
.polaroid {
    background: white;
    padding: 12px 12px 40px 12px;
    box-shadow: 0 4px 15px var(--shadow-dark);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.02);
}

.polaroid-inner {
    overflow: hidden;
    background: var(--paper);
}

.polaroid img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.polaroid.tilt-left {
    transform: rotate(-5deg);
}

.polaroid.tilt-right {
    transform: rotate(5deg);
}

.polaroid.small-polaroid {
    padding: 8px 8px 30px 8px;
}

.profile-polaroid {
    width: 300px;
    transform: rotate(-5deg);
    transition: transform 0.4s ease;
}

.profile-polaroid:hover {
    transform: rotate(0deg) scale(1.03);
}

.profile-polaroid .polaroid-inner {
    height: 340px;
    overflow: hidden;
}

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

/* ============================================
   Torn Paper Effect
   ============================================ */
.torn-paper {
    background: var(--cream);
    padding: 30px 35px;
    position: relative;
    box-shadow: 3px 3px 10px var(--shadow);
}

.torn-paper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(135deg, transparent 33.33%, var(--cream) 33.33%, var(--cream) 66.66%, transparent 66.66%),
                linear-gradient(225deg, transparent 33.33%, var(--cream) 33.33%, var(--cream) 66.66%, transparent 66.66%);
    background-size: 20px 20px;
    transform: translateY(-100%);
}

.torn-paper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(45deg, transparent 33.33%, var(--cream) 33.33%, var(--cream) 66.66%, transparent 66.66%),
                linear-gradient(315deg, transparent 33.33%, var(--cream) 33.33%, var(--cream) 66.66%, transparent 66.66%);
    background-size: 20px 20px;
    transform: translateY(100%);
}

.intro-paper {
    transform: rotate(1deg);
}

.intro-paper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
}

.about-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.about-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--pink-dark);
    font-size: 1.5rem;
    line-height: 1;
}

/* ============================================
   Notepad Style
   ============================================ */
.notepad {
    background: var(--paper);
    padding: 40px 35px 30px;
    position: relative;
    box-shadow: 2px 2px 8px var(--shadow);
    background-image: repeating-linear-gradient(
        transparent,
        transparent 28px,
        var(--paper-lines) 28px,
        var(--paper-lines) 29px
    );
    background-position-y: 15px;
}

.notepad-clip {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background: #d8b4c8;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 2px 5px var(--shadow);
}

.notepad-list {
    list-style: none;
}

.notepad-list li {
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.notepad-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-dark);
}

/* ============================================
   Tape Decorations
   ============================================ */
.tape {
    position: absolute;
    width: 80px;
    height: 30px;
    background: rgba(200, 200, 200, 0.5);
    transform: rotate(-45deg);
}

.tape-dark {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 60px;
    height: 25px;
    background: rgba(80, 80, 80, 0.6);
    transform: rotate(15deg);
}

.tape-corner {
    top: 10%;
    right: 5%;
    transform: rotate(-30deg);
}

/* ============================================
   Browser Mockup
   ============================================ */
.browser-mockup {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-dark);
}

.browser-dots {
    display: flex;
    gap: 6px;
    padding: 10px 15px;
    background: #f0f0f0;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.browser-dots span:first-child { background: #ff6b6b; }
.browser-dots span:nth-child(2) { background: #ffd93d; }
.browser-dots span:last-child { background: #6bcb77; }

.browser-mockup img {
    width: 100%;
    display: block;
}

.browser-mockup.small {
    max-width: 300px;
}

/* ============================================
   Phone Mockup
   ============================================ */
.phone-mockup {
    background: #1a1a1a;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 10px 30px var(--shadow-dark);
    width: 140px;
}

.phone-mockup img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.phone-mockup.large {
    width: 180px;
}

/* ============================================
   Section: About / Hero
   ============================================ */
.hero-slide {
    padding: 40px 60px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-left .title-group {
    margin-bottom: 30px;
}

.hero-right {
    display: flex;
    align-items: center;
}

.hero-right .intro-paper {
    max-width: 500px;
}

.about-content .title-group {
    margin-bottom: 30px;
}

/* Legacy support */
.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

/* ============================================
   Section: Content Style
   ============================================ */
.style-layout {
    display: flex;
    gap: 80px;
    align-items: center;
    flex-wrap: wrap;
}

.polaroid-stack {
    display: flex;
    gap: -30px;
    position: relative;
}

.polaroid-stack .polaroid {
    width: 200px;
}

.polaroid-stack .polaroid:last-child {
    margin-left: -40px;
    margin-top: 30px;
}

/* ============================================
   Section: Services
   ============================================ */
.services-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.services-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.services-images .browser-mockup {
    max-width: 320px;
}

.services-images .small-polaroid {
    width: 150px;
    margin-left: 40px;
    margin-top: -30px;
}

.services-notepad {
    max-width: 400px;
}

/* ============================================
   Section: Projects
   ============================================ */
.project-header {
    margin-bottom: 40px;
}

.project-label {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: var(--pink-dark);
    display: block;
    margin-bottom: 10px;
}

.project-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.project-details {
    flex: 1;
    min-width: 300px;
}

.detail-card {
    background: var(--paper);
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 2px 2px 6px var(--shadow);
}

.detail-card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--pink-dark);
    margin-bottom: 5px;
}

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

.project-points {
    list-style: none;
    background: var(--paper);
    padding: 20px 25px;
    margin-bottom: 20px;
    background-image: repeating-linear-gradient(
        transparent,
        transparent 24px,
        var(--paper-lines) 24px,
        var(--paper-lines) 25px
    );
}

.project-points li {
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.project-points li::before {
    content: '•';
    position: absolute;
    left: 0;
}

.project-images {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.project-images .browser-mockup {
    max-width: 280px;
}

/* ============================================
   Section: Creative Process
   ============================================ */
.process-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.process-images {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.process-images .polaroid {
    width: 180px;
}

.process-notepad {
    max-width: 450px;
}

.process-list {
    list-style: none;
}

.process-list li {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--text-dark);
    padding: 10px 0;
}

.step-num {
    color: var(--pink-dark);
    font-weight: 700;
}

/* ============================================
   Section: Tools
   ============================================ */
.tools-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.tools-images {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.tools-notepad {
    max-width: 400px;
}

.tools-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 20px;
    font-style: italic;
    line-height: 1.5;
}

/* ============================================
   Section: Contact
   ============================================ */
.contact-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-images {
    display: flex;
    position: relative;
}

.contact-images .polaroid {
    width: 180px;
}

.contact-images .overlay-polaroid {
    margin-left: -60px;
    margin-top: 40px;
}

.contact-paper {
    max-width: 400px;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: var(--pink-dark);
    font-weight: 600;
}

.collab-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    padding-top: 15px;
    border-top: 1px dashed var(--pink-medium);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 900px) {
    .slide {
        padding: 40px 25px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-left {
        align-items: center;
    }

    .hero-left .title-group {
        text-align: center;
    }

    .hero-right {
        justify-content: center;
    }

    .profile-polaroid {
        width: 250px;
    }

    .profile-polaroid .polaroid-inner {
        height: 280px;
    }

    .about-layout,
    .style-layout,
    .services-layout,
    .project-layout,
    .process-layout,
    .tools-layout,
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

    .polaroid-stack {
        justify-content: center;
    }

    .project-details {
        min-width: 100%;
    }

    .nav-dots {
        right: 15px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 600px) {
    .title-main {
        font-size: 2.5rem;
    }

    .title-script {
        font-size: 3.5rem;
    }

    .profile-polaroid {
        width: 220px;
    }

    .profile-polaroid .polaroid-inner {
        height: 260px;
    }

    .polaroid-stack .polaroid {
        width: 160px;
    }

    .notepad-list li {
        font-size: 1.2rem;
    }

    .phone-mockup {
        width: 120px;
    }

    .browser-mockup {
        max-width: 100% !important;
    }

    .flower {
        width: 50px;
        height: 50px;
        opacity: 0.4;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

.flower {
    animation: pulse 4s ease-in-out infinite;
}

.flower-1 { animation-delay: 0s; }
.flower-2 { animation-delay: 0.5s; }
.flower-3 { animation-delay: 1s; }
.flower-4 { animation-delay: 1.5s; }
.flower-5 { animation-delay: 2s; }

/* Scroll animations */
.slide {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Hover effects */
.torn-paper:hover,
.notepad:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 20px var(--shadow-dark);
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* ============================================
   Section: Rates & Packages
   ============================================ */
.rates-layout {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.rate-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    width: 280px;
    box-shadow: 0 8px 30px var(--shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-dark);
}

.rate-card.featured {
    background: linear-gradient(135deg, var(--pink-soft) 0%, white 100%);
    border: 2px solid var(--pink-medium);
    transform: scale(1.05);
}

.rate-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.rate-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink-dark);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rate-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--pink-medium);
}

.rate-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.rate-price {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--pink-dark);
    font-weight: 700;
}

.rate-features {
    list-style: none;
}

.rate-features li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-medium);
    position: relative;
    padding-left: 25px;
}

.rate-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pink-dark);
    font-weight: bold;
}

.rates-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Section: Testimonials
   ============================================ */
.center-title {
    text-align: center;
}

.testimonials-layout {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 320px;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--pink-medium);
    line-height: 0.5;
    margin-bottom: 10px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-soft) 0%, var(--pink-medium) 100%);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.8rem;
    color: var(--text-light);
}

@media (max-width: 900px) {
    .rates-layout,
    .testimonials-layout {
        flex-direction: column;
        align-items: center;
    }

    .rate-card.featured {
        transform: scale(1);
    }

    .rate-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* ============================================
   FULLWIDTH LAYOUT - CLEAN & BIG
   ============================================ */

/* Fullwidth Section */
.fullwidth-section {
    padding: 60px 80px;
}

.fullwidth-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Big Title Left */
.big-title-left {
    display: flex;
    flex-direction: column;
}

.mega-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 0.85;
    letter-spacing: -3px;
}

.mega-script {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 700;
    color: var(--pink-dark);
    line-height: 0.8;
    margin-top: -15px;
}

/* Big List Right */
.big-list-right {
    padding: 40px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--text-dark);
    padding: 25px 0;
    border-bottom: 2px solid rgba(249, 168, 212, 0.3);
    position: relative;
    padding-left: 30px;
    transition: all 0.3s ease;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--pink-dark);
    border-radius: 50%;
}

.feature-list li:hover {
    padding-left: 40px;
    color: var(--pink-dark);
}

/* Project Fullwidth */
.project-content {
    grid-template-columns: 1fr;
    gap: 50px;
}

.project-info-full {
    text-align: center;
}

.project-tag {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--pink-dark);
    display: block;
    margin-bottom: 10px;
}

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

.project-block {
    background: rgba(255, 255, 255, 0.6);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(249, 168, 212, 0.2);
    transition: all 0.3s ease;
}

.project-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.1);
}

.block-label {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--pink-dark);
    margin-bottom: 15px;
}

.block-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.block-list {
    list-style: none;
    padding: 0;
}

.block-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-medium);
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
}

.block-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--pink-medium);
    border-radius: 50%;
}

/* Process Steps Full */
.process-steps-full {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-full {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: var(--text-dark);
    padding: 25px 0;
    border-bottom: 2px solid rgba(249, 168, 212, 0.3);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
}

.step-full:last-child {
    border-bottom: none;
}

.step-full:hover {
    padding-left: 20px;
}

.step-num-big {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--pink-dark);
    min-width: 80px;
}

/* Contact Full */
.contact-full {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-line {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(249, 168, 212, 0.3);
}

.contact-line:last-of-type {
    border-bottom: none;
}

.contact-label-big {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--pink-dark);
}

.contact-value-big {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--text-dark);
    font-weight: 500;
}

.collab-cta {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    padding: 30px;
    background: rgba(249, 168, 212, 0.15);
    border-radius: 20px;
    margin-top: 20px;
}

/* Responsive Fullwidth */
@media (max-width: 900px) {
    .fullwidth-section {
        padding: 40px 30px;
    }

    .fullwidth-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .big-title-left {
        align-items: center;
    }

    .feature-list li {
        padding-left: 0;
        text-align: center;
    }

    .feature-list li::before {
        display: none;
    }

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

    .step-full {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-line {
        align-items: center;
        text-align: center;
    }
}
