:root {
    --magenta: #b93472;
    --dark: #1a1a1a;
    --white: #ffffff;
    --grey: #f9f9f9;
    --text-muted: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: var(--grey);
}

/* Header & Nav */
header {
    background: var(--white);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--magenta);
}

.cta-btn {
    background: var(--magenta);
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1562654501-a0ccc0fc3fb1?auto=format&fit=crop&w=1600');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 140px 0;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-main {
    background: var(--magenta);
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-right: 15px;
    display: inline-block;
}

.btn-sub {
    border: 2px solid #fff;
    color: #fff;
    padding: 13px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
}

/* Section Typography */
.section-title {
    text-align: center;
    color: var(--magenta);
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--magenta);
    margin: 15px auto;
}

.magenta-title {
    color: var(--magenta);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* About & Why Us */
.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-img,
.about-text {
    flex: 1;
    min-width: 350px;
}

.about-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 20px 20px 0px var(--magenta);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--magenta);
    margin-bottom: 20px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    color: var(--magenta);
    margin-bottom: 15px;
}

/* Testimonials Styling */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 5px solid var(--magenta);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.quote-icon {
    color: var(--magenta);
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.client-info h5 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-info span {
    color: var(--magenta);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Contact Section */
.contact-grid {
    display: block;
    max-width: 600px;
    margin: 0 auto;
}

.info-box {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-box i {
    font-size: 1.5rem;
    color: var(--magenta);
    margin-top: 5px;
}

.info-box h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.btn-submit {
    background: var(--magenta);
    color: #fff;
    border: none;
    padding: 15px 30px;
    width: 100%;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #962a5c;
}

.info-box h4 a {
    color: var(--magenta);
    text-decoration: none;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}

.info-box h4 a:hover {
    color: var(--dark);
    border-bottom: 2px solid var(--magenta);
}

/* Footer */
footer {
    background: var(--dark);
    color: #888;
    padding: 40px 0;
    border-top: 1px solid #333;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 20px;
    transition: 0.3s;
    display: inline-block;
}

.social-icons a:hover {
    color: var(--magenta);
}

/* Responsive Styling */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-img img {
        box-shadow: none;
    }
}