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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow-x: hidden;
}

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

/* Background Animations */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: -1;
}

/* Floating Elements */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-shapes::before,
.floating-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(44,90,160,0.1), rgba(102,126,234,0.1));
    animation: float 20s infinite ease-in-out;
}

.floating-shapes::before {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -150px;
    animation-delay: -10s;
}

.floating-shapes::after {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(30px) rotate(240deg); }
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
}

.nav a:hover {
    background-color: rgba(255,255,255,0.1);
    color: #ffd700;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255,255,255,0.1);
}

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

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

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

.mobile-menu ul {
    flex-direction: column;
    gap: 0;
    padding: 20px;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    display: block;
    padding: 15px 0;
    text-align: center;
    font-size: 1.1rem;
    border-radius: 0;
    color: white;
}

.mobile-menu a:hover {
    background-color: rgba(255,255,255,0.1);
    color: #ffd700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 150px;
}

.stat i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat .label {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff6b6b;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,107,0.6);
}

/* About Campaign Section */
.about-campaign {
    padding: 80px 0;
    background: white;
}

.about-campaign h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 50px;
}

.campaign-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44,90,160,0.1), transparent);
    transition: left 0.5s;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(44,90,160,0.15);
    border-color: rgba(44,90,160,0.3);
}

.info-card i {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    line-height: 1.8;
}

/* Complaint Types */
.complaint-types {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.complaint-types h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.type-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.type-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.type-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.type-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Complaint Form Section */
.complaint-form-section {
    padding: 80px 0;
    background: white;
}

.complaint-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 50px;
}

.complaint-form {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44,90,160,0.1);
}

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

.form-group small {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #2c5aa0;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px auto 0;
    box-shadow: 0 5px 15px rgba(44,90,160,0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44,90,160,0.4);
}

/* Track Section */
.track-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.track-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.track-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    align-items: end;
}

.track-form .form-group {
    flex: 1;
    margin-bottom: 0;
}

.track-form input {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.track-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.track-btn {
    background: #ff6b6b;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.track-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.tracking-result {
    max-width: 600px;
    margin: 30px auto 0;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 50px;
}

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

.contact-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-card i {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffd700;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffd700;
    color: #2c3e50;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.close {
    color: #aaa;
    float: left;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    left: 20px;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.modal h2 {
    color: #2c5aa0;
    margin-bottom: 20px;
    text-align: center;
}

.modal-body {
    line-height: 1.8;
    color: #333;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    text-align: center;
    display: block;
    margin: 20px 0;
}

/* Responsive Design */

/* Large screens (desktops) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h2 {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        gap: 80px;
    }
    
    .stat {
        min-width: 180px;
        padding: 30px;
    }
}

/* Medium screens (tablets) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav ul {
        gap: 20px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .campaign-info {
        gap: 30px;
    }
    
    .types-grid {
        gap: 25px;
    }
    
    .complaint-form {
        padding: 35px;
    }
    
    .contact-info {
        gap: 25px;
    }
}

/* Small tablets and large phones */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 0.8rem 0;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
    
    /* Hide desktop navigation */
    .nav {
        display: none;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .nav a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin: 40px 0;
    }
    
    .stat {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .stat i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .stat .number {
        font-size: 2.2rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .about-campaign,
    .complaint-form-section,
    .contact-section,
    .track-section {
        padding: 60px 0;
    }
    
    .about-campaign h2,
    .complaint-form-section h2,
    .contact-section h2,
    .track-section h2,
    .complaint-types h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .campaign-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .info-card {
        padding: 30px 20px;
    }
    
    .info-card i {
        font-size: 2.5rem;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .type-card {
        padding: 25px 20px;
    }
    
    .type-card i {
        font-size: 2rem;
    }
    
    .type-card h3 {
        font-size: 1.2rem;
    }
    
    .complaint-form {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 15px;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
        margin: 25px auto 0;
    }
    
    .track-form {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .track-form .form-group {
        margin-bottom: 0;
    }
    
    .track-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .contact-card i {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .modal-content {
        margin: 5% auto;
        padding: 25px 20px;
        width: 95%;
        max-height: 85vh;
    }
    
    .modal h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .modal-body {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .modal-body h3 {
        font-size: 1.2rem;
        margin: 20px 0 10px;
    }
    
    .modal-body ul {
        padding-right: 20px;
        margin: 10px 0;
    }
    
    .modal-body li {
        margin-bottom: 8px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 0.7rem 0;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .logo-text p {
        font-size: 0.75rem;
    }
    
    .nav ul {
        gap: 8px;
    }
    
    .nav a {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .language-toggle button {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 120px 0 50px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 15px;
        margin: 30px 0;
    }
    
    .stat {
        padding: 15px;
    }
    
    .stat i {
        font-size: 1.8rem;
    }
    
    .stat .number {
        font-size: 2rem;
    }
    
    .stat .label {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .about-campaign,
    .complaint-form-section,
    .contact-section,
    .track-section {
        padding: 50px 0;
    }
    
    .about-campaign h2,
    .complaint-form-section h2,
    .contact-section h2,
    .track-section h2,
    .complaint-types h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .info-card,
    .type-card,
    .contact-card {
        padding: 20px 15px;
    }
    
    .info-card i,
    .type-card i,
    .contact-card i {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .info-card h3,
    .type-card h3,
    .contact-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .info-card p,
    .type-card p,
    .contact-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .complaint-form {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .track-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 15px;
    }
    
    .modal-content {
        margin: 2% auto;
        padding: 20px 15px;
        width: 98%;
        max-height: 90vh;
    }
    
    .close {
        font-size: 24px;
        top: 10px;
        left: 15px;
    }
    
    .modal h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        padding-top: 10px;
    }
    
    .modal-body {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .modal-body h3 {
        font-size: 1.1rem;
        margin: 15px 0 8px;
    }
    
    .modal-body p {
        margin-bottom: 12px;
    }
    
    .modal-body ul {
        padding-right: 15px;
        margin: 8px 0;
    }
    
    .modal-body li {
        margin-bottom: 6px;
        font-size: 0.85rem;
    }
    
    .success-icon {
        font-size: 3rem;
        margin: 15px 0;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about-campaign h2,
    .complaint-form-section h2,
    .contact-section h2,
    .track-section h2,
    .complaint-types h2 {
        font-size: 1.6rem;
    }
    
    .complaint-form {
        padding: 15px 10px;
    }
    
    .modal-content {
        padding: 15px 10px;
    }
    
    .modal h2 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        font-size: 0.85rem;
    }
    
    .modal-body h3 {
        font-size: 1rem;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .stat {
        min-width: 150px;
        flex: 0 1 calc(33.333% - 15px);
    }
    
    .about-campaign,
    .complaint-form-section,
    .contact-section,
    .track-section {
        padding: 40px 0;
    }
}

/* Print styles */
@media print {
    .header,
    .hero,
    .complaint-types,
    .track-section,
    .footer {
        display: none;
    }
    
    .complaint-form-section {
        padding: 20px 0;
    }
    
    .complaint-form {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .submit-btn {
        display: none;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.alert {
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Validation */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220,53,69,0.1);
}

.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}
