/* =========================================
   1. VARIABLES & RESET (Brand Colors)
   ========================================= */
   :root {
    --primary: #c51a79;       /* Pink */
    --secondary: #f6bd21;     /* Gold */
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #555555;
    --off-white: #fdfdfd; 
    --bg-light: #fff5fa;      /* Very light pink tint */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. BUTTONS
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #a01563;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 26, 121, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    margin-left: 10px;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-nav {
    background-color: var(--secondary);
    padding: 10px 25px;
    border-radius: 50px;
    color: var(--text-dark) !important;
    font-weight: 700 !important;
}

.btn-nav:hover {
    background-color: #e0ac1e;
    transform: scale(1.05);
}

/* =========================================
   3. NAVIGATION & LOGO
   ========================================= */
.navbar {
    background: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    border-top: 5px solid var(--primary);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* UPDATED: Bigger Logo */
.logo img {
    height: 130px; /* Increased size for visibility */
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--primary);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px;
    transition: 0.3s;
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,245,250,0.9) 100%), 
                url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .highlight {
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--secondary);
    opacity: 0.4;
    z-index: -1;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* =========================================
   5. SECTIONS (Pain, Services)
   ========================================= */
.pain-points {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.highlight-text {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: var(--secondary);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pain-item {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid rgba(197, 26, 121, 0.1);
}

.pain-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.pain-item i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.services {
    padding: 80px 0;
    background-color: #fff;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 40px;
    border-radius: 10px;
    transition: 0.3s;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-top: 5px solid var(--primary); 
}

.service-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-top-color: var(--secondary);
}

.service-card .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(246, 189, 33, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 1.8rem;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card .hook {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.service-card ul li i {
    color: var(--secondary);
    margin-right: 12px;
    margin-top: 4px;
}

.why-us {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.why-us h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.why-us p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* =========================================
   6. CONTACT FORM & DETAILS
   ========================================= */
.contact {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact p {
    text-align: center;
    margin-bottom: 40px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.info-item {
    padding: 20px 0;
    display: flex;
    align-items: center;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 15px;
    width: 50px;
    height: 50px;
    background: rgba(197, 26, 121, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item .details h3 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.info-item .details a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 5px rgba(197, 26, 121, 0.2);
}

/* =========================================
   7. FOOTER, COOKIES & LEGAL
   ========================================= */
footer {
    background: #222;
    color: var(--white);
    padding: 60px 0 20px;
    text-align: center;
    border-top: 5px solid var(--secondary);
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: #bbb;
    margin: 0 10px;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.85rem;
    color: #888;
}

.cookie-container {
    position: fixed;
    bottom: -100%;
    left: 20px;
    right: 20px;
    max-width: 1100px;
    margin: 0 auto 20px auto;
    background: var(--white);
    color: var(--text-dark);
    padding: 20px 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    border-left: 5px solid var(--primary);
    border-radius: 8px;
    transition: bottom 0.5s ease-out;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-container.active {
    bottom: 0;
}

.cookie-container p {
    flex: 1;
    margin-right: 20px;
    font-size: 0.95rem;
}

.cookie-container a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-btn {
    background: var(--secondary);
    color: #000;
    border: none;
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.cookie-btn:hover {
    background: #d4a017;
}

.legal-page {
    padding: 100px 0;
    background: var(--off-white);
}

.legal-content h1 {
    margin-bottom: 20px;
    color: var(--primary);
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
    padding-bottom: 10px;
}

.legal-content h3 {
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content p, .legal-content ul {
    margin-bottom: 15px;
    color: #555;
}

.legal-content ul {
    padding-left: 20px;
    list-style: disc;
}

.legal-content ul li {
    margin-bottom: 10px;
}

.legal-content ul li::marker {
    color: var(--primary);
}

/* =========================================
   8. MOBILE
   ========================================= */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 100vh;
        top: 0;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.4s ease-in;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links li {
        margin: 25px 0;
    }
    
    .burger {
        display: block;
        z-index: 1001;
    }

    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); background: var(--secondary); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); background: var(--secondary); }

    .nav-active {
        transform: translateX(0%);
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .cookie-container {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .cookie-container p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}