/* ===== ROOT VARIABLES ===== */
:root {
    /* Primary Color Palette - 5 Colors + Shades */
    --color-primary: #cfaa7c;        /* Warm Gold */
    --color-primary-light: #f4dfbe;  
    --color-primary-dark: #c0986f;   
    
    --color-secondary: #93706c;      /* Rose Brown */
    --color-secondary-light: #a07a73;
    --color-secondary-dark: #5a3b35;
    
    --color-accent: #516363;         /* Sage Green */
    --color-accent-light: #89afb2;
    --color-accent-dark: #3c5254;
    
    --color-neutral: #f2eee8;        /* Cream White */
    --color-neutral-light: #faf8f4;
    --color-neutral-dark: #d1cfc7;
    
    --color-contrast: #3a5363;       /* Deep Blue Gray */
    --color-contrast-light: #2f3d4f;
    --color-contrast-dark: #141c28;
    
    /* Typography */
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    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(--color-contrast);
    background-color: var(--color-neutral-light);
}

/* Prefers Reduced Motion */
@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: var(--space-sm);
    color: var(--color-contrast-dark);
}

h1 { font-size: 2.29rem; }
h2 { font-size: 1.88rem; }
h3 { font-size: 1.52rem; }
h4 { font-size: 1.21rem; }
h5 { font-size: 1.15rem; }
h6 { font-size: 1.03rem; }

p {
    margin-bottom: var(--space-sm);
    color: var(--color-contrast);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary-dark);
}

/* ===== HEADER & NAVIGATION ===== */
.navbar {
    background: linear-gradient(135deg, var(--color-neutral) 0%, var(--color-neutral-light) 100%);
    box-shadow: var(--shadow-sm);
    padding: var(--space-sm) 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.42rem !important;
    font-weight: 700;
    color: var(--color-primary) !important;
}

.nav-link {
    color: var(--color-contrast) !important;
    font-weight: 500;
    margin: 0 var(--space-xs);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
  padding-top: 50px;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-neutral) 0%, var(--color-primary-light) 50%, var(--color-accent-light) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 84.00px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-pattern.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container-fluid {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.09rem;
    color: var(--color-contrast-dark);
    margin-bottom: var(--space-md);
}

.hero-section h3 {
    color: var(--color-secondary);
    margin-bottom: var(--space-lg);
}

.hero-section p {
    font-size: var(--font-size-lg);
    color: var(--color-contrast);
    margin-bottom: var(--space-xl);
}

/* ===== SECTIONS ===== */
section {
    padding: var(--space-xl) 0;
}

.bg-light {
    background-color: var(--color-neutral) !important;
}

/* ===== CARDS & COMPONENTS ===== */
.feature-card, .service-card, .price-card, .team-member, 
.testimonial-card, .blog-card, .case-study-card {
    background: white;
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid var(--color-neutral-dark);
}

.feature-card:hover, .service-card:hover, .price-card:hover,
.blog-card:hover, .case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.price {
    font-size: 1.52rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-top: var(--space-sm);
}

/* ===== PRICE CARDS ===== */
.price-card {
    text-align: center;
    position: relative;
}

.price-card.featured {
    border: 2px solid var(--color-primary);
    transform: scale(1.05);
}

.price-header {
    border-bottom: 1px solid var(--color-neutral-dark);
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.price-amount {
    font-size: 2.52rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-body ul {
    list-style: none;
    padding: 0;
}

.price-body li {
    padding: var(--space-xs) 0;
    border-bottom: 1px solid var(--color-neutral-dark);
}

.price-body li:last-child {
    border-bottom: none;
}

/* ===== TEAM SECTION ===== */
.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary-light);
}

/* ===== TESTIMONIALS ===== */
.testimonials-swiper {
    padding: var(--space-lg) 0;
}

.testimonial-card {
    text-align: center;
    background: linear-gradient(135deg, var(--color-neutral) 0%, white 100%);
    border-left: 4px solid var(--color-primary);
}

.testimonial-card p {
    font-style: italic;
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-md);
}

.testimonial-card h5 {
    color: var(--color-primary-dark);
    font-weight: 600;
}

/* ===== PROCESS SECTION ===== */
.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.52rem;
    font-weight: 700;
    margin: 0 auto var(--space-sm);
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: var(--space-lg) 0;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: var(--space-lg);
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: var(--space-lg);
}

.timeline-content {
    background: white;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd)::before {
    right: -10px;
}

.timeline-item:nth-child(even)::before {
    left: -10px;
}

/* ===== FAQ SECTION ===== */
.accordion-button {
    background: var(--color-neutral);
    color: var(--color-contrast-dark);
    border: none;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: var(--color-primary-light);
    color: var(--color-contrast-dark);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(206, 177, 127, 0.25);
}

/* ===== GALLERY ===== */
.gallery-section img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-section img:hover {
    transform: scale(1.05);
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-control {
    border: 1px solid var(--color-neutral-dark);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
    font-size: var(--font-size-base);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(217, 160, 107, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border: none;
    padding: var(--space-sm) var(--space-lg);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-secondary) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--color-contrast-dark) 0%, var(--color-contrast) 100%);
    color: var(--color-neutral-light);
    margin-top: var(--space-xl);
}

.footer h5, .footer h6 {
    color: var(--color-primary-light);
    margin-bottom: var(--space-md);
}

.footer a {
    color: var(--color-neutral-light);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--color-primary-light);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer li {
    margin-bottom: var(--space-xs);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-nav {
    background: var(--color-neutral);
    border-bottom: 1px solid var(--color-neutral-dark);
}

.breadcrumb-icon {
    width: 24px;
    height: 24px;
}

/* ===== BLOG CARDS ===== */
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.read-more {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* ===== RESPONSIVE UTILITIES ===== */
.text-center { text-align: center; }
.mb-3 { margin-bottom: var(--space-sm) !important; }
.mb-4 { margin-bottom: var(--space-md) !important; }
.mb-5 { margin-bottom: var(--space-lg) !important; }
.py-5 { padding: var(--space-xl) 0 !important; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== SWIPER OVERRIDES ===== */
.swiper-pagination-bullet {
    background: var(--color-primary);
}

.swiper-pagination-bullet-active {
    background: var(--color-primary-dark);
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
