/* Global CSS reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0A3D62;
    --secondary: #1E90FF;
    --accent: #FFD700;
    --light: #F8FAFC;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   FIXED NAVIGATION - DESKTOP & MOBILE
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.navbar.scrolled {
    background: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-logo #logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-logo #logo {
    color: white;
}

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .hamburger span {
    background: white;
}

/* Hamburger Animation */
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 61, 98, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1001;
    }

    .navbar.open .nav-menu {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .navbar.open .nav-menu li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger animation for menu items */
    .navbar.open .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .navbar.open .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
    .navbar.open .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
    .navbar.open .nav-menu li:nth-child(4) { transition-delay: 0.4s; }
    .navbar.open .nav-menu li:nth-child(5) { transition-delay: 0.5s; }
    .navbar.open .nav-menu li:nth-child(6) { transition-delay: 0.6s; }

    .nav-menu a {
        font-size: 1.5rem;
        padding: 1rem;
    }

    .navbar {
        padding: 1rem 1.5rem;
    }
}

/* ============================================
   END NAVIGATION STYLES
   ============================================ */

/* Section Animations */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section#home {
    opacity: 1;
    transform: translateY(0);
}

section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

section h2 {
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(10, 61, 98, 0.7), rgba(10, 61, 98, 0.9)), url('https://images.pexels.com/photos/28482154/pexels-photo-28482154.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 0 1rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Cpath d='M0,10 Q25,0 50,10 T100,10 V20 H0 Z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    background-size: 100px 20px;
    background-repeat: repeat-x;
    pointer-events: none;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent), #FFD700);
    color: var(--primary);
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #FFD700, var(--accent));
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-tertiary {
    background: white;
    color: black;
    border: 2px solid #0A3D62;
}

.btn-tertiary:hover {
    background: #0A3D62;
    color: white;
}

.scroll-arrow {
    position: absolute;
    bottom: 2rem;
    font-size: 2rem;
    animation: wave 2s infinite;
    color: white;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary);
}

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

/* Services Section */
.services-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

#services-title, #articles-title, #contact-title, #team-title, #about-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    color: var(--primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.services-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--primary);
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    border-color: var(--accent);
}

.service-card:hover .card-cta {
    display: block;
    animation: slideIn 0.3s ease;
}

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

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 2rem;
}

.card-icon svg {
    transition: transform 0.3s ease;
    max-width:48px;
    max-height:48px;
}

.service-card:hover .card-icon svg {
    transform: rotate(10deg);
}

.card-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.accordion-toggle {
    background: none;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 1rem;
    transition: background 0.3s ease;
}

.accordion-toggle:hover {
    background: var(--primary);
    color: white;
}

.accordion-content {
    display: none;
    text-align: left;
    margin-bottom: 1rem;
}

.accordion-content ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.accordion-content li {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.card-cta {
    width: 100%;
}

/* Team Section */
.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.team-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--primary);
    opacity: 0.8;
}

.ceo-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light) 0%, #e0f2fe 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.ceo-image {
    flex: 1;
    max-width: 50%;
}

.ceo-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.ceo-content {
    flex: 1;
    padding: 3rem;
    text-align: left;
}

.ceo-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.ceo-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.ceo-bio {
font-family: 'Inter', sans-serif;
font-weight: 400;
line-height: 1.6;
margin-bottom: 2rem;
color: var(--primary);
}

/* About Section */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

#about-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    color: var(--primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.about-story {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.story-intro {
    margin-bottom: 3rem;
}

.story-lead {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--primary);
    font-weight: 500;
    opacity: 0.9;
    text-align: center;
    margin: 0;
}

.story-body {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.story-section {
    position: relative;
}

.story-quote {
    background: linear-gradient(135deg, var(--light) 0%, #f8f9fa 100%);
    border-left: 4px solid var(--accent);
    padding: 2rem 2.5rem;
    margin: 1rem 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.story-quote blockquote {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--primary);
    font-weight: 500;
    margin: 0;
    font-style: italic;
    position: relative;
}

.story-quote blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent);
    position: absolute;
    top: -10px;
    left: -20px;
    opacity: 0.3;
}

.story-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--primary);
    opacity: 0.9;
    margin: 0;
    text-align: justify;
}

.story-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--light) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.value-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(10, 61, 98, 0.1);
}

.value-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.value-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.5px;
}

.value-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--primary);
    opacity: 0.8;
    line-height: 1.4;
}

.story-mission {
    background: linear-gradient(135deg, var(--primary) 0%, #0A2A4A 100%);
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.story-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Cpath d='M0,10 Q25,0 50,10 T100,10 V20 H0 Z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
    background-size: 200px 40px;
    background-repeat: repeat-x;
    pointer-events: none;
}

.mission-statement {
    position: relative;
    z-index: 1;
}

.mission-statement h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.mission-statement p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.articles-container {
max-width: 1200px;
margin: 0 auto;
padding: 4rem 2rem;
text-align: center;
    text-align: center;
}

.articles-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--primary);
    opacity: 0.8;
}

.featured-article {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    position: relative;
}

.featured-image {
    flex: 1;
    position: relative;
}

.featured-image img {
    width: 100%;
    height: -webkit-fill-available;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.featured-content {
    flex: 1;
    padding: 3rem;
    text-align: left;
}

.featured-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.featured-content p {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--primary);
}

.read-more-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.read-more-link:hover {
    text-decoration: underline;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    position: relative;
}

.article-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.read-time {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: var(--primary);
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-content {
    padding: 1.5rem;
}

.article-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.article-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--primary);
    opacity: 0.8;
}

.articles-footer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.view-all-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--primary);
    opacity: 0.8;
}

.contact-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-form {
    flex: 1;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--primary);
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 0.25rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    font-size: 0.8rem;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.check-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: green;
    font-weight: bold;
    display: none;
    background: white;
    padding: 0 0.25rem;
}

.success-message {
    margin-top: 1rem;
    padding: 1rem;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

.contact-details {
    flex: 1;
    text-align: left;
}

.contact-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.contact-info a {
    color: var(--secondary);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.map-placeholder {
    height: 200px;
    background: #f0f0f0;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    font-family: 'Inter', sans-serif;
    color: var(--primary);
    border-radius: 8px;
}

/* Button Ripples */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.6s, height 0.6s;
    transform: translate(-50%, -50%);
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

/* Lazy Images */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.lazy.loaded {
    opacity: 1;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-align: center;
}

.floating-cta.hidden {
    transform: translateY(100%);
}

.cta-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: auto;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary) 0%, #0A2A4A 100%);
    color: white;
    padding: 2rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.footer-logo h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

/* Calendly Modal */
.calendly-content {
    width: 90%;
    max-width: 600px;
}

.calendly-placeholder {
    height: 400px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    color: var(--primary);
    border-radius: 8px;
}

/* Focus States for Accessibility */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ============================================
   TABLET STYLES
   ============================================ */

@media (max-width: 1024px) {
    /* About Section */
    .story-quote {
        padding: 1.5rem 2rem;
    }

    .story-values {
        padding: 2rem 1.5rem;
    }

    .story-mission {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    /* Hero Section */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    #services-title, #team-title, #articles-title, #contact-title, #about-title {
        font-size: 2rem;
    }
    
    .services-subtitle, .team-subtitle, .articles-subtitle, .contact-subtitle, .about-subtitle {
        font-size: 1rem;
    }

    /* Team */
    .ceo-card {
        flex-direction: column;
    }
    
    .ceo-image {
        max-width: 100%;
    }
    
    .ceo-content {
        padding: 2rem;
        text-align: center;
    }

    /* Articles */
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-article {
        flex-direction: column;
    }
    
    .featured-image img {
        height: 200px;
    }
    
    .featured-content {
        padding: 2rem;
        text-align: center;
    }
    
    .articles-footer {
        flex-direction: column;
        gap: 1rem;
    }

    /* Contact */
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        width: 100%;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    /* About Section */
    .story-lead {
        font-size: 1.2rem;
        text-align: center;
    }

    .story-body {
        gap: 2rem;
    }

    .story-quote {
        padding: 1.5rem 2rem;
    }

    .story-quote blockquote {
        font-size: 1.1rem;
    }

    .story-values {
        padding: 2rem;
    }

    .story-mission {
        padding: 2.5rem 2rem;
    }

    .mission-statement h3 {
        font-size: 1.8rem;
    }

    .mission-statement p {
        font-size: 1rem;
    }
}