:root {
    --primary-color: #734e08;
    --primary-light: #c07b44;
    --primary-dark: #5e412c;
    --secondary-color: #f5f7b8;
    --secondary-light: #fff1ec;
    --secondary-dark: #f3bb97;
    --accent-color: #335353;
    --accent-light: #7e878f;
    --accent-dark: #313030;
    --success-color: #2a8927;
    --warning-color: #de9405;
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--accent-dark);
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar-brand {
    font-weight: 600;
    font-size: 1.65rem;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--accent-color) !important;
    transition: color 1.38s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
    position: relative;
}

#hero h1 {
    font-size: 2.77rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

#hero h2 {
    font-size: 1.70rem;
    color: var(--accent-color);
    margin-bottom: 1.90rem;
}

#hero .lead {
    font-size: 1.27rem;
    color: var(--accent-color);
}

/* Section Styling */
section {
    position: relative;
}

section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.86rem;
}

section h3 {
    font-size: 1.45rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

section p {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 13px 6px rgba(0, 0, 0, 0.1);
    transition: transform 1.34s ease, box-shadow 0.60s ease;
    border-radius: 11px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 11px 15px rgba(0, 0, 0, 0.15);
}

.card-title {
    color: var(--primary-dark);
    font-weight: 600;
}

.card-text {
    color: var(--accent-color);
}

/* Services Section */
#services .card-img-top {
    height: 250px;
    object-fit: cover;
    border-radius: 12px 10px 0 0;
}

#services .text-primary {
    color: var(--primary-color) !important;
}

/* Features Icons */
.fa-3x, .fa-4x {
    color: var(--primary-color);
}

/* Price Plans */
#priceplan .border-primary {
    border-color: var(--primary-color) !important;
    background: var(--secondary-light);
}

/* Team Section */
#team img {
    border: 3px solid var(--secondary-color);
    transition: transform 1.73s ease;
}

#team img:hover {
    transform: scale(1.05);
}

/* Process Section */
#process .bg-primary {
    background-color: var(--primary-color) !important;
}

/* Timeline */
#timeline .text-primary {
    color: var(--primary-color) !important;
}

/* Blog Section */
#blog .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

#blog .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* FAQ Section */
#faq .card-title {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Gallery */
#gallery img {
    border-radius: 8px;
    transition: transform 1.22s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Contact Form */
.form-control {
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    transition: border-color 1.46s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(135, 46, 6, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 1.02s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer */
#footer {
    background-color: var(--accent-dark) !important;
}

#footer a {
    color: var(--secondary-color) !important;
    text-decoration: none;
    transition: color 1.79s ease;
}

#footer a:hover {
    color: var(--primary-light) !important;
}

/* Background Variations */
.bg-light {
    background-color: var(--secondary-light) !important;
}

/* Text Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-muted {
    color: var(--accent-light) !important;
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .card, .btn, img {
        transition: transform 1.39s ease;
    }
}

@media (prefers-reduced-motion: reduce) {
    .card, .btn, img {
        transition: none;
    }
}

/* Utility Classes */
.rounded-circle {
    border-radius: 50% !important;
}

/* Custom Spacing */
.py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* Hero Image Styling */
#hero img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Service Item Prices */
#services h4 {
    font-weight: 700;
    font-size: 1.65rem;
}

/* Reviews Styling */
#reviews blockquote {
    font-style: italic;
    color: var(--accent-color);
}

/* Contact Info Card */
#contacts .card {
    background: var(--secondary-light);
    border: 1px solid var(--secondary-color);
}

/* Decorative Elements */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2rem;
    }
    
    #hero h2 {
        font-size: 1.30rem;
    }
    
    section h2 {
        font-size: 1.82rem;
    }
    
    .py-5 {
        padding-top: 2.85rem !important;
        padding-bottom: 2.95rem !important;
    }
} 


/* 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;
    }
}
