/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Color Palette */
    --primary-green: #349462;
    --primary-orange: #ff5304;
    --primary-burgundy: #983349;
    --primary-teal: #246b8f;
    --primary-gold: #c78540;
    
    /* Light Shades */
    --light-green: #dcf5d7;
    --light-orange: #fff9f4;
    --light-burgundy: #f8dee6;
    --light-teal: #d6f3ff;
    --light-gold: #e1dfdd;
    
    /* Dark Shades */
    --dark-green: #1f472b;
    --dark-orange: #c55504;
    --dark-burgundy: #571212;
    --dark-teal: #175869;
    --dark-gold: #987238;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #5f6770;
    --dark-gray: #474d55;
    --black: #2c353c;
    
    /* Typography */
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --h1-size: 2.25rem;
    --h2-size: 2rem;
    --h3-size: 1.75rem;
    --h4-size: 1.5rem;
    --h5-size: 1.25rem;
    --h6-size: 1rem;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 18px;
    
    /* Transitions */
    --transition-base: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    padding-top: 74.00px;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.06rem;
    color: var(--primary-green);
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }
h5 { font-size: var(--h5-size); }
h6 { font-size: var(--h6-size); }

p {
    margin-bottom: 1.06rem;
    font-size: var(--font-size-base);
}

.lead {
    font-size: var(--font-size-lg);
    font-weight: 400;
}

/* ===== HEADER & NAVIGATION ===== */
.navbar {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-teal));
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
    box-shadow: 0 4px 13px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.58rem !important;
    font-weight: bold;
    color: var(--white) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-base);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--light-gold) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--primary-gold);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
  padding-top: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-teal), var(--primary-burgundy));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../SUX_images/hero-pattern.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.72rem;
}

.hero-section h2 {
    color: var(--light-gold);
    font-weight: 400;
    margin-bottom: 1.72rem;
}

.hero-section p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
}

.hero-section img {
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

/* ===== SECTIONS ===== */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 3.14rem;
}

.section-title h2 {
    margin-bottom: 0.64rem;
}

.section-title h3 {
    color: var(--primary-orange);
    font-weight: 400;
    margin-bottom: 1.06rem;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
    height: 100%;
    border: 1px solid var(--light-gray);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 19px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.72rem;
}

.service-card h4 {
    color: var(--primary-green);
    margin-bottom: 1.06rem;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.06rem;
    font-size: var(--font-size-sm);
}

.service-card span {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

/* ===== PRICE CARDS ===== */
.price-card {
    background: var(--white);
    border-radius: 17px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
    height: 100%;
    border: 2px solid var(--light-gray);
    position: relative;
}

.price-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-3px);
}

.price-card h4 {
    color: var(--primary-burgundy);
    margin-bottom: 1.06rem;
}

.price-card span {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--primary-teal));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: var(--font-size-lg);
    display: inline-block;
    margin-top: 1.10rem;
}

/* ===== TEAM MEMBERS ===== */
.team-member {
    text-align: center;
    margin-bottom: 2.09rem;
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.06rem;
    border: 4px solid var(--primary-green);
    transition: var(--transition-base);
}

.team-member:hover img {
    transform: scale(1.05);
    border-color: var(--primary-orange);
}

.team-member h5 {
    color: var(--primary-green);
    margin-bottom: 0.64rem;
}

.team-member p {
    color: var(--gray);
    font-size: var(--font-size-sm);
}

/* ===== REVIEWS SLIDER ===== */
.reviews-swiper {
    padding: 2rem 0;
}

.review-card {
    background: var(--light-green);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 1rem;
}

.review-card p {
    font-style: italic;
    color: var(--dark-green);
    margin-bottom: 1.72rem;
    font-size: var(--font-size-lg);
}

.review-card h5 {
    color: var(--primary-green);
    font-weight: 600;
}

/* ===== BLOG CARDS ===== */
.blog-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
    height: 100%;
    border-left: 4px solid var(--primary-orange);
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-card h4 {
    color: var(--primary-green);
    margin-bottom: 1.06rem;
}

.blog-card p {
    color: var(--gray);
    margin-bottom: 1.72rem;
}

.blog-card a {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.blog-card a:hover {
    color: var(--dark-orange);
}

/* ===== FAQ SECTION ===== */
.accordion-item {
    border: none;
    margin-bottom: 1.06rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background: var(--light-teal);
    color: var(--dark-teal);
    font-weight: 600;
    border: none;
    padding: 1.5rem;
    border-radius: 10px;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-teal);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background: var(--white);
    color: var(--gray);
    padding: 1.5rem;
}

/* ===== GALLERY ===== */
.gallery img {
    border-radius: 10px;
    transition: var(--transition-base);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===== CONTACT FORM ===== */
.contact-info {
    background: var(--light-green);
    border-radius: 15px;
    padding: 2rem;
    height: fit-content;
}

.contact-info p {
    margin-bottom: 1.72rem;
    display: flex;
    align-items: center;
    color: var(--dark-green);
}

.contact-info i {
    color: var(--primary-green);
    margin-right: 1rem;
    width: 20px;
}

.form-control {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: var(--transition-base);
}

.form-control:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 0.2rem rgba(40, 131, 183, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-teal));
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-green), var(--dark-teal));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 1rem 0;
    background: var(--light-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 71.00px;
}

.breadcrumb-image {
    height: 30px;
    width: auto;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--dark-green), var(--dark-gray));
    color: var(--white);
}

footer h5, footer h6 {
    color: var(--light-gold);
    margin-bottom: 1.72rem;
}

footer ul {
    padding: 0;
}

footer ul li {
    margin-bottom: 0.64rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-base);
}

footer a:hover {
    color: var(--light-gold);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

/* ===== UTILITY CLASSES ===== */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-teal));
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
}

.text-primary-green { color: var(--primary-green); }
.text-primary-orange { color: var(--primary-orange); }
.text-primary-burgundy { color: var(--primary-burgundy); }
.text-primary-teal { color: var(--primary-teal); }
.text-primary-gold { color: var(--primary-gold); }

.bg-light-green { background-color: var(--light-green); }
.bg-light-orange { background-color: var(--light-orange); }
.bg-light-burgundy { background-color: var(--light-burgundy); }
.bg-light-teal { background-color: var(--light-teal); }
.bg-light-gold { background-color: var(--light-gold); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-left {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-right {
    animation: fadeInRight 0.6s ease-out;
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
