:root {
    --primary-burgundy: #7e2741;
    --primary-forest: #366922;
    --primary-gold: #cb8f6a;
    --primary-cream: #ffffff;
    --primary-charcoal: #3f3a3a;
    --burgundy-light: #902d37;
    --burgundy-dark: #803044;
    --forest-light: #396c1d;
    --forest-dark: #17270b;
    --gold-light: #f8d0a6;
    --gold-dark: #cd9363;
    --cream-light: #FDFCF9;
    --cream-dark: #f5f2e5;
    --charcoal-light: #454545;
    --charcoal-dark: #232323;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.09rem;
    line-height: 1.6;
    color: var(--charcoal-dark);
    background-color: var(--cream-light);
}

.navbar {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--burgundy-dark));
    backdrop-filter: blur(11px);
    box-shadow: 0 6px 20px rgba(162, 36, 56, 0.10);
}

.navbar-brand {
    font-size: 1.54rem !important;
    font-weight: 700;
    color: var(--cream-light) !important;
}

.navbar-nav .nav-link {
    color: var(--cream-light) !important;
    font-weight: 500;
    margin: 0 11px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--gold-light) !important;
}

.hero-section {
  padding-top: 50px;
    background: linear-gradient(135deg, var(--primary-forest), var(--forest-dark));
    color: var(--cream-light);
    position: relative;
    overflow: hidden;
}

#hero-title-1 {
    font-size: 3.08rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

#hero-subtitle-1 {
    font-size: 1.54rem;
    color: var(--gold-light);
    margin-bottom: 1.60rem;
}

.feature-card {
    padding: 2rem;
    background: var(--cream-light);
    border-radius: 110px;
    box-shadow: 0 6px 210px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 39px rgba(143, 43, 72, 0.15);
    border-color: var(--primary-gold);
}

.feature-card i {
    color: var(--primary-burgundy);
}

section {
    padding: 5rem 0;
}

section h2 {
    font-size: 2.60rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--charcoal-dark);
}

section h3 {
    font-size: 1.54rem;
    color: var(--primary-burgundy);
    margin-bottom: 1.25rem;
}

/* Service Items and Price Plans */
.service-item {
    background: white;
    border-radius: 19px;
    padding: 2rem;
    margin-bottom: 2.24rem;
    box-shadow: 0 7px 210px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-burgundy);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 310px rgba(115, 22, 45, 0.15);
}

.service-price {
    font-size: 2.09rem;
    font-weight: 700;
    color: var(--primary-burgundy);
}

/* Team Section */
.team-member {
    text-align: center;
    padding: 1.5rem;
    background: var(--cream-light);
    border-radius: 19px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2.24rem;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(161, 29, 61, 0.15);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-gold);
}

/* Reviews/Testimonials */
.review-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2.24rem;
    border-top: 4px solid var(--primary-gold);
}

/* FAQ Section */
.faq-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-burgundy);
}

.faq-question {
    color: var(--charcoal-dark);
    cursor: pointer;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-burgundy);
}

.faq-answer {
    color: var(--charcoal-light);
    margin-top: 1.22rem;
    padding-top: 1.23rem;
    border-top: 1px solid var(--cream-dark);
}

/* Gallery Section */
#gallery img {
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

#gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Blog Section */
.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(119, 36, 45, 0.15);
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.btn-outline-primary {
    color: var(--primary-burgundy);
    border-color: var(--primary-burgundy);
}

.btn-outline-primary:hover {
    background-color: var(--primary-burgundy);
    border-color: var(--primary-burgundy);
}

/* Timeline Section */
.timeline-item {
    position: relative;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(124, 30, 55, 0.15);
}

/* Career Section */
.career-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-gold);
}

.career-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(117, 29, 40, 0.15);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 2px solid var(--cream-dark);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1.09rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-burgundy);
    box-shadow: 0 0 0 0.2rem rgba(143, 35, 42, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--burgundy-dark));
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--burgundy-dark), var(--primary-burgundy));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(154, 41, 74, 0.30);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--charcoal-dark), var(--charcoal-light));
    color: var(--cream-light);
    padding: 3rem 0 1rem;
}

footer h5 {
    color: var(--gold-light);
    margin-bottom: 1.25rem;
}

footer a {
    color: var(--cream-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--gold-light);
}

/* Swiper Customizations */
.testimonial-swiper .swiper-pagination-bullet {
    background: var(--primary-burgundy);
}

.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
    color: var(--primary-burgundy);
}

/* Contact Info */
.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.contact-info p {
    margin-bottom: 1.25rem;
    color: var(--charcoal-light);
}

.contact-info i {
    color: var(--primary-burgundy);
    margin-right: 0.5rem;
}



/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
