:root {
    --pink-primary: #ff69b4;
    --pink-light: #ffb6c1;
    --pink-dark: #e1477d;
    --pink-gradient: linear-gradient(135deg, #ff69b4, #ff1493);
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
    --border-radius: 15px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

.text-pink {
    color: var(--pink-primary) !important;
}

.bg-pink {
    background-color: var(--pink-primary) !important;
}

/* Header Styles */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pink-primary) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand-text {
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-gray) !important;
    margin: 0 10px;
    padding: 8px 15px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background: var(--pink-gradient);
    color: white !important;
    transform: translateY(-2px);
}

.pink-toggler {
    border: 2px solid var(--pink-primary);
    border-radius: 10px;
}

.pink-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 105, 180, 0.25);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #ffebef 50%, #fff0f5 100%);
    position: relative;
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    margin-bottom: 40px;
}

.btn-pink {
    background: var(--pink-gradient);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-pink:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.3);
    color: white;
}

.btn-outline-pink {
    border: 2px solid var(--pink-primary);
    color: var(--pink-primary);
    background: transparent;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-pink:hover {
    background: var(--pink-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.2rem;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

/* Icon Boxes - Skewed Layout */
.icon-boxes {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
}

.icon-box {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--pink-gradient);
}

.icon-box.skew-left {
    transform: rotate(-2deg);
    margin-left: -20px;
}

.icon-box.skew-right {
    transform: rotate(2deg);
    margin-right: -20px;
}

.icon-box:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.2);
}

.icon-box i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.icon-box h5 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.icon-box p {
    color: #666;
    line-height: 1.6;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--pink-gradient);
    opacity: 0;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.2);
}

.service-icon {
    background: var(--pink-gradient);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
    text-align: center;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #666;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.service-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pink-primary);
    font-weight: bold;
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}

.step-number {
    background: var(--pink-gradient);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-icon {
    background: rgba(255, 105, 180, 0.1);
    color: var(--pink-primary);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: var(--pink-gradient);
    color: white;
    transform: scale(1.1);
}

.process-step h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Team Cards */
.team-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.2);
}

.team-image {
    margin-bottom: 25px;
}

.team-image i {
    font-size: 5rem;
    color: var(--pink-primary);
}

.team-card h5 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.team-role {
    color: var(--pink-primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.team-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.team-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.specialty {
    background: rgba(255, 105, 180, 0.1);
    color: var(--pink-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Review Cards */
.review-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.15);
}

.review-stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.review-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.reviewer {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.reviewer strong {
    color: var(--dark-gray);
    display: block;
    margin-bottom: 5px;
}

.reviewer small {
    color: #999;
}

/* Gallery Items */
.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 250px;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.2);
}

.gallery-placeholder {
    background: var(--pink-gradient);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.gallery-placeholder p {
    font-weight: 600;
    margin: 0;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: var(--pink-primary);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    background: var(--pink-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.pricing-header h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    color: var(--pink-primary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--pink-primary);
}

.period {
    color: #666;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-features i {
    font-size: 1.1rem;
}

/* Coverage Grid */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.coverage-item {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.coverage-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
}

.coverage-item i {
    font-size: 1.5rem;
}

.coverage-item span {
    font-weight: 600;
    color: var(--dark-gray);
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    color: var(--dark-gray);
    padding: 20px 25px;
    font-size: 1.1rem;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--pink-gradient);
    color: white;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: white;
    padding: 25px;
    color: #666;
    line-height: 1.6;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.15);
}

.blog-date {
    background: var(--pink-gradient);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 25px;
    display: inline-block;
}

.blog-date .month {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
}

.blog-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.blog-card h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--pink-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--pink-dark);
    text-decoration: none;
}

.read-more i {
    transition: all 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--pink-primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 105, 180, 0.25);
}

.contact-info {
    text-align: center;
    padding: 30px 20px;
}

.contact-info i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--pink-primary);
}

.contact-info h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.contact-info p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--dark-gray) !important;
    color: white;
}

footer h5 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer ul li a:hover {
    color: var(--pink-primary);
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--pink-primary);
    color: white !important;
    transform: translateY(-3px);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: none;
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.3);
}

.scroll-top-btn.show {
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .icon-box.skew-left,
    .icon-box.skew-right {
        transform: none;
        margin: 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Background patterns */
.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff5f7 100%) !important;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--pink-primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .scroll-top-btn,
    footer {
        display: none !important;
    }
    
    .hero-section {
        page-break-after: always;
    }
}