/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* OCP Brand Colors - from logo */
    --color-primary: #0F2F4F;
    --color-primary-dark: #0a1f33;
    --color-secondary: #FF7A3D;
    --color-secondary-dark: #e66a2d;
    --color-accent: #3B9FD1;
    --color-accent-light: #5eb3dd;
    --color-accent-dark: #2a8cbe;
    
    /* Grayscale */
    --color-gray-50: #f8f9fa;
    --color-gray-100: #e9ecef;
    --color-gray-200: #dee2e6;
    --color-gray-300: #ced4da;
    --color-gray-400: #adb5bd;
    --color-gray-500: #6c757d;
    --color-gray-600: #495057;
    --color-gray-700: #343a40;
    --color-gray-800: #212529;
    --color-gray-900: #0a0c0d;
    
    /* Extended palette */
    --color-blue-50: #e7f3fb;
    --color-blue-100: #b8dff5;
    --color-blue-600: #3B9FD1;
    --color-orange-50: #fff5f0;
    --color-orange-100: #ffe4d6;
    --color-orange-600: #FF7A3D;
    --color-green-50: #e8f5e9;
    --color-green-100: #c8e6c9;
    --color-green-600: #2e7d32;
    --color-purple-50: #f3e5f5;
    --color-purple-100: #e1bee7;
    --color-purple-600: #7b1fa2;
    --color-yellow-100: #fff9c4;
    --color-yellow-300: #fff176;
    --color-yellow-800: #f57f17;
    --color-red-100: #ffebee;
    --color-red-300: #e57373;
    --color-red-800: #c62828;
}

body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.7;
    color: var(--color-gray-800);
    background: white;
}

h1 { 
    font-size: 2.75rem; 
    font-weight: 700; 
    line-height: 1.2; 
    color: var(--color-primary);
    letter-spacing: -0.02em;
}
h2 { 
    font-size: 2.25rem; 
    font-weight: 700; 
    line-height: 1.3; 
    color: var(--color-primary);
}
h3 { 
    font-size: 1.375rem; 
    font-weight: 600; 
    line-height: 1.4; 
    color: var(--color-gray-800);
}
p { font-size: 1rem; line-height: 1.7; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-xl { font-size: 1.25rem; }
.text-gray { color: var(--color-gray-600); }
.text-bold { font-weight: 600; }
.bg-gray { background: var(--color-gray-50); }

/* Top Bar */
.top-bar {
    background: var(--color-gray-800);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-text {
    color: white;
    font-weight: 500;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar-link:hover {
    color: var(--color-secondary);
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.5);
}

/* Header */
.header {
    background: white;
    border-bottom: 4px solid var(--color-secondary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .3rem 1.5rem;
}

.header-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 61px;
    width: auto;
    max-width: 100%;
}

.icon-building {
    color: var(--color-secondary);
    width: 40px;
    height: 40px;
}

.header-logo .text-sm {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-logo .text-bold {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 3px solid transparent;
}

.nav a:hover {
    color: var(--color-secondary);
    border-bottom-color: var(--color-secondary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--color-primary);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 47, 79, 0.92) 0%, rgba(59, 159, 209, 0.88) 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 48rem;
    color: white;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-badge .icon {
    width: 48px;
    height: 48px;
    color: var(--color-secondary);
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--color-secondary);
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: var(--color-secondary-dark);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

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

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

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

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

.btn-full {
    flex: 1;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    padding: 4rem 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-accent) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border-top: 4px solid transparent;
}

.stat-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.stat-card:nth-child(1) { border-top-color: var(--color-accent); }
.stat-card:nth-child(2) { border-top-color: var(--color-secondary); }
.stat-card:nth-child(3) { border-top-color: var(--color-green-600); }
.stat-card:nth-child(4) { border-top-color: var(--color-purple-600); }

.stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.stat-icon.blue { background: var(--color-blue-100); color: var(--color-accent); }
.stat-icon.orange { background: var(--color-orange-100); color: var(--color-secondary); }
.stat-icon.green { background: var(--color-green-100); color: var(--color-green-600); }
.stat-icon.purple { background: var(--color-purple-100); color: var(--color-purple-600); }

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--color-gray-600);
}

/* Section */
.section {
    padding: 5rem 0;
}

.section:nth-child(odd) {
    background: white;
}

.section:nth-child(even) {
    background: var(--color-gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--color-secondary);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.section-description {
    color: var(--color-gray-600);
    max-width: 48rem;
    margin: 1rem auto 0;
    font-size: 1.1rem;
}

/* Tabs */
.tabs {
    margin-top: 2rem;
}

.tabs-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 32rem;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 0.5rem;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-gray-200);
}

.tab-trigger {
    background: transparent;
    border: none;
    padding: 0.875rem 1rem;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: all 0.3s;
    font-weight: 600;
    color: var(--color-gray-700);
    position: relative;
}

.tab-trigger:hover {
    color: var(--color-primary);
    background: var(--color-gray-50);
}

.tab-trigger.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.tab-trigger.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--color-accent);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Load More Container */
.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.load-more-btn {
    min-width: 250px;
}

/* Card */
.card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--color-gray-100);
}

.card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.card-header {
    padding: 1.5rem;
    padding-bottom: 0;
}

.card-body {
    padding: 1.5rem;
}

.card-body ul {
    list-style: none;
}

.card-body ul li {
    padding: 0.25rem 0;
    color: var(--color-gray-700);
}

/* Project Card */
.project-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.card:hover .project-card-image img {
    transform: scale(1.05);
}

.project-title-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.project-title-row h3 {
    color: var(--color-primary);
    transition: color 0.2s;
}

.card:hover .project-title-row h3 {
    color: var(--color-accent);
}

.project-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-gray-600);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.project-description {
    color: var(--color-gray-600);
    margin: 1rem 0;
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.project-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.project-info-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray-600);
}

.progress-container {
    margin-top: 0.5rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 0.5rem;
    background: var(--color-gray-200);
    border-radius: 0.25rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-secondary) 100%);
    transition: width 0.3s;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid;
}

.badge.planning {
    background: var(--color-yellow-100);
    color: var(--color-yellow-800);
    border-color: var(--color-yellow-300);
}

.badge.in-progress {
    background: var(--color-blue-100);
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.badge.completed {
    background: var(--color-green-100);
    color: var(--color-green-600);
    border-color: var(--color-green-600);
}

.badge.new {
    background: var(--color-orange-100);
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    cursor: pointer;
}

.gallery-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 0.5rem 0.5rem 0 0;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-info {
    padding: 1rem;
}

.gallery-info h3 {
    margin-bottom: 0.25rem;
}

.gallery-info p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 80rem;
    width: 90%;
    max-height: 90vh;
    background: white;
    border-radius: 0.5rem;
    overflow-y: auto;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-gray-200);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-nav:hover {
    background: white;
}

.lightbox-prev {
    left: 0.5rem;
}

.lightbox-next {
    right: 0.5rem;
}

.lightbox-body {
    padding: 1.5rem;
}

.lightbox-body h3 {
    margin-bottom: 1rem;
}

.lightbox-image-container {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.lightbox-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-body p {
    margin-bottom: 0.5rem;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.news-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

.news-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-header {
    padding: 1.5rem;
    padding-bottom: 0;
}

.news-badges {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.news-body {
    padding: 1.5rem;
}

.news-excerpt {
    color: var(--color-gray-600);
    margin-bottom: 1rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
}

.news-link:hover {
    color: var(--color-secondary-dark);
    text-decoration: underline;
}

/* Feedback Form */
.feedback-form-container {
    max-width: 42rem;
    margin: 0 auto;
}

.feedback-card .card-header {
    padding: 1.5rem;
    padding-bottom: 1rem;
}

.feedback-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feedback-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-orange-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.feedback-card h3 {
    margin-bottom: 0.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(10, 126, 191, 0.1);
}

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

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-note {
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--color-gray-700);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.icon-blue {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.icon-green {
    color: var(--color-green-600);
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
}

.contact-card {
    text-align: center;
    padding: 1.5rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon.blue {
    background: var(--color-blue-100);
    color: var(--color-accent);
}

.contact-icon.green {
    background: var(--color-green-100);
    color: var(--color-green-600);
}

.contact-icon.purple {
    background: var(--color-purple-100);
    color: var(--color-purple-600);
}

.contact-card .text-sm {
    margin-bottom: 0.25rem;
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: white;
    padding: 3rem 0 2rem;
    border-top: 4px solid var(--color-secondary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 75px;
    width: auto;
    /*! filter: brightness(0) invert(1); */
    opacity: 0.9;
    z-index: 9999;
}

.footer-logo .icon {
    width: 24px;
    height: 24px;
}

.footer-logo .text-gray {
    color: var(--color-gray-400);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--color-gray-900);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(200%);
    transition: transform 0.3s;
    z-index: 3000;
    max-width: 400px;
}

.toast.show {
    transform: translateY(0);
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.toast-description {
    font-size: 0.875rem;
    color: var(--color-gray-300);
}

/* Icons */
.icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        border-top: 2px solid var(--color-secondary);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav.active a {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--color-gray-200);
        color: var(--color-primary);
    }
    
    .nav.active a:hover {
        background: var(--color-gray-50);
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-list {
        grid-template-columns: 1fr;
    }
    
    .project-grid,
    .gallery-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .load-more-btn {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .lightbox-content {
        width: 95%;
    }
    
    .toast {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .stats-section {
        padding: 2rem 0;
    }
}
