:root {
    --primary-color: #9C27B0;
    --secondary-color: #FFD700;
    --accent-color: #E91E63;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #FFF8E1;
    --white: #FFFFFF;
    --dark-purple: #4A148C;
    --gold-accent: #FFC107;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 26px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Poppins", sans-serif;
    border-radius: 999px;
    font-size: 15px;
}

.btn:hover {
    background-color: var(--gold-accent);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.section-title p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
}

.logo:hover {
    opacity: 0.9;
    transform: scale(1.04);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-actions a {
    color: var(--primary-color);
    font-size: 18px;
    transition: color 0.3s, transform 0.3s;
    cursor: pointer;
}

.header-actions a:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
}

nav {
    padding: 10px 0 14px;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 26px;
    font-size: 14px;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--primary-color);
}

/* Hero */
.hero {
    margin-top: 90px;
    min-height: 80vh;
    background: linear-gradient(rgba(156, 39, 176, 0.7), rgba(233, 30, 99, 0.7)),
        url("https://picsum.photos/seed/womens-clothing-fashion/1600/900");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50,5 L61,39 L95,39 L68,61 L79,95 L50,73 L21,95 L32,61 L5,39 L39,39 Z' fill='none' stroke='%23FFD700' stroke-width='0.5' opacity='0.3'/%3E%3C/svg%3E");
    background-size: 40px 40px;
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
}

.hero-content {
    max-width: 850px;
    padding: 40px 20px 60px;
}

.hero-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 54px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 26px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 26px;
}

.hero-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.8);
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 13px;
}

.hero-meta strong {
    display: block;
    font-size: 16px;
}

.hero-meta span {
    opacity: 0.9;
}

/* Services */
.services {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 26px 24px 24px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at center, var(--secondary-color), transparent);
    opacity: 0.35;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 14px;
}

.service-list {
    list-style: none;
    margin-bottom: 16px;
}

.service-list li {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 6px;
    position: relative;
    padding-left: 18px;
}

.service-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
}

/* Collections / Gallery */
.collections {
    padding: 80px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    background-color: #fafafa;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-meta {
    padding: 16px 18px 18px;
}

.gallery-meta h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.gallery-meta p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background-color: #f5ecff;
    color: var(--primary-color);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pill-accent {
    background-color: #ffe5ef;
    color: var(--accent-color);
}

/* Process */
.process {
    padding: 80px 0;
    background-color: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--secondary-color);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    transition: transform 0.3s;
    border: 2px solid var(--secondary-color);
}

.step:hover .step-number {
    transform: scale(1.1);
}

.step h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step p {
    color: var(--text-light);
    font-size: 14px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 14px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-right: 14px;
    object-fit: cover;
    border: 2px solid var(--secondary-color);
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--primary-color);
}

.author-info p {
    font-size: 13px;
    color: var(--text-light);
}

.rating {
    color: var(--gold-accent);
    margin-bottom: 12px;
}

/* Contact */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 16px;
    background-color: var(--bg-light);
    border-radius: 10px;
    transition: transform 0.3s;
    border-left: 4px solid var(--primary-color);
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--primary-color);
}

.contact-details p {
    color: var(--text-light);
    font-size: 14px;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 30px 28px;
    border-radius: 10px;
    border-top: 4px solid var(--accent-color);
}

.contact-form h3 {
    margin-bottom: 16px;
    font-size: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(156, 39, 176, 0.15);
}

.form-group textarea {
    height: 110px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark-purple);
    color: var(--white);
    padding: 50px 0 28px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 8px;
    color: var(--secondary-color);
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-column p {
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-purple);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

/* Toast / Success Message */
.success-message {
    position: fixed;
    top: 90px;
    right: 16px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    animation: slideIn 0.3s ease-out;
    font-size: 13px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .header-top {
        flex-direction: column;
        gap: 10px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .step {
        width: 100%;
    }

    .contact-form {
        padding: 22px 18px;
    }
}
