:root {
    /* Primary Color Palette - 5 main colors + light/dark shades */
    --primary-lavender: #c2afe2;
    --primary-lavender-light: #dfccff;
    --primary-lavender-dark: #a299de;
    
    --primary-mint: #baeddc;
    --primary-mint-light: #ccfff4;
    --primary-mint-dark: #94cec0;
    
    --primary-coral: #e7c6b3;
    --primary-coral-light: #e3c3ae;
    --primary-coral-dark: #d8a07b;
    
    --primary-sky: #99d3fa;
    --primary-sky-light: #cff5fb;
    --primary-sky-dark: #85b2bd;
    
    --primary-peach: #fae7be;
    --primary-peach-light: #fffae2;
    --primary-peach-dark: #bfab6a;
    
    /* Neutral colors */
    --neutral-white: #FFFFFF;
    --neutral-light: #F8F9FA;
    --neutral-dark: #969696;
    --neutral-black: #000000;
    
    /* Typography */
    --font-size-base: 16px;
    --font-size-sm: 14px;
    --font-size-lg: 18px;
    --font-size-xl: 23px;
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.25rem;
    --font-size-h5: 1.1rem;
    --font-size-h6: 1rem;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
}

/* Reset and Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--neutral-dark);
    background-color: var(--neutral-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--neutral-dark);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

p {
    margin-bottom: 1rem;
    font-size: var(--font-size-base);
}

/* Conservative navbar brand sizing */
.navbar-brand {
    font-size: 1.56rem;
    font-weight: 700;
    color: var(--primary-lavender-dark);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-lavender-light), var(--primary-mint-light));
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-sky-light) 0%, transparent 70%);
    opacity: 0.3;
    transform: rotate(45deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-title {
    font-size: var(--font-size-h1);
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 1.65rem;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--neutral-dark);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Sections */
.section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: var(--font-size-h2);
    color: var(--neutral-dark);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 4rem;
    font-size: var(--font-size-lg);
    color: var(--neutral-dark);
    opacity: 0.7;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, var(--primary-peach-light), var(--primary-coral-light));
}

.service-item {
    background: var(--neutral-white);
    border-radius: 17px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-12px);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.71rem;
}

.service-item h4 {
    color: var(--primary-lavender-dark);
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--neutral-dark);
    opacity: 0.8;
    margin-bottom: 1.60rem;
}

.service-price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-coral-dark);
}

/* Gallery Section */
.gallery-section {
    background: var(--neutral-light);
}

.gallery-item {
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary-sky-light), var(--primary-mint-light));
}

.testimonial-card {
    background: var(--neutral-white);
    border: none;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-card .card-text {
    font-style: italic;
    margin-bottom: 1.63rem;
    color: var(--neutral-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-lavender-dark);
}

/* FAQ Section */
.faq-section {
    background: var(--neutral-white);
}

.faq-card {
    background: var(--neutral-light);
    border: none;
    border-radius: 10px;
    margin-bottom: 1.59rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-weight: 600;
    color: var(--primary-lavender-dark);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--neutral-dark);
    opacity: 0.8;
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, var(--primary-coral-light), var(--primary-peach-light));
}

.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member h5 {
    color: var(--primary-lavender-dark);
    margin-bottom: 0.67rem;
}

.team-member p {
    color: var(--neutral-dark);
    opacity: 0.8;
}

/* Contact Section */
.contact-section {
    background: var(--neutral-light);
}

.contact-form {
    background: var(--neutral-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 10px;
    border: 2px solid var(--primary-lavender-light);
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.form-control:focus {
    border-color: var(--primary-lavender-dark);
    box-shadow: 0 0 0 0.2rem rgba(179, 157, 219, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-lavender), var(--primary-mint));
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-lavender-dark), var(--primary-mint-dark));
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--neutral-dark);
    color: var(--neutral-white);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--primary-lavender-light);
    margin-bottom: 1rem;
}

.footer a {
    color: var(--neutral-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 1;
    color: var(--primary-lavender-light);
}

/* Breadcrumb */
.breadcrumb {
    background: var(--neutral-light);
    padding: 1rem 0;
    border-radius: 0;
}

.breadcrumb-item img {
    height: 20px;
    width: auto;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-lavender), var(--primary-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-lavender-light), var(--primary-mint-light));
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--primary-coral-light), var(--primary-peach-light));
}

.shadow-soft {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rounded-lg {
    border-radius: 15px;
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
