/* ===== COLOR PALETTE ===== */
:root {
    /* Primary Colors */
    --primary-blue: #4A90E2;
    --primary-green: #7ED321;
    --primary-purple: #8E44AD;
    --primary-orange: #F39C12;
    --primary-teal: #16A085;
    
    /* Light Shades */
    --light-blue: #E8F4FD;
    --light-green: #F0F9E8;
    --light-purple: #F4EFF7;
    --light-orange: #FDF2E0;
    --light-teal: #E0F2F1;
    
    /* Dark Shades */
    --dark-blue: #2980B9;
    --dark-green: #27AE60;
    --dark-purple: #6C3483;
    --dark-orange: #D68910;
    --dark-teal: #138D75;
    
    /* Neutral Colors */
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-border: #E9ECEF;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
html {
    font-display: swap;
    scroll-behavior: smooth;
}

/* ===== GLOBAL STYLES ===== */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
}

/* Conservative font sizes */
h1 { font-size: 2.2rem; font-weight: 700; }
h2 { font-size: 1.8rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.3rem; font-weight: 500; }
h5 { font-size: 1.1rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

.navbar-brand {
    font-size: 1.4rem !important;
    font-weight: 700;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* ===== PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    position: relative;
    padding-top: 225px;
}

.hero-title {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* Decorative shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-shape-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-green);
    top: 10%;
    right: 10%;
}

.hero-shape-2 {
    width: 150px;
    height: 150px;
    background: var(--primary-orange);
    bottom: 20%;
    left: 5%;
}

/* ===== SERVICES SECTION ===== */
.services-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
    height: 100%;
}

.services-card:hover {
    transform: translateY(-5px);
}

.services-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 1rem;
}

/* ===== TEAM SECTION ===== */
.team-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-blue);
}

/* ===== REVIEWS SECTION ===== */
.review-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    height: 100%;
}

.review-stars {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

/* ===== FAQ SECTION ===== */
.faq-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.faq-question {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
}

.form-control {
    border-radius: 8px;
    border: 2px solid var(--gray-border);
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.btn-primary {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
}

/* ===== SECTION SPACING ===== */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-blue);
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ===== UTILITIES ===== */
.text-primary-blue { color: var(--primary-blue); }
.text-primary-green { color: var(--primary-green); }
.text-primary-purple { color: var(--primary-purple); }
.text-primary-orange { color: var(--primary-orange); }
.text-primary-teal { color: var(--primary-teal); }

.bg-light-blue { background-color: var(--light-blue); }
.bg-light-green { background-color: var(--light-green); }
.bg-light-purple { background-color: var(--light-purple); }
.bg-light-orange { background-color: var(--light-orange); }
.bg-light-teal { background-color: var(--light-teal); }

.bg-primary-blue { background-color: var(--primary-blue); }
.bg-primary-green { background-color: var(--primary-green); }
.bg-primary-purple { background-color: var(--primary-purple); }
.bg-primary-orange { background-color: var(--primary-orange); }
.bg-primary-teal { background-color: var(--primary-teal); }

.rounded-lg { border-radius: 12px; }
.shadow-soft { box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* ===== GALLERY ===== */
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
    background: var(--light-blue);
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.breadcrumb-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
}

/* ===== ANIMATION CLASSES ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .services-card,
    .team-card,
    .review-card {
        margin-bottom: 2rem;
    }
} 


/* 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;
    }
}
