/* ============================================
   RankBoost - Main Stylesheet
   Modern Design System
============================================ */

:root {
    --primary-dark: #0F2B3D;
    --primary: #1B4F6E;
    --primary-light: #2C7DA0;
    --secondary: #61A5C2;
    --accent: #89C2D9;
    --success: #2E8B57;
    --warning: #E67E22;
    --danger: #E74C3C;
    --dark: #1F2A3E;
    --gray-dark: #334155;
    --gray: #5B6E8C;
    --gray-light: #CBD5E1;
    --light: #F8FAFD;
    --white: #FFFFFF;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --radius-sm: 8px;
    --radius: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

/* Buttons */
.btn-primary, .btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn-primary {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gray-light);
    color: var(--gray-dark);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-light);
    padding: 16px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

.logo span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-light);
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-group {
    display: flex;
    gap: 12px;
}

/* Page Header */
.page-header {
    padding: 60px 0 40px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Tools Grid */
.tools-grid, .tools-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin: 40px 0;
}

.tool-card, .tool-card-full {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tool-card:hover, .tool-card-full:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.tool-icon i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
}

.tool-card h3, .tool-card-full h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.tool-card p, .tool-card-full p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.tool-badge {
    background: var(--light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.premium-tag {
    background: #FEF3C7;
    color: #B45309;
    margin-left: 8px;
}

.tool-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.tool-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Pricing */
.pricing-grid, .pricing-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 50px 0;
}

.pricing-card, .price-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    flex: 1;
    min-width: 280px;
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-light);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured, .price-card.featured {
    border-top: 4px solid var(--primary);
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 16px 0;
    color: var(--primary-dark);
}

.price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
}

.pricing-features ul {
    list-style: none;
    margin: 24px 0;
}

.pricing-features li {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.pricing-features li i {
    color: var(--success);
    width: 20px;
}

.pricing-toggle {
    text-align: center;
    margin: 30px 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0 15px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-light);
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.save-badge {
    background: var(--success);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    margin-left: 8px;
}

/* Team Section */
.team-section, .team-leadership, .core-team, .extended-team {
    margin: 60px auto;
}

.team-grid, .team-grid-large {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
}

.team-member, .team-member-large {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    width: 260px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-member-large {
    width: 100%;
    display: flex;
    gap: 40px;
    text-align: left;
    padding: 40px;
}

.team-member:hover, .team-member-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-member i, .member-avatar i {
    font-size: 3rem;
    color: var(--primary);
    background: var(--light);
    padding: 20px;
    border-radius: 60px;
    margin-bottom: 20px;
    display: inline-block;
}

.member-avatar i {
    font-size: 4rem;
    padding: 30px;
}

.team-member h3, .member-info h3 {
    font-weight: 800;
    margin-bottom: 8px;
}

.member-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.member-bio {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 12px 0;
    line-height: 1.5;
}

.member-social {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
}

.member-social a {
    color: var(--gray);
    font-size: 1.2rem;
}

.member-social a:hover {
    color: var(--primary);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin: 50px 0;
}

.contact-info {
    display: grid;
    gap: 24px;
}

.info-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.info-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.info-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 125, 160, 0.1);
}

/* Services Page */
.services-detailed {
    margin: 50px 0;
}

.service-category {
    margin-bottom: 60px;
}

.service-category h2 {
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-light);
}

.service-list {
    display: grid;
    gap: 24px;
}

.service-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.service-item i {
    font-size: 2rem;
    color: var(--primary);
}

.service-item div {
    flex: 1;
}

.service-item h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.service-item p {
    color: var(--gray);
    margin-bottom: 12px;
}

.service-item .price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.quote-form {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 60px;
    border-radius: var(--radius-xl);
    color: white;
    text-align: center;
    margin: 60px auto;
}

.quote-form h2 {
    margin-bottom: 16px;
}

.quote-form p {
    margin-bottom: 32px;
    opacity: 0.9;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.form-grid textarea {
    grid-column: span 2;
}

.form-grid button {
    grid-column: span 2;
    background: white;
    color: var(--primary);
    border: none;
    padding: 14px;
    font-weight: 700;
}

/* Learning Hub */
.learning-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 50px 0;
}

.category-card {
    background: var(--white);
    padding: 32px;
    text-align: center;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.category-card h3 {
    margin-bottom: 8px;
    color: var(--dark);
}

.category-card p {
    color: var(--gray);
}

.articles-grid, .videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.article-card, .video-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.article-card:hover, .video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.article-image, .video-thumbnail {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    padding: 40px;
    text-align: center;
}

.article-image i, .video-thumbnail i {
    font-size: 3rem;
    color: white;
}

.article-content {
    padding: 24px;
}

.article-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--light);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.read-more {
    display: inline-block;
    margin-top: 16px;
    font-weight: 600;
}

/* SEO Checklist */
.seo-checklist {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    margin: 60px auto;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.checklist-category h3 {
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.checklist-category ul {
    list-style: none;
}

.checklist-category li {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
}

.checklist-category li i {
    color: var(--gray-light);
    font-size: 1.2rem;
}

/* Join Team */
.join-team {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    padding: 60px;
    border-radius: var(--radius-xl);
    color: white;
    margin: 60px auto;
}

.join-team h2 {
    margin-bottom: 16px;
}

.join-team p {
    margin-bottom: 32px;
}

.join-team .btn-primary {
    background: white;
    color: var(--primary);
}

/* Support Section */
.support-section {
    margin: 60px auto;
    text-align: center;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.support-option {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.support-option i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.support-option h3 {
    margin-bottom: 12px;
}

.support-option p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* Map Container */
.map-container {
    margin: 50px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: #CFDFED;
    padding: 60px 0 30px;
    margin-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
    font-size: 0.85rem;
    opacity: 0.75;
    transition: all 0.2s ease;
}

.footer-col li:hover {
    opacity: 1;
}

.footer-col a {
    color: #CFDFED;
    text-decoration: none;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #1F3848;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #CFDFED;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-grid, .contact-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .pricing-card, .price-card {
        min-width: 100%;
    }
    
    .team-member-large {
        flex-direction: column;
        text-align: center;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid textarea,
    .form-grid button {
        grid-column: span 1;
    }
    
    .quote-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .tools-grid, .tools-grid-full {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Glassmorphism Style Tools Filter
   Modern & Elegant Design
============================================ */

.tools-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0 30px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.filter-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 28px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #1f2a3e;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background: linear-gradient(135deg, #0F2B3D, #1B4F6E);
    color: white;
    box-shadow: 0 4px 15px rgba(27, 79, 110, 0.3);
}

.search-box {
    position: relative;
    min-width: 300px;
}

.search-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1rem;
    z-index: 1;
}

.search-box input {
    width: 100%;
    padding: 12px 20px 12px 48px;
    border: none;
    border-radius: 40px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.search-box input:focus {
    outline: none;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive for glassmorphism */
@media (max-width: 768px) {
    .tools-filter {
        flex-direction: column;
        border-radius: 32px;
        padding: 20px;
    }
    
    .filter-group {
        justify-content: center;
        width: 100%;
    }
    
    .search-box {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .filter-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* ============================================
   Services Section Styles
   Modern & Professional Design
============================================ */

/* Services Section Container */
.services-section {
    margin: 80px 0 60px;
    padding: 20px 0;
}

.services-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #1f2a3e;
    position: relative;
}

.services-section h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #0F2B3D, #1B4F6E);
    margin: 16px auto 0;
    border-radius: 3px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 48px;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0F2B3D, #1B4F6E);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, #0F2B3D, #1B4F6E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2a3e;
}

.service-card p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.price-tag {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #1B4F6E;
    margin-bottom: 20px;
    padding: 6px 16px;
    background: #eef2ff;
    border-radius: 40px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1B4F6E;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.service-link i {
    font-size: 0.9rem;
    background: none;
    color: #1B4F6E;
    margin: 0;
    transition: transform 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: #0F2B3D;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ============================================
   FAQ Section Styles
   Accordion Style with Modern Design
============================================ */

.faq-section {
    margin: 60px 0 80px;
    padding: 20px 0;
}

.faq-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #1f2a3e;
    position: relative;
}

.faq-section h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #0F2B3D, #1B4F6E);
    margin: 16px auto 0;
    border-radius: 3px;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

/* FAQ Item */
.faq-item {
    background: white;
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -12px rgba(0, 0, 0, 0.1);
    border-color: #cbdde9;
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2a3e;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item h3:before {
    content: '?';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #0F2B3D, #1B4F6E);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
}

.faq-item p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-left: 40px;
    padding-top: 8px;
}

/* Alternative Accordion Style (if you prefer expandable FAQs) */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid #eef2f6;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1f2a3e;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #f8fafd;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.accordion-icon {
    font-size: 1.2rem;
    color: #1B4F6E;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 0 24px 20px;
}

.accordion-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Responsive Design
============================================ */

@media (max-width: 1024px) {
    .services-grid {
        gap: 24px;
    }
    
    .service-card {
        padding: 28px 20px;
    }
    
    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-section {
        margin: 60px 0 40px;
    }
    
    .services-section h2,
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    .service-card i {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .price-tag {
        font-size: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h3:before {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .faq-item p {
        margin-left: 36px;
    }
}

@media (max-width: 480px) {
    .services-section h2,
    .faq-section h2 {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 20px 16px;
    }
    
    .faq-item {
        padding: 16px;
    }
    
    .faq-item h3 {
        font-size: 1rem;
    }
    
    .faq-item p {
        font-size: 0.85rem;
        margin-left: 32px;
    }
}

/* ============================================
   Dark Mode Support (Optional)
============================================ */

@media (prefers-color-scheme: dark) {
    .service-card,
    .faq-item,
    .accordion-item {
        background: #1f2a3e;
        border-color: #334155;
    }
    
    .service-card h3,
    .faq-item h3,
    .accordion-header h3 {
        color: #f1f5f9;
    }
    
    .service-card p,
    .faq-item p,
    .accordion-content p {
        color: #94a3b8;
    }
    
    .price-tag {
        background: #2d3a4e;
        color: #81c3d7;
    }
    
    .accordion-header:hover {
        background: #2d3a4e;
    }
}

/* ============================================
   Animation Effects
============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.faq-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

/* ============================================
   Hover Effects Enhancements
============================================ */

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(27, 79, 110, 0.05), transparent);
    transition: height 0.3s ease;
    pointer-events: none;
}

.service-card:hover::after {
    height: 100%;
}

/* Price Tag Animation */
.service-card:hover .price-tag {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Icon Animation */
.service-card:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* ============================================
   Additional Styling for Services Page
============================================ */

/* Service Categories (for detailed services page) */
.service-category {
    margin-bottom: 60px;
}

.service-category h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 2px solid #eef2f6;
    color: #1f2a3e;
}

.service-category h2 i {
    margin-right: 12px;
    color: #1B4F6E;
}

/* Service List Items */
.service-list {
    display: grid;
    gap: 20px;
}

.service-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: white;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.1);
    border-color: #cbdde9;
}

.service-item i {
    font-size: 2.5rem;
    color: #1B4F6E;
}

.service-item-content {
    flex: 1;
}

.service-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2a3e;
}

.service-item p {
    color: #6c757d;
    margin-bottom: 12px;
    line-height: 1.5;
}

.service-price {
    font-weight: 700;
    color: #1B4F6E;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .service-category h2 {
        font-size: 1.5rem;
        text-align: center;
    }
}

