/* --- THINK 8K COLOR PALETTE --- */
:root {
    --logo-purple: #6a1b9a;
    --logo-pink: #d81b60;
    --logo-yellow: #fdd835;
    --logo-green: #43a047;
    --logo-blue: #3949ab;
    --primary-gradient: linear-gradient(135deg, #d81b60 0%, #6a1b9a 100%);
    --dark-text: #222;
    --text-gray: #555;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

/* --- RESET & GLOBALS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.center { text-align: center; }
.section-padding { padding: 80px 0; }
.sub-text { max-width: 700px; margin: 0 auto; }

/* --- NAVIGATION --- */
header {
    background: var(--white);
    padding: 10px 0;
    border-bottom: 4px solid var(--logo-pink);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { height: 70px; }

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 700;
    margin-left: 20px;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links a:hover { color: var(--logo-pink); }
.nav-links a.active {
    color: var(--logo-purple);
    border-bottom: 2px solid var(--logo-purple);
}

/* --- STYLISH HERO SECTION --- */
.hero {
    background: radial-gradient(circle at top right, #fdf4ff, #ffffff);
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: var(--primary-gradient);
    filter: blur(150px);
    opacity: 0.1;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.hero-text span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 500px;
    border-left: 3px solid var(--logo-pink);
    padding-left: 20px;
    margin-bottom: 30px;
}

.btn-main {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 18px 45px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    box-shadow: 20px 20px 60px #d1d1d1, -20px -20px 60px #ffffff;
}

.btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(216, 27, 96, 0.4);
    letter-spacing: 4px;
}

.hero-img {
    position: relative;
    animation: float 6s ease-in-out infinite;
    display: flex;
    justify-content: center;
}

.hero-img img {
    width: 100%;
    max-width: 450px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: var(--white);
    padding: 15px;
    box-shadow: 0 25px 50px -12px rgba(106, 27, 154, 0.25);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* --- WHY US SECTION --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.why-card {
    padding: 40px;
    border-radius: 20px;
    background: var(--light-bg);
    border-bottom: 5px solid var(--logo-yellow);
    transition: 0.3s;
}

.why-card:nth-child(2) { border-color: var(--logo-green); }
.why-card:nth-child(3) { border-color: var(--logo-blue); }

.why-card i {
    font-size: 2.5rem;
    color: var(--logo-purple);
    margin-bottom: 20px;
}

/* --- WHAT WE DO SECTION --- */
.do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.do-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
}

.do-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.do-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

/* --- ORDER SECTION --- */
.order-bg {
    background: var(--dark-text);
    color: white;
    border-radius: 30px;
    padding: 60px;
    margin-top: 40px;
}

.order-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.order-step {
    flex: 1;
    padding: 20px;
    min-width: 200px;
}

.order-step span {
    font-size: 3rem;
    font-weight: 800;
    color: var(--logo-pink);
    opacity: 0.5;
}

/* --- OFFER SECTION --- */
.offer-row {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 60px 0;
}

.offer-text { flex: 1; }
.offer-image { flex: 1; }

.offer-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.offer-list { list-style: none; }

.offer-list li {
    margin: 15px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.offer-list i {
    color: var(--logo-green);
    margin-right: 15px;
    font-size: 1.5rem;
}

/* --- FOOTER --- */
footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-grid, .offer-row {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 { font-size: 3rem; }
    .hero-text p { margin: 0 auto 30px; border-left: none; border-top: 3px solid var(--logo-pink); padding-top: 15px; }
}


/* HEADER */
header { background: var(--white); padding: 15px 0; border-bottom: 4px solid var(--logo-pink); position: sticky; top: 0; z-index: 1000; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 50px; }
.nav-links a { text-decoration: none; color: #000; font-weight: 800; margin-left: 25px; font-size: 0.85rem; }
.nav-links a.active { color: var(--logo-pink); }

/* CONTACT LAYOUT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.eyebrow { color: var(--logo-pink); letter-spacing: 4px; font-weight: 800; font-size: 0.8rem; display: block; margin-bottom: 20px; }
.contact-info h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; line-height: 1.1; margin-bottom: 25px; }
.contact-info h1 span { color: var(--logo-purple); }
.contact-desc { font-size: 1.1rem; color: #666; margin-bottom: 40px; line-height: 1.8; }

/* INFO ITEMS */
.info-items { margin-bottom: 40px; }
.info-item { display: flex; align-items: flex-start; margin-bottom: 25px; }
.info-item i { font-size: 1.2rem; color: var(--logo-pink); margin-right: 20px; margin-top: 5px; }
.info-item h4 { font-size: 1rem; font-weight: 800; margin-bottom: 3px; }
.info-item p { color: #666; font-size: 0.95rem; }

.social-links a { font-size: 1.2rem; color: #333; margin-right: 20px; transition: 0.3s; }
.social-links a:hover { color: var(--logo-pink); }

/* FORM CONTAINER */
.contact-form-container { background: var(--dark); padding: 50px; border-radius: 30px; color: white; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; color: #999; }

input, select, textarea {
    width: 100%; padding: 15px; background: var(--input-bg); border: 1px solid #333; 
    border-radius: 8px; color: white; font-family: 'Inter', sans-serif; transition: 0.3s;
}

input:focus, select:focus, textarea:focus { outline: none; border-color: var(--logo-pink); }

.btn-submit {
    width: 100%; padding: 18px; border: none; border-radius: 8px; 
    background: var(--primary-gradient); color: white; font-weight: 800; 
    letter-spacing: 1px; cursor: pointer; transition: 0.3s; margin-top: 10px;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(216, 27, 96, 0.3); }

/* FOOTER */
footer { background: #000; color: #555; padding: 40px 0; text-align: center; font-size: 0.8rem; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-info { text-align: center; }
    .info-item { justify-content: center; text-align: left; }
    .contact-info h1 { font-size: 2.8rem; }
}