/* Knights of Columbus Council #16568 - St. Margaret's Catholic Church */
/* Official Colors: Blue #003da5, Gold #fdb913 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --koc-blue: #003da5;
    --koc-gold: #fdb913;
    --koc-dark-blue: #002975;
    --koc-light-gold: #ffd54f;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --text-color: #2c2c2c;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 700;
    color: var(--koc-blue);
    margin-bottom: 1rem;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--koc-blue) 0%, var(--koc-dark-blue) 100%);
    color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-section i {
    font-size: 2.5rem;
    color: var(--koc-gold);
}

.logo-section h1 {
    color: var(--koc-gold);
    font-size: 1.8rem;
    margin: 0;
}

.logo-section p {
    color: var(--koc-light-gold);
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Menu Toggle Button - Hidden on Desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: var(--koc-gold);
}

/* Desktop Navigation */
nav {
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav li {
    margin: 0;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    display: inline-block;
    white-space: nowrap;
}

nav a:hover,
nav a.active {
    color: var(--koc-gold);
    background-color: rgba(253, 185, 19, 0.15);
}

/* Hero Section (Home Page) */
.hero {
    background: linear-gradient(135deg, var(--koc-blue) 0%, var(--koc-dark-blue) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-icon {
    font-size: 4rem;
    color: var(--koc-gold);
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: var(--koc-gold);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--koc-light-gold);
    margin-bottom: 1rem;
}

.hero-motto {
    font-size: 1.2rem;
    color: var(--koc-gold);
    margin-bottom: 2rem;
}

/* Page Hero (Internal Pages) */
.page-hero {
    background: linear-gradient(135deg, var(--koc-gold) 0%, #f9a825 100%);
    color: var(--koc-dark-blue);
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.page-hero h1 {
    color: var(--koc-dark-blue);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--koc-blue);
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
}

/* Principles Section */
.principles-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.principles-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.principle-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--koc-gold);
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.principle-card i {
    font-size: 3rem;
    color: var(--koc-blue);
    margin-bottom: 1rem;
}

.principle-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.principle-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    padding: 4rem 0;
}

.mission-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.mission-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.mission-list i {
    color: var(--koc-gold);
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.mission-cta {
    background: linear-gradient(135deg, var(--koc-blue) 0%, var(--koc-dark-blue) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.mission-cta i {
    font-size: 3rem;
    color: var(--koc-gold);
    margin-bottom: 1rem;
}

.mission-cta h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mission-cta p {
    color: var(--koc-light-gold);
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--koc-gold) 0%, #f9a825 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--koc-dark-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--koc-blue);
    margin-bottom: 2rem;
}

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

/* About Page Styles */
.about-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.about-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.motto-section {
    text-align: center;
    background: linear-gradient(135deg, var(--koc-blue) 0%, var(--koc-dark-blue) 100%);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.motto-section i {
    font-size: 2rem;
    color: var(--koc-gold);
    margin-bottom: 1rem;
}

.motto-section h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.motto {
    font-size: 2rem;
    color: var(--koc-gold);
    margin-bottom: 0.5rem;
}

.motto-translation {
    font-size: 1.2rem;
    color: var(--koc-light-gold);
}

.principles-intro {
    text-align: center;
    font-size: 1.1rem;
    margin: 2rem 0 3rem;
}

.principles-detailed {
    margin: 3rem 0;
}

.principle-detail {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--koc-gold);
}

.principle-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.principle-header i {
    font-size: 2.5rem;
    color: var(--koc-blue);
}

.principle-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.principle-detail p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.council-mission {
    margin: 4rem 0;
}

.council-mission h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.council-mission > p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.mission-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--koc-gold);
    min-width: 2rem;
}

.highlight-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.join-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--koc-gold) 0%, #f9a825 100%);
    padding: 3rem 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.join-cta h3 {
    color: var(--koc-dark-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.join-cta p {
    color: var(--koc-blue);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Membership Page Styles */
.membership-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.membership-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.membership-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.requirements-section {
    margin: 4rem 0;
}

.requirements-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.requirement-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--koc-blue);
}

.requirement-card i {
    font-size: 3rem;
    color: var(--koc-gold);
    margin-bottom: 1rem;
}

.requirement-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.requirement-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.benefits-section {
    margin: 4rem 0;
    background: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 8px;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--koc-blue);
    min-width: 2rem;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.degrees-section {
    margin: 4rem 0;
}

.degrees-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.degrees-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.degree-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid var(--koc-gold);
}

.degree-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--koc-blue) 0%, var(--koc-dark-blue) 100%);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.degree-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.degree-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-section {
    margin: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.faq-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--koc-blue);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--koc-blue);
    margin-bottom: 0.8rem;
}

.faq-item h3 i {
    color: var(--koc-gold);
    margin-right: 0.5rem;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Under Construction Styles */
.under-construction {
    text-align: center;
    padding: 3rem 0;
}

.construction-icon {
    font-size: 5rem;
    color: var(--koc-gold);
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.construction-icon i {
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

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

.under-construction h2 {
    font-size: 2.5rem;
    color: var(--koc-blue);
    margin-bottom: 2rem;
}

.construction-message {
    max-width: 700px;
    margin: 0 auto 3rem;
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--koc-gold);
}

.construction-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.construction-message p:last-of-type {
    font-weight: 600;
    color: var(--koc-blue);
}

.construction-cta {
    margin-top: 2rem;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--koc-blue) 0%, var(--koc-dark-blue) 100%);
    color: var(--white) !important;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--koc-dark-blue) 0%, var(--koc-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    color: var(--white) !important;
}

.btn-primary i {
    margin-right: 0.5rem;
}

/* Coming Soon Features */
.coming-soon-features {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--medium-gray);
}

.coming-soon-features h3 {
    font-size: 2rem;
    color: var(--koc-blue);
    margin-bottom: 2rem;
    text-align: center;
}

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

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--koc-gold);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.feature-card i {
    font-size: 3rem;
    color: var(--koc-blue);
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: var(--koc-dark-blue);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--koc-dark-blue) 0%, var(--koc-blue) 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    color: var(--koc-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--koc-gold);
    padding-bottom: 0.5rem;
}

.footer-section p,
.footer-section a {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--koc-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(253, 185, 19, 0.3);
    margin-top: 2rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom strong {
    color: var(--koc-gold);
    font-size: 1.1rem;
}

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--koc-blue);
    margin-bottom: 1rem;
}

.contact-info > p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.info-block {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--koc-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-block:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.info-block i {
    font-size: 2rem;
    color: var(--koc-blue);
    min-width: 2rem;
}

.info-block h3 {
    font-size: 1.2rem;
    color: var(--koc-dark-blue);
    margin-bottom: 0.5rem;
}

.info-block p,
.info-block a {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-block a {
    color: var(--koc-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: var(--koc-gold);
}

.contact-form-container {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    font-size: 2rem;
    color: var(--koc-blue);
    margin-bottom: 1.5rem;
}

.form-status {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.form-status.success::before {
    content: '✓ ';
    font-size: 1.2rem;
}

.form-status.error::before {
    content: '⚠ ';
    font-size: 1.2rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--koc-dark-blue);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--medium-gray);
    border-radius: 5px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--koc-blue);
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.checkbox-group label {
    margin: 0;
    font-weight: 400;
}

.btn-primary[type="submit"] {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-style: italic;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--medium-gray);
    text-align: center;
}

.map-section h2 {
    font-size: 2rem;
    color: var(--koc-blue);
    margin-bottom: 1rem;
}

.map-section > p {
    margin-bottom: 2rem;
    color: var(--text-color);
}

.map-placeholder {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--koc-blue);
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.1rem;
    color: var(--koc-dark-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.btn-secondary {
    display: inline-block;
    background: linear-gradient(135deg, var(--koc-gold) 0%, #f9a825 100%);
    color: var(--koc-dark-blue) !important;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #f9a825 0%, var(--koc-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    color: var(--koc-dark-blue) !important;
}

.btn-secondary i {
    margin-right: 0.5rem;
}

/* Desktop - Ensure Navigation is Visible */
@media (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }
    
    nav {
        display: block !important;
        position: static !important;
        max-height: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }
    
    nav ul {
        display: flex !important;
        flex-direction: row !important;
    }
    
    nav a {
        color: var(--white) !important;
    }
}

/* Responsive Design - Tablet (769px to 992px) */
@media (max-width: 992px) and (min-width: 769px) {
    .container {
        padding: 0 15px;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    nav a {
        padding: 0.5rem 0.9rem;
        font-size: 0.95rem;
        color: var(--white);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Header with Hamburger Menu */
    header {
        padding: 1rem 0;
        position: sticky;
        top: 0;
        background: linear-gradient(135deg, var(--koc-blue) 0%, var(--koc-dark-blue) 100%);
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    /* Logo Section - Left Side */
    .logo-section {
        flex: 1;
        justify-content: flex-start;
        text-align: left;
        padding: 0;
    }
    
    .logo-section i {
        font-size: 1.8rem;
        color: var(--koc-gold);
    }
    
    .logo-section h1 {
        font-size: 1.1rem;
        color: var(--koc-gold);
        line-height: 1.2;
    }
    
    .logo-section p {
        font-size: 0.7rem;
        color: var(--koc-light-gold);
        line-height: 1.2;
    }
    
    /* Show Hamburger Menu Button */
    .menu-toggle {
        display: block;
        order: 3;
    }
    
    /* Mobile Navigation - Dropdown */
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--koc-blue) 0%, var(--koc-dark-blue) 100%);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    /* Show menu when active */
    nav.active {
        max-height: 400px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    nav li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    nav li:last-child {
        border-bottom: none;
    }
    
    nav a {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        text-align: left;
        color: var(--white);
        background-color: transparent;
        font-size: 1rem;
        border-radius: 0;
        font-weight: 600;
    }
    
    nav a:hover,
    nav a.active {
        background-color: rgba(253, 185, 19, 0.2);
        color: var(--koc-gold);
        border-left: 4px solid var(--koc-gold);
    }
    
    /* Mobile Page Hero - Fixed Banner */
    .page-hero {
        padding: 2rem 1rem;
        background: linear-gradient(135deg, var(--koc-gold) 0%, #f9a825 100%);
    }
    
    .page-hero h1 {
        font-size: 1.6rem;
        color: var(--koc-dark-blue);
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .page-hero p {
        font-size: 0.95rem;
        color: var(--koc-blue);
    }
    
    /* Mobile Buttons - Fixed Size and Padding */
    .btn-primary {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
        display: block;
    }
    
    .btn-primary i {
        margin-right: 0.5rem;
    }
    
    .btn-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    /* Mobile Content */
    .content-section {
        padding: 2rem 0;
    }
    
    .under-construction {
        padding: 2rem 0;
    }
    
    .construction-icon {
        font-size: 3.5rem;
        gap: 1.5rem;
    }
    
    .under-construction h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .construction-message {
        padding: 1.5rem;
        margin: 0 auto 2rem;
    }
    
    .construction-message p {
        font-size: 1rem;
    }
    
    /* Mobile Feature Grid */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card i {
        font-size: 2.5rem;
    }
    
    .feature-card h4 {
        font-size: 1.2rem;
    }
    
    /* Mobile Contact Form */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info h2 {
        font-size: 1.6rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-form-container h2 {
        font-size: 1.6rem;
    }
    
    .info-block {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .info-block i {
        font-size: 1.5rem;
    }
    
    .info-block h3 {
        font-size: 1.1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem;
        padding: 0.8rem;
    }
    
    /* Mobile Map Section */
    .map-section {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .map-section h2 {
        font-size: 1.6rem;
    }
    
    .map-placeholder {
        padding: 2rem 1rem;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
    
    .map-placeholder p {
        font-size: 1rem;
    }
    
    /* Mobile Footer */
    footer {
        padding: 2rem 0 1rem;
        margin-top: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    /* XS Mobile Header */
    .logo-section {
        gap: 0.8rem;
    }
    
    .logo-section i {
        font-size: 1.8rem;
    }
    
    .logo-section h1 {
        font-size: 1.1rem;
    }
    
    .logo-section p {
        font-size: 0.75rem;
    }
    
    /* XS Mobile Navigation */
    nav a {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    /* XS Mobile Banner */
    .page-hero {
        padding: 1.5rem 0.8rem;
    }
    
    .page-hero h1 {
        font-size: 1.4rem;
    }
    
    .page-hero p {
        font-size: 0.85rem;
    }
    
    /* XS Mobile Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
    
    /* XS Mobile Content */
    .construction-icon {
        font-size: 2.8rem;
        gap: 1rem;
    }
    
    .under-construction h2 {
        font-size: 1.5rem;
    }
    
    .construction-message {
        padding: 1.2rem;
    }
    
    .construction-message p {
        font-size: 0.95rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-card i {
        font-size: 2.2rem;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    /* XS Mobile Contact */
    .contact-info h2,
    .contact-form-container h2 {
        font-size: 1.4rem;
    }
    
    .contact-form-container {
        padding: 1.2rem;
    }
    
    .info-block {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .info-block i {
        font-size: 1.3rem;
    }
    
    .info-block h3 {
        font-size: 1rem;
    }
    
    .info-block p,
    .info-block a {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.7rem;
    }
    
    .form-status {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .form-note {
        font-size: 0.8rem;
    }
    
    /* XS Mobile Map */
    .map-placeholder {
        padding: 1.5rem 0.8rem;
    }
    
    .map-placeholder i {
        font-size: 2.5rem;
    }
    
    .map-placeholder p {
        font-size: 0.95rem;
    }
    
    /* XS Mobile Footer */
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .footer-bottom strong {
        font-size: 1rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .page-hero {
        padding: 1.5rem 1rem;
    }
    
    .page-hero h1 {
        font-size: 1.5rem;
    }
    
    .construction-icon {
        font-size: 3rem;
    }
    
    nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav li {
        width: auto;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    nav li:last-child {
        border-right: none;
    }
    
    nav a {
        padding: 0.6rem 1rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets for mobile */
    nav a,
    .btn-primary,
    .btn-secondary,
    button,
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Remove hover effects on touch devices */
    .feature-card:hover {
        transform: none;
    }
    
    .info-block:hover {
        transform: none;
    }
    
    /* Better form inputs for mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}