/* ============================================
   SUVRAT GLOBAL - COMPLETE STYLESHEET
   ============================================ */

:root {
    --primary-color: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #f97316;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--secondary-color);
}

p {
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

/* ============================================
   UTILITIES & COMPONENTS
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.section-title {
    font-size: 40px;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

/* ============================================
   NAVBAR & NAVIGATION
   ============================================ */

.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-icon {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    animation: slideInDown 0.8s ease;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 40px;
    animation: slideInUp 0.8s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background-color: var(--primary-color);
    top: -100px;
    right: -100px;
    opacity: 0.1;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background-color: var(--accent-color);
    bottom: -50px;
    left: -100px;
    opacity: 0.1;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background-color: var(--primary-color);
    top: 50%;
    left: 10%;
    opacity: 0.05;
}

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--white);
}

.page-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   HIGHLIGHTS SECTION
   ============================================ */

.highlights {
    background-color: var(--light-bg);
    padding: 80px 20px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.highlight-card p {
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--light-bg);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    background-color: var(--light-bg);
    padding: 80px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    margin-bottom: 20px;
    font-size: 20px;
}

.testimonial-card p {
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    margin: 60px 0;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   OUR STORY & MISSION VISION
   ============================================ */

.our-story {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.story-text p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission-vision {
    padding: 80px 20px;
    background-color: var(--white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* ============================================
   CORE VALUES
   ============================================ */

.core-values {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background-color: var(--light-bg);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.member-avatar {
    font-size: 64px;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.member-bio {
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   TIMELINE SECTION
   ============================================ */

.timeline-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 100px;
    width: 2px;
    height: calc(100% + 30px);
    background-color: var(--primary-color);
}

.timeline-marker {
    min-width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.timeline-content {
    background-color: var(--white);
    padding: 30px 30px;
    border-radius: 12px;
    flex: 1;
    box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   SERVICE DETAILS
   ============================================ */

.service-category {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.service-category:nth-child(2n) {
    background-color: var(--white);
}

.service-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-detail-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-detail-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-light);
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    min-width: 200px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.process-arrow {
    font-size: 30px;
    color: var(--primary-color);
    display: none;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.pricing-card {
    background-color: var(--light-bg);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.pricing-card.featured h3 {
    color: var(--white);
}

.price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.pricing-card.featured .price {
    color: var(--white);
}

.price-desc {
    font-size: 14px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.pricing-card.featured .price-desc {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 15px;
}

.pricing-card.featured .pricing-features li {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 20px;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */

.portfolio-filters {
    padding: 40px 20px;
    background-color: var(--light-bg);
    text-align: center;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.portfolio-gallery {
    padding: 80px 20px;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    display: none;
}

.portfolio-item.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.portfolio-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--gray-100) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(30, 64, 175, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--white);
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
}

.portfolio-info {
    padding: 20px;
}

.portfolio-info h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.portfolio-category {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   CASE STUDIES
   ============================================ */

.case-studies {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.case-study-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.case-study-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.3;
}

.case-study-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.case-study-category {
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.case-study-challenge,
.case-study-solution,
.case-study-result {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: left;
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-search {
    padding: 40px 20px;
    background-color: var(--light-bg);
}

.search-bar {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 30px;
    box-shadow: var(--shadow-md);
    border-radius: 50px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.search-input::placeholder {
    color: var(--gray-400);
}

.search-input:focus {
    outline: none;
}

.search-btn {
    background-color: var(--primary-color);
    border: none;
    color: var(--white);
    padding: 0 20px;
    cursor: pointer;
    font-size: 18px;
}

.blog-categories {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.category-btn {
    padding: 8px 20px;
    border: 2px solid var(--gray-300);
    background-color: var(--white);
    color: var(--text-dark);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.blog-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background-color: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: none;
}

.blog-card.show {
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.5s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

.blog-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.blog-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
}

.read-more:hover {
    color: var(--accent-color);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: var(--text-light);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--white);
}

.newsletter-section p {
    font-size: 16px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.newsletter-input:focus {
    outline: none;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-info {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 15px;
    line-height: 1.6;
}

.contact-main {
    padding: 80px 20px;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section h2,
.map-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.contact-form button {
    margin-top: 10px;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.form-message.success {
    background-color: #dcfce7;
    color: #15803d;
    border: 1px solid #86efac;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--gray-100) 100%);
    border-radius: 12px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.map-marker {
    font-size: 64px;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 16px;
    margin-bottom: 10px;
}

.map-note {
    font-size: 14px;
    color: var(--text-light);
}

.map-details {
    margin-top: 30px;
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
}

.map-details h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* ============================================
   SOCIAL SECTION
   ============================================ */

.social-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-color);
}

.social-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.social-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.social-card p {
    font-size: 14px;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-bg);
}

.faq-question h4 {
    font-size: 18px;
    margin: 0;
}

.faq-toggle {
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 30px;
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-link {
        display: block;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        color: var(--primary-color);
        font-weight: 600;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        display: block;
        rotate: 90deg;
        margin: -10px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-card h3 {
        font-size: 18px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .nav-logo span {
        font-size: 16px;
    }

    .highlight-card,
    .service-card,
    .team-member {
        padding: 25px 20px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        min-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline-item {
        gap: 15px;
    }

    .timeline-marker {
        min-width: 60px;
        height: 60px;
        font-size: 16px;
    }

    .timeline-content {
        padding: 20px;
    }
}
