/* SAVE THIS FILE AS: style.css */

:root {
    --primary: #FF2E63;    /* Bright Pink */
    --secondary: #08D9D6;  /* Electric Teal */
    --dark: #252A34;       /* Soft Black */
    --light: #F9F9F9;      /* Off-white */
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-heading: 'Playfair Display', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
}

h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* NAVIGATION (Shared across all pages) */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { font-size: 1.5rem; font-weight: bold; letter-spacing: 1px; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { border-bottom: 2px solid var(--primary); }

.cta-button {
    background-color: var(--primary);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
}
.cta-button:hover { background-color: var(--dark); }

/* PAGE HEADERS */
.page-header {
    background: linear-gradient(135deg, #fff0f5 0%, #e0f7fa 100%);
    padding: 4rem 5%;
    text-align: center;
}
.page-header h1 { font-size: 3rem; margin-bottom: 1rem; }

/* SERVICES GRID */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
}
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 5px solid transparent;
    transition: 0.3s;
}
.service-card:hover { transform: translateY(-10px); border-top: 5px solid var(--secondary); }
.price { font-size: 1.5rem; font-weight: bold; color: var(--primary); display: block; margin: 1rem 0; }

/* TESTIMONIALS */
.reviews-container {
    padding: 4rem 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.review-card {
    background: white;
    padding: 2rem;
    border-left: 5px solid var(--primary);
    font-style: italic;
}
.client-name {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    font-style: normal;
    color: var(--secondary);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 2rem;
    background: var(--dark);
    color: white;
    margin-top: 2rem;
}

/* --- NEW CONTACT BUTTONS --- */

.contact-section {
    text-align: center;
    padding: 4rem 5%;
    background-color: white;
    margin-top: 2rem;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap; /* Ensures buttons stack on mobile phones */
}

.contact-card {
    display: block; /* Makes the link behave like a box */
    padding: 2rem;
    border-radius: 15px;
    color: white;
    min-width: 220px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-card:hover {
    transform: translateY(-5px); /* Moves up slightly when hovered */
    color: white; /* Keeps text white */
}

.contact-card h3 {
    font-size: 1.2rem;
    margin: 10px 0 5px 0;
}

.contact-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.icon {
    font-size: 2rem;
    display: block;
}

/* BRAND COLORS */

/* Instagram Gradient Background */
.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* WhatsApp Green */
.whatsapp {
    background-color: #25D366;
}

/* Email (Uses your brand's dark color) */
.email {
    background-color: var(--dark);
}