/* ==========================================
   DRKD FINANCIAL ADVISORY WEBSITE
   Complete Stylesheet with Professional Design
   ========================================== */

/* ==========================================
   TABLE OF CONTENTS
   ==========================================
   1. CSS VARIABLES & ROOT STYLES
   2. RESET & BASE STYLES
   3. TYPOGRAPHY
   4. NAVIGATION
   5. HERO SECTION & ANIMATIONS
   6. SECTIONS & CONTAINERS
   7. COMPONENTS
      - Buttons
      - Cards
      - Forms
      - Trust Badges
   8. SERVICE SECTIONS
   9. ANNOUNCEMENTS & BLOGS
   10. FAQ
   11. CONTACT
   12. FOOTER
   13. ANIMATIONS & KEYFRAMES
   14. RESPONSIVE DESIGN
   ========================================== */

/* ==========================================
   1. CSS VARIABLES & ROOT STYLES
   ========================================== */
:root {
    /* Color Palette */
    --primary-brown: #8B6F47;
    --primary-green: #6B8E7F;
    --dark-brown: #5D4E37;
    --light-green: #A8C5B8;
    --accent-gold: #B8956A;
    
    /* Text Colors */
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --text-white: #FFFFFF;
    
    /* Background Colors */
    --bg-light: #F8F6F3;
    --bg-white: #FFFFFF;
    --bg-dark: #2C2C2C;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    
    /* Spacing */
    --spacing-xs: 2rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* ==========================================
   2. RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
}


a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* ==========================================
   3. TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

/* ==========================================
   4. NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.2rem 0.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-list {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.nav-link {
    padding: 0.3rem 0.3rem;
    font-weight: 300;
    position: relative;
    transition: var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transform: translateX(-50%);
    transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 2px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition-base);
}
/* ==========================================
   Logo
   ========================================== */

/*.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-brown);
    text-decoration: none;
}*/

img {
    max-width: 100%;
    height: auto;
    display: block;
	background: var(--white);
}

.nav-logo img{
    width: 100px;
    height: auto;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/*.nav-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}*/




/* ==========================================
   5. HERO SECTION & ANIMATIONS
   ========================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 120px 2rem 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-content {
    z-index: 10;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 2rem);
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* Hero Animation Container */
.hero-animation {
    position: relative;
    height: 400px;
    width: 100%;
}

/* Animated Chart Bars */
.chart-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    height: 300px;
    position: absolute;
    bottom: 50px;
    left: 40%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

.chart-bar {
    width: 50px;
    background: linear-gradient(to top, var(--primary-green), var(--light-green));
    border-radius: 10px 10px 0 0;
    transform: scaleY(0);
    transform-origin: bottom;
    animation: growBar 1s ease forwards;
    box-shadow: var(--shadow-md);
}

.bar-1 { height: 150px; animation-delay: 0.2s; }
.bar-2 { height: 220px; animation-delay: 0.4s; background: linear-gradient(to top, var(--primary-brown), var(--accent-gold)); }
.bar-3 { height: 120px; animation-delay: 0.6s; }
.bar-4 { height: 280px; animation-delay: 0.8s; background: linear-gradient(to top, var(--primary-brown), var(--accent-gold)); }
.bar-5 { height: 200px; animation-delay: 1s; }

/* Floating Finance Icons */
.finance-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.finance-icon {
    position: absolute;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    opacity: 0.6;
    animation: floatIcon 4s ease-in-out infinite;
}

.icon-1 { left: 10%; top: 30%; animation-delay: 0s; }
.icon-2 { left: 90%; top: 50%; animation-delay: 0.5s; }
.icon-3 { left: 20%; top: 60%; animation-delay: 1s; }
.icon-4 { left: 70%; top: 40%; animation-delay: 1.5s; }
.icon-5 { left: 50%; top: 50%; animation-delay: 2s; }

/* Animated Line Graph */
.line-graph {
    position: absolute;
    top: 50px;
    right: 0;
    width: 400px;
    height: 200px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

.graph-line {
    stroke: var(--primary-green);
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease forwards 1.5s;
}

.graph-dot {
    fill: var(--accent-gold);
    opacity: 0;
    animation: dotAppear 0.5s ease forwards;
}

.dot-1 { animation-delay: 2s; }
.dot-2 { animation-delay: 2.2s; }
.dot-3 { animation-delay: 2.4s; }
.dot-4 { animation-delay: 2.6s; }
.dot-5 { animation-delay: 2.8s; }

/* Progress Circles */
.progress-circles {
    position: absolute;
    top: 40px;
    left: 40px;
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 2s;
}

.progress-circle {
    position: relative;
    width: 100px;
    height: 100px;
}

.progress-circle svg {
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 8;
}

.progress-fill {
    fill: none;
    stroke: var(--primary-green);
    stroke-width: 8;
    stroke-dasharray: 314;
    stroke-dashoffset: 78.5;
    animation: fillProgress 2s ease forwards 2.5s;
}

.progress-fill-2 {
    stroke: var(--primary-brown);
    stroke-dashoffset: 31.4;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
}

.progress-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 3s;
}

.scroll-indicator span {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
    margin: 8px auto 0;
    animation: scrollDown 2s infinite;
}

/* ==========================================
   6. SECTIONS & CONTAINERS
   ========================================== */
.section-padding {
    padding: var(--spacing-xl) 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bg-light {
    background: var(--bg-light);
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

/* ==========================================
   7. COMPONENTS - BUTTONS
   ========================================== */
.btn-primary,
.btn-outline,
.btn-white {
    display: inline-block;
    padding: 1rem 1rem;
    font-weight: 400;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--text-white);
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-primary nav-cta {
	padding-left: -60px;
}


/* ==========================================
   7. COMPONENTS - TRUST BADGES
   ========================================== */
.trust-section {
    background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold));
    padding: var(--spacing-lg) 2rem;
    color: var(--text-white);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.trust-stat {
    text-align: center;
}

.trust-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-xs);
}

.trust-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* ==========================================
   7. COMPONENTS - CARDS
   ========================================== */
.service-card,
.blog-card,
.announcement-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover,
.blog-card:hover,
.announcement-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Service Cards */
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.service-description {
    flex-grow: 1;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.service-link {
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 1rem;
}

/* ==========================================
   7. COMPONENTS - FORMS
   ========================================== */
.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(107, 142, 127, 0.1);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

select.form-input {
    cursor: pointer;
}

/* ==========================================
   8. SERVICE SECTIONS
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

/* Service Highlights */
.service-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.service-highlight.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.service-highlight-title {
    margin-bottom: var(--spacing-sm);
}

.service-highlight-text {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.service-highlight-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.service-highlight-list li {
    padding: 0.5rem 0;
    font-size: 1.125rem;
    color: var(--text-light);
}

.service-highlight-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-img-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--text-white);
}

/* ==========================================
   8. ABOUT SECTION
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-heading {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.about-feature {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: var(--text-light);
    margin: 0;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--text-white);
}

/* ==========================================
   9. ANNOUNCEMENTS & BLOGS
   ========================================== */
.announcements-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

/* Announcement Cards */
.announcement-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.announcement-card.urgent .announcement-badge {
    background: #dc2626;
    color: var(--text-white);
}

.announcement-card.important .announcement-badge {
    background: #f59e0b;
    color: var(--text-white);
}

.announcement-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.announcement-text {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.announcement-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: var(--spacing-sm);
    border-top: 1px solid #e0e0e0;
}

.announcement-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

.announcement-link {
    color: var(--primary-green);
    font-weight: 600;
}

/* Blog Cards */
.blog-image {
    height: 250px;
    margin-bottom: var(--spacing-sm);
}

.blog-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--text-white);
}

.blog-category {
    display: inline-block;
    background: var(--primary-green);
    color: var(--text-white);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: var(--spacing-sm);
    border-top: 1px solid #e0e0e0;
}

.blog-meta {
    color: var(--text-light);
    font-size: 0.875rem;
}

.blog-link {
    color: var(--primary-green);
    font-weight: 600;
}

/* ==========================================
   10. FAQ
   ========================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary-green);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    user-select: none;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 2rem;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

/* ==========================================
   11. CONTACT
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact-info-title,
.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.contact-info-item {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ==========================================
   12. CTA SECTION
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold));
    padding: var(--spacing-xl) 2rem;
    text-align: center;
    color: var(--text-white);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-sm);
    color: var(--text-white);
}

.cta-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

/* ==========================================
   13. FOOTER
   ========================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--spacing-xl) 2rem var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto var(--spacing-lg);
}

.footer-logo img {
    height: 60px;
    margin-bottom: var(--spacing-sm);
}

.footer-description,
.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-title {
    color: var(--primary-green);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--primary-green);
}

/* ==========================================
   14. ANIMATIONS & KEYFRAMES
   ========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes growBar {
    from {
        transform: scaleY(0);
        opacity: 0;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes dotAppear {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fillProgress {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease forwards 0.3s;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease forwards 0.6s;
    opacity: 0;
}

/* ==========================================
   15. RESPONSIVE DESIGN
   ========================================== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-white);
        flex-direction: column;
        padding: var(--spacing-md);
        transition: var(--transition-base);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .nav-cta {
        width: 100%;
        margin-top: var(--spacing-sm);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .hero-animation {
        height: 400px;
    }
    
    .service-highlight,
    .service-highlight.reverse,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .services-grid,
    .announcements-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }
    
    .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .chart-container {
        gap: 10px;
        height: 200px;
    }
    
    .chart-bar {
        width: 30px;
    }
    
    .highlight-img-placeholder,
    .about-img-placeholder {
        width: 100%;
        height: 300px;
        font-size: 5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section-padding {
        padding: var(--spacing-lg) 1rem;
    }
}

/* ==========================================
   END OF STYLESHEET
   ========================================== */