/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    margin-bottom: 20px;
    color: #333;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ff80ab;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: #ff80ab;
    transition: color 0.3s ease;
}

a:hover {
    color: #c75080;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    background-color: #ff80ab;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #c75080;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-small {
    padding: 8px 20px;
    font-size: 12px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff80ab;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #ff80ab;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #ff80ab;
}

nav ul li a:hover:after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-color: #ff80ab;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
    padding-top: 80px;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #333;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

/* About Section */
.about-section {
    background-color: #fff5f8;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 40px;
    color: #ff80ab;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Target Audience Section */
.audience-section {
    background-color: white;
}

.audience-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.audience-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.audience-items {
    flex: 1;
}

.audience-item {
    margin-bottom: 30px;
}

.audience-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ff80ab;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Case Studies Section */
.casestudies-section {
    background-color: white;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 40px;
}

.case-study {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.case-study img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.case-study-content {
    padding: 25px;
}

.case-study h3 {
    color: #ff80ab;
    margin-bottom: 15px;
}

.case-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    text-align: center;
}

.stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff80ab;
    margin-bottom: 5px;
}

.stat .stat-label {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stats Section */
.stats-section {
    background-color: #ff80ab;
    color: white;
}

.stats-section h2 {
    color: white;
}

.stats-section h2:after {
    background-color: white;
}

.stats-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    text-align: center;
}

.stat-card {
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Section */
.team-section {
    background-color: #fff5f8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #ff80ab;
}

.team-member h3 {
    color: #333;
    margin-bottom: 5px;
}

.team-member p:first-of-type {
    color: #ff80ab;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Pricing Section */
.pricing-section {
    background-color: white;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid #ff80ab;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    background-color: #fff5f8;
    padding: 30px 20px;
    text-align: center;
}

.pricing-card.featured .pricing-header {
    background-color: #ff80ab;
    color: white;
}

.pricing-card.featured .pricing-header h3 {
    color: white;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 15px 0 5px;
    color: #ff80ab;
}

.pricing-card.featured .price {
    color: white;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.pricing-features ul li:before {
    content: '✓';
    color: #ff80ab;
    position: absolute;
    left: 0;
}

.pricing-card .btn {
    display: block;
    margin: 20px auto 30px;
}

.pricing-note {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

/* Roadmap Section */
.roadmap-section {
    background-color: white;
}

.roadmap-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background-color: #ff80ab;
    transform: translateX(18px);
}

.roadmap-item {
    padding-left: 60px;
    position: relative;
    margin-bottom: 30px;
}

.roadmap-item:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 10px;
    background-color: #ff80ab;
    border-radius: 50%;
    top: 15px;
}

.roadmap-content {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.roadmap-content h3 {
    color: #ff80ab;
    margin-bottom: 10px;
}

.roadmap-content ul {
    margin-top: 15px;
    margin-bottom: 15px;
}

.roadmap-content ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.roadmap-content ul li:before {
    content: '✓';
    color: #ff80ab;
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact-section {
    background-color: #fff5f8;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff80ab;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    color: #ff80ab;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: #ff80ab;
    width: 25px;
    margin-right: 10px;
}

.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Footer */
#footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo, .footer-links, .footer-legal {
    margin-bottom: 30px;
    min-width: 250px;
}

.footer-logo h3 {
    color: #ff80ab;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links h4, .footer-legal h4 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h4:after, .footer-legal h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #ff80ab;
    bottom: -5px;
    left: 0;
}

.footer-links ul li, .footer-legal ul li {
    margin-bottom: 10px;
}

.footer-links ul li a, .footer-legal ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover, .footer-legal ul li a:hover {
    color: #ff80ab;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #999;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    h2 {
        font-size: 2rem;
    }

    .about-content, .audience-content {
        flex-direction: column;
    }

    .about-image, .audience-image {
        margin-bottom: 30px;
    }

    .contact-container {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    nav ul {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}