:root {
    /* Primary Color Palette - High Contrast Pastels */
    --primary-1: #464ddd; /* Indigo */
    --primary-2: #19cc8c; /* Emerald */
    --primary-3: #f1a01b; /* Amber */
    --primary-4: #ff4c9f; /* Pink */
    --primary-5: #955cff; /* Violet */
    
    /* Light Shades */
    --primary-1-light: #b7c5ff;
    --primary-2-light: #59e7bf;
    --primary-3-light: #e5932c;
    --primary-4-light: #ec95c8;
    --primary-5-light: #bea6ec;
    
    /* Dark Shades */
    --primary-1-dark: #472eda;
    --primary-2-dark: #019179;
    --primary-3-dark: #c56a0d;
    --primary-4-dark: #e61c65;
    --primary-5-dark: #7d34ec;
    
    /* Neutrals */
    --text-primary: #12151f;
    --text-secondary: #71798a;
    --text-light: #a3abbc;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-accent: #f3f4f6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-1), var(--primary-5));
    --gradient-secondary: linear-gradient(135deg, var(--primary-2), var(--primary-3));
    --gradient-accent: linear-gradient(135deg, var(--primary-4), var(--primary-1));
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
}

/* Conservative Font Sizes */
h1 { font-size: 2.28rem; font-weight: 700; }
h2 { font-size: 1.91rem; font-weight: 600; }
h3 { font-size: 1.58rem; font-weight: 600; }
h4 { font-size: 1.36rem; font-weight: 500; }
h5 { font-size: 1.20rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

p { font-size: 1rem; margin-bottom: 1rem; }

/* 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;
    }
}

/* Header Styles */
.navbar {
    background: var(--bg-primary);
    box-shadow: 0 7px 5px rgba(0,0,0,0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.54rem;
    font-weight: 700;
    color: var(--primary-1);
    transition: font-size 0.3s ease;
}

.navbar.scrolled .navbar-brand {
    font-size: 1.40rem;
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../SEC_images/hero-bg.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
    padding-top: 175px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.33rem;
    margin-bottom: 1.60rem;
    opacity: 0.9;
}

.hero-desc {
    font-size: 1.18rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background: var(--bg-secondary);
}

.feature-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 6px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.61rem;
    color: var(--primary-1);
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
}

.service-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 7px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.61rem;
}

.service-price {
    font-size: 1.53rem;
    font-weight: 700;
    color: var(--primary-1);
    margin-bottom: 1rem;
}

/* Team Section */
.team {
    background: var(--bg-secondary);
}

.team-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 6px rgba(0,0,0,0.1);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
}

.team-name {
    font-size: 1.27rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-role {
    color: var(--text-secondary);
    font-size: 0.93rem;
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
}

.review-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 7px 6px rgba(0,0,0,0.1);
}

.review-text {
    font-style: italic;
    margin-bottom: 1.64rem;
    color: var(--text-secondary);
}

.review-author {
    font-weight: 600;
    color: var(--text-primary);
}

/* Price Plan Section */
.price-plan {
    background: var(--bg-secondary);
}

.price-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 6px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-1);
    margin-bottom: 1rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bg-accent);
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
}

.faq-item {
    background: var(--bg-primary);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    border-bottom: 1px solid var(--bg-accent);
    margin: 0;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-secondary);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.54rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

/* Gallery Section */
.gallery {
    background: var(--bg-secondary);
}

.gallery-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact-form {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid var(--bg-accent);
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-1);
    outline: none;
    box-shadow: 0 0 0 4px rgba(70, 78, 216, 0.10);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.34rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
}

/* Blog Section */
.blog {
    background: var(--bg-secondary);
}

.blog-card {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.38rem;
    font-weight: 600;
    margin-bottom: 0.60rem;
}

.blog-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary-1);
    text-decoration: none;
    font-weight: 500;
}

.blog-link:hover {
    text-decoration: underline;
}

/* Contact Info Cards */
.contact-info-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.contact-info-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-info-card h4 {
    font-size: 1.33rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Breadcrumb Styles */
.breadcrumb-nav {
    padding: 1rem 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--bg-accent);
}

.breadcrumb-icon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

/* Utility Classes */
.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.bg-gradient-accent {
    background: var(--gradient-accent);
}

.text-primary-1 { color: var(--primary-1); }
.text-primary-2 { color: var(--primary-2); }
.text-primary-3 { color: var(--primary-3); }
.text-primary-4 { color: var(--primary-4); }
.text-primary-5 { color: var(--primary-5); }

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .service-card,
    .team-card,
    .review-card {
        margin-bottom: 2rem;
    }
} 


/* 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;
    }
}
