/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --text: #333;
}

body {
    color: var(--text);
    background-color: #f8f9fa;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: var(--primary);
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Override inline styles for .header-container */
.header-container[style] {
    justify-content: center !important;
    flex-wrap: wrap !important;
    text-align: center !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 24px;
    animation: zoomIn 2s ease;
    transition: all 0.3s ease;
}

.logo[style] {
    margin: 0 auto !important;
}

.logo:hover {
    transform: scale(1.05) rotate(2deg);
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-size: 18px;
}

.logo-text[style] {
    display: block !important;
}

/* Desktop Navigation */
.desktop-nav {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    justify-content: center;
    padding: 0;
}

.desktop-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    position: relative;
    transition: all 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.desktop-nav a:hover {
    color: var(--secondary);
    transform: scale(1.05);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Sidebar Toggle Button */
.toggle-sidebar-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    z-index: 300;
}

.toggle-sidebar-btn:hover {
    transform: rotate(90deg);
    color: var(--secondary);
}

.toggle-sidebar-btn[aria-expanded="true"] i {
    transform: rotate(90deg);
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--primary);
    color: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    right: 0;
    animation: slideInSidebar 0.3s ease forwards;
}

.sidebar-nav {
    flex-grow: 1;
    overflow-y: auto;
    margin-top: 50px;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 15px;
}

.sidebar-nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
    display: block;
    padding: 10px;
    opacity: 1;
}

.sidebar-nav a:hover {
    color: var(--secondary);
}

.close-sidebar-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1001;
}

@keyframes slideInSidebar {
    from { right: -300px; }
    to { right: 0; }
}

@keyframes slideOutSidebar {
    from { right: 0; }
    to { right: -300px; }
}

/* Mobile-Specific Styles */
@media (max-width: 768px) {
    .sidebar {
        width: 250px;
        right: -250px;
    }

    @keyframes slideInSidebar {
        from { right: -250px; }
        to { right: 0; }
    }

    @keyframes slideOutSidebar {
        from { right: 0; }
        to { right: -250px; }
    }
}

@media (max-width: 480px) {
    .sidebar {
        width: 200px;
        right: -200px;
    }

    @keyframes slideInSidebar {
        from { right: -200px; }
        to { right: 0; }
    }

    @keyframes slideOutSidebar {
        from { right: 0; }
        to { right: -200px; }
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .toggle-sidebar-btn {
        display: block;
    }

    .logo-text {
        font-size: 16px;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 14px;
    }

    .logo-image {
        width: 35px;
        height: 35px;
    }

    .sidebar-nav a {
        font-size: 16px;
        padding: 8px 10px;
    }
}

/* Accessibility: Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .sidebar,
    .sidebar.active,
    .toggle-sidebar-btn,
    .close-sidebar-btn,
    .sidebar-nav a {
        transition: none;
        animation: none;
    }
}

/* Touch Devices: Disable Hover Effects */
@media (hover: none) and (pointer: coarse) {
    .desktop-nav a:hover,
    .sidebar-nav a:hover,
    .toggle-sidebar-btn:hover,
    .close-sidebar-btn:hover {
        transform: none;
        background: none;
        color: white;
        padding-left: 15px;
    }
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.9)), url("images/new\ background.jpeg") center/cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    width: 100%;
    animation: typing 1.5s steps(31, end), blink-caret 0.75s step-end infinite;
    animation-fill-mode: forwards;
    white-space: normal;
    overflow: visible;
    border-right: 3px solid white;
    display: inline-block;
    animation: fadeInUp 1s ease;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    touch-action: manipulation;
    min-width: 44px;
    min-height: 44px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--secondary);
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: scale(1.1);
    animation: bounce 0.5s ease;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary);
    transform: scale(1.1);
    animation: bounce 0.5s ease;
}

/* About Section */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    animation: fadeInUp 1s ease;
}

.section-title::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 60px;
    background-color: var(--secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: slideInLeft 1s ease;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
    animation: slideInRight 1s ease;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary);
}

/* Services Section */
.services {
    background-color: #f1f5f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    animation: slideInUp 0.5s ease forwards;
    animation-delay: calc(0.1s * var(--order));
    will-change: transform;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-card:hover::before {
    border-color: var(--secondary);
    box-shadow: 0 0 15px var(--secondary);
}

.service-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:nth-child(1) { --order: 1; }
.service-card:nth-child(2) { --order: 2; }
.service-card:nth-child(3) { --order: 3; }
.service-card:nth-child(4) { --order: 4; }
.service-card:nth-child(5) { --order: 5; }
.service-card:nth-child(6) { --order: 6; }
.service-card:nth-child(7) { --order: 7; }

.service-icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Events Section */
.events-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.events-track {
    display: flex;
    transition: transform 0.5s ease;
}

.event-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    opacity: 0;
    animation: slideInUp 0.5s ease forwards;
    animation-delay: calc(0.1s * var(--order));
    will-change: transform;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.event-card:hover::before {
    border-color: var(--secondary);
    box-shadow: 0 0 15px var(--secondary);
}

.event-card:hover {
    transform: translateY(-5px) rotate(1deg);
}

.event-card:nth-child(1) { --order: 1; }
.event-card:nth-child(2) { --order: 2; }
.event-card:nth-child(3) { --order: 3; }
.event-card:nth-child(4) { --order: 4; }

.event-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.event-content {
    padding: 20px;
}

.event-date {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 15px;
}

.event-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.slider-btn {
    background-color: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: var(--secondary);
    transform: scale(1.1);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    opacity: 0;
    animation: slideInUp 0.5s ease forwards;
    animation-delay: calc(0.1s * var(--order));
    will-change: transform;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.team-member:hover::before {
    border-color: var(--secondary);
    box-shadow: 0 0 15px var(--secondary);
}

.team-member:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member:nth-child(1) { --order: 1; }
.team-member:nth-child(2) { --order: 2; }
.team-member:nth-child(3) { --order: 3; }
.team-member:nth-child(4) { --order: 4; }
.team-member:nth-child(5) { --order: 5; }

.member-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
}

.member-name {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary);
}

.member-role {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    color: var(--primary);
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    transform: rotate(15deg);
    animation: socialPulse 0.5s ease-in-out;
}

.social-link.linkedin:hover {
    color: #0A66C2;
    background-color: rgba(10, 102, 194, 0.1);
}

.social-link.instagram:hover {
    color: #E1306C;
    background-color: rgba(225, 48, 108, 0.1);
}

/* Gallery Section */
.gallery-content {
    text-align: center;
}

/* Contact Section */
.contact {
    background-color: #f1f5f9;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-info {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.detail-icon {
    font-size: 24px;
    color: var(--secondary);
    margin-right: 15px;
}

.contact-form {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

/* Footer */
footer {
    color: white;
    padding: 40px 0 20px;
}

.footer-brand-section {
    background-image: url('images/footer-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 0;
}

.footer-main {
    background-image: url('images/footer-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 40px;
    background-color: var(--secondary);
    bottom: 0;
    left: 0;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary);
    padding-left: 5px;
    transform: scale(1.05);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Social Media Icons */
.social-media-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    list-style: none;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light);
    color: var(--primary);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
    animation: socialPulse 0.5s ease-in-out;
}

.social-link.facebook:hover {
    background-color: #3b5998;
    color: white;
}

.social-link.tiktok:hover {
    background-color: #000000;
    color: white;
}

.social-link.instagram:hover {
    background-color: #E1306C;
    color: white;
}

.social-link.linkedin:hover {
    background-color: #0A66C2;
    color: white;
}

.social-link.youtube:hover {
    background-color: #FF0000;
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: white; }
}

@keyframes socialPulse {
    0% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7);
    }
    50% {
        transform: scale(1.2) rotate(15deg);
        box-shadow: 0 0 0 8px rgba(52, 152, 219, 0);
    }
    100% {
        transform: scale(1) rotate(15deg);
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .hero h1 {
        animation: none;
        border-right: none;
        width: 100%;
    }

    .service-card,
    .event-card,
    .team-member,
    .btn,
    .member-image img,
    nav a,
    .social-link,
    .footer-column a,
    .slider-btn {
        animation: none;
        transition: none;
    }
}

/* Touch Devices: Disable Hover Effects */
@media (hover: none) and (pointer: coarse) {
    .team-member:hover,
    .team-member:hover::before,
    .member-image img:hover,
    .social-link:hover,
    .btn:hover,
    .btn:hover::before,
    .service-card:hover,
    .service-card:hover::before,
    .event-card:hover,
    .event-card:hover::before,
    .slider-btn:hover,
    .footer-column a:hover,
    nav a:hover,
    nav a:hover::after,
    .back-to-top:hover {
        transform: none;
        box-shadow: none;
        border-color: transparent;
        background-color: initial;
        color: initial;
        padding-left: 0;
    }

    .social-link:hover {
        transform: none;
        box-shadow: none;
        background-color: var(--light);
        color: var(--primary);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        height: 60vh;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .about-content {
        flex-direction: column;
        gap: 20px;
    }

    .event-card {
        flex: 0 0 calc(50% - 20px);
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 0;
    }

    .logo-image {
        width: 35px;
        height: 35px;
    }

    .logo-text {
        font-size: 16px;
    }

    .hero {
        height: 50vh;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 120px;
    }

    .btn-outline {
        margin-left: 10px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .about-text h3 {
        font-size: 20px;
    }

    .about-text p {
        font-size: 14px;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        font-size: 35px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 14px;
    }

    .event-card {
        flex: 0 0 calc(100% - 20px);
    }

    .event-content {
        padding: 15px;
    }

    .event-title {
        font-size: 18px;
    }

    .event-date {
        font-size: 12px;
    }

    .event-content p {
        font-size: 14px;
    }

    .team-grid {
        gap: 15px;
    }

    .team-member {
        padding: 10px;
    }

    .member-image {
        aspect-ratio: 3 / 4;
    }

    .member-info {
        padding: 15px;
    }

    .member-name {
        font-size: 16px;
    }

    .member-role {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .member-info p {
        font-size: 12px;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        font-size: 16px;
        width: 28px;
        height: 28px;
    }

    .contact-info, .contact-form {
        padding: 20px;
    }

    .contact-detail h4 {
        font-size: 16px;
    }

    .contact-detail p {
        font-size: 14px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input, .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }

    .footer-column h3 {
        font-size: 18px;
    }

    .footer-column p, .footer-column a {
        font-size: 14px;
    }

    .social-media-list {
        gap: 10px;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 30px;
        height: 30px;
    }

    .logo-text {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 12px;
        min-width: 100px;
    }

    .section-title {
        font-size: 22px;
    }

    .service-card, .event-card, .team-member, .contact-info, .contact-form {
        padding: 10px;
    }

    .team-grid {
        gap: 10px;
    }

    .member-image {
        aspect-ratio: 3 / 4;
    }

    .member-info {
        padding: 10px;
    }

    .member-name {
        font-size: 14px;
    }

    .member-role {
        font-size: 12px;
    }

    .member-info p {
        font-size: 11px;
    }

    .social-links {
        gap: 8px;
    }

    .social-link {
        font-size: 14px;
        width: 24px;
        height: 24px;
    }

    .social-media-list {
        gap: 8px;
    }

    .social-link {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

@media (max-width: 320px) {
    .logo-text {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 20px;
    }

    .hero p {
        font-size: 12px;
    }

    .btn {
        padding: 6px 12px;
        font-size: 10px;
        min-width: 90px;
    }

    .section-title {
        font-size: 20px;
    }

    .about-text h3 {
        font-size: 18px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .team-grid {
        gap: 8px;
    }

    .member-image {
        aspect-ratio: 3 / 4;
    }

    .member-name {
        font-size: 12px;
    }

    .member-role {
        font-size: 10px;
    }

    .member-info p {
        font-size: 10px;
    }

    .social-link {
        font-size: 12px;
        width: 20px;
        height: 20px;
    }
}