/* ===== CUSTOM CSS VARIABLES ===== */
:root {
    /* Primary Color Palette - Pastel High-Contrast */
    --primary-peach: #ffc9b3;
    --primary-mint: #9be9d6;
    --primary-lavender: #aea2dd;
    --primary-cream: #fffceb;
    --primary-coral: #ee7979;
    
    /* Light/Dark Shades */
    --light-peach: #f3c5bd;
    --dark-peach: #da8051;
    --light-mint: #daffe8;
    --dark-mint: #82bfa2;
    --light-lavender: #cecad7;
    --dark-lavender: #8476b8;
    --light-cream: #FDFCF4;
    --dark-cream: #f1eabd;
    --light-coral: #ffc3d2;
    --dark-coral: #f97582;
    
    /* Typography */
    --font-size-small: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --card-padding: 1.5rem;
    
    /* Shadows */
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ===== GLOBAL STYLES ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: var(--light-cream);
    overflow-x: hidden;
}

/* Conservative font sizes */
.navbar-brand {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--dark-peach);
}

h1, .display-4 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--dark-peach);
}

h2, .h2 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--dark-lavender);
}

h3, h4, h5 {
    font-size: var(--font-size-lg);
    font-weight: 500;
}

p, .lead {
    font-size: var(--font-size-base);
    max-width: 65ch;
}

/* ===== COMPONENT STYLES ===== */

/* Header */
.navbar {
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 253, 238, 0.95);
    box-shadow: 0 5px 4px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-lavender);
    transition: color 0.42s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-coral);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--light-peach) 100%);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: var(--primary-mint);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-coral);
    border-color: var(--primary-coral);
    color: white;
    font-weight: 500;
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    transition: all 0.77s ease;
}

.btn-primary:hover {
    background-color: var(--dark-coral);
    border-color: var(--dark-coral);
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

/* Cards */
.card {
    border: none;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    transition: all 0.84s ease;
    background-color: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.card-body {
    padding: var(--card-padding);
}

.card-title {
    color: var(--dark-lavender);
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-text {
    color: #6b6b6b;
    font-size: var(--font-size-small);
}

/* Pricing Cards */
.card.border-primary {
    border: 2px solid var(--primary-coral);
    position: relative;
}

.card.border-primary::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-coral);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.77rem;
    font-weight: 600;
}

/* Section Backgrounds */
.bg-light {
    background-color: var(--light-mint);
}

section:nth-child(even) {
    background-color: var(--light-cream);
}

section:nth-child(odd) {
    background-color: white;
}

/* Icons */
.fas {
    color: var(--primary-coral);
}

/* Forms */
.form-control {
    border-radius: 0.5rem;
    border: 2px solid var(--light-lavender);
    padding: 0.75rem 1rem;
    transition: border-color 0.62s ease;
}

.form-control:focus {
    border-color: var(--primary-coral);
    box-shadow: 0 0 0 0.2rem rgba(255, 126, 126, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--dark-lavender);
    margin-bottom: 0.57rem;
}

/* Gallery */
#gallery img {
    transition: transform 1.00s ease;
    border-radius: 0.75rem;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Team Images */
.rounded-circle {
    border: 3px solid var(--primary-mint);
    transition: border-color 0.48s ease;
}

.rounded-circle:hover {
    border-color: var(--primary-coral);
}

/* Footer */
#footer {
    background-color: #293741;
    color: #ecf0f1;
}

#footer h5 {
    color: var(--primary-mint);
    font-weight: 600;
    margin-bottom: 1rem;
}

#footer a {
    transition: color 1.28s ease;
}

#footer a:hover {
    color: var(--primary-coral);
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.97s ease;
}

.breadcrumb-item img:hover {
    opacity: 1;
}

/* FAQ Cards */
#faq .card {
    background-color: var(--light-cream);
    margin-bottom: 1rem;
}

#faq .card-title {
    color: var(--dark-peach);
    font-size: var(--font-size-lg);
}

/* Utilities */
.text-primary {
    color: var(--primary-coral);
}

.text-muted {
    color: #78828f;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    :root {
        --font-size-3xl: 1.5rem;
        --font-size-2xl: 1.25rem;
        --section-padding: 3rem 0;
    }
    
    .display-4 {
        font-size: var(--font-size-2xl);
    }
    
    .navbar-brand {
        font-size: var(--font-size-lg);
    }
}

/* Prefers-reduced-motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
} 


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

.x-link::after {
    content: '✦';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
