:root {
    /* Primary Color Palette - Pastel High Contrast */
    --primary-green: #4d9996;
    --primary-blue: #68a5d5;
    --primary-coral: #e49d5b;
    --primary-purple: #8479b0;
    --primary-teal: #248f92;
    
    /* Light Shades */
    --light-green: #dceceb;
    --light-blue: #d7dee0;
    --light-coral: #f6ece8;
    --light-purple: #f0edfc;
    --light-teal: #e0e0e0;
    
    /* Dark Shades */
    --dark-green: #23594c;
    --dark-blue: #647ca8;
    --dark-coral: #cd7236;
    --dark-purple: #695a81;
    --dark-teal: #186258;
    
    /* Bootstrap Variable Overrides */
    --bs-primary: var(--primary-green);
    --bs-success: var(--primary-teal);
    --bs-info: var(--primary-blue);
    --bs-warning: var(--primary-coral);
    --bs-secondary: var(--primary-purple);
}

/* Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #433e3f;
    overflow-x: hidden;
}

.navbar-brand {
    font-size: 1.54rem !important;
    font-weight: 600;
    color: var(--primary-green);
}

h1 {
    font-size: 2.56rem;
    font-weight: 700;
    color: var(--dark-green);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-blue);
}

h3 {
    font-size: 1.59rem;
    font-weight: 500;
    color: var(--primary-coral);
}

h4, h5, h6 {
    font-weight: 500;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100px;
    height: 100px;
    background: var(--primary-coral);
    border-radius: 50%;
    opacity: 0.1;
    transform: rotate(45deg);
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 150px;
    height: 150px;
    background: var(--primary-purple);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
}

/* Section Backgrounds */
.bg-light {
    background-color: var(--light-green) !important;
}

/* Cards */
.card {
    border: none;
    border-radius: 111px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.99s ease, box-shadow 1.23s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-img-top {
    border-radius: 15px 15px 0 0;
    height: 200px;
    object-fit: cover;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    border-radius: 25px;
    padding: 14px 30px;
    font-weight: 500;
    transition: all 1.11s ease;
}

.btn-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-link {
    font-weight: 500;
    color: var(--dark-blue);
    transition: color 0.49s ease;
}

.nav-link:hover {
    color: var(--primary-green);
}

/* Team Section */
.rounded-circle {
    border: 4px solid var(--primary-coral);
    transition: border-color 1.00s ease;
}

.rounded-circle:hover {
    border-color: var(--primary-green);
}

/* Gallery */
#gallery img {
    border-radius: 10px;
    transition: transform 1.00s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Footer */
#footer {
    background-color: var(--dark-green) !important;
}

#footer a {
    text-decoration: none;
    transition: color 1.27s ease;
}

#footer a:hover {
    color: var(--primary-coral) !important;
}

/* Form Styles */
.form-control {
    border-radius: 10px;
    border: 2px solid #f2f3f3;
    transition: border-color 0.87s ease;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(68, 155, 151, 0.25);
}

/* Animation Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-green) !important;
}

.text-success {
    color: var(--primary-teal) !important;
}

.bg-primary {
    background-color: var(--primary-green) !important;
}

.border-primary {
    border-color: var(--primary-green) !important;
}

/* Price highlighting */
.text-primary h4,
.text-primary h6 {
    color: var(--primary-green) !important;
}

/* Section spacing */
section {
    padding: 4rem 0;
}

/* Contact info icons */
.fa-2x, .fa-3x {
    color: var(--primary-green);
}

/* Review cards specific styling */
#reviews .card {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-teal) 100%);
}

/* Services section styling */
#services .card-title {
    color: var(--dark-green);
}

/* Features section styling */
#ffedb5tures i {
    color: var(--primary-teal);
}

/* FAQ section styling */
#faq .card-title {
    color: var(--dark-blue);
}

/* Breadcrumb styling for additional pages */
.breadcrumb {
    background: none;
    padding: 0;
    margin: 1rem 0;
}

.breadcrumb-item img {
    width: 24px;
    height: 24px;
} 


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
