/* Events Page Specific Styles */

/* CSS Variables */
:root {
    --primary-color: #1e3c72;
    --primary-dark: #0f2027;
    --secondary-color: #2a5298;
    --accent-color: #4CAF50;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --citation-color: #888;
}

/* Import base styles */
@import url('styles.css');

/* Citation styles */
.citation {
    font-size: 0.65rem;
    color: var(--citation-color);
    font-style: italic;
    margin-top: 0.5rem;
    line-height: 1.2;
    opacity: 0.6;
    font-weight: 300;
}

.citation::before {
    content: "Source: ";
    font-weight: 400;
}

/* Essential base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Navigation styles */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo-img {
    height: 40px;
    max-width: 200px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}



.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Footer styles */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

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

/* Mobile responsive */
@media (max-width: 768px) {
    /* Navigation improvements */
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        z-index: 1000;
    }
    
    /* Reduce container padding for tighter mobile layout */
    .container {
        padding: 0 15px;
    }
    
    /* Tighter section padding */
    .articles-section,
    .templates-section,
    .newsletter-section,
    .contact-cta,
    .guidelines-section {
        padding: 40px 0;
    }
    
    /* Reduce hero padding */
    .events-hero {
        padding: 80px 0 50px;
        min-height: 50vh;
    }
    
    /* Tighter planning tools section */
    .planning-tools-section {
        padding: 60px 0;
    }
    
    /* Tighter quote section */
    .event-quote-section {
        padding: 60px 0;
    }
}

/* Events Page Hero */
.events-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.8) 0%, rgba(42, 82, 152, 0.7) 50%, rgba(15, 32, 39, 0.8) 100%), url('photos/optimized/stage_backdrop_digital_print.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.events-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.events-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Articles Section */
.articles-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

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

.article-image {
    height: 200px;
    overflow: hidden;
}

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

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

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.article-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #888;
}

.article-meta i {
    margin-right: 0.3rem;
}

.read-more-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: var(--primary-dark);
}

/* Templates Section */
.templates-section {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.template-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.template-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.template-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.template-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.template-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background: var(--primary-dark);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: #f8f9fa;
    color: var(--primary-color);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.newsletter-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #666;
}

.newsletter-benefits {
    list-style: none;
    padding: 0;
}

.newsletter-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #666;
}

.newsletter-benefits i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.newsletter-signup {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
}

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

.newsletter-signup input,
.newsletter-signup select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background: white;
}

.newsletter-signup input::placeholder {
    color: #666;
}

.newsletter-btn {
    width: 100%;
    padding: 1rem;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.newsletter-btn:hover {
    background: #45a049;
}

.privacy-note {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.8;
    color: #666;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-button.primary {
    background: var(--primary-color);
    color: black;
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Hero CTA button - match home page style */
.cta-button.hero-cta {
    display: inline-block !important;
    background: #d63031 !important;
    color: white !important;
    padding: 15px 30px !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(214, 48, 49, 0.3) !important;
    border: none !important;
    width: auto !important;
    max-width: none !important;
}

.cta-button.hero-cta:hover {
    background: #b71540 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(214, 48, 49, 0.4) !important;
}

/* Medium screens - tablets and smaller desktops */
@media (max-width: 1024px) {
    .quote-content {
        grid-template-columns: 1fr;
        max-width: 900px;
        gap: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Responsive Design for Events Page */
@media (max-width: 768px) {
    .events-hero h1 {
        font-size: 2.5rem;
    }
    
    .events-hero p {
        font-size: 1.1rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .templates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-text h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .planning-tools-section h2 {
        font-size: 2rem;
    }
    
    .quote-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 800px;
    }
    
    .quote-text h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .form-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .form-section h4 i {
        font-size: 1rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    /* Hide benefit cards on mobile to save space for tools */
    .quote-benefits {
        display: none;
    }
    
    .quote-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Improve calculator responsiveness on mobile */
    .quote-form-container {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
        border-radius: 15px;
    }
    
    .form-section {
        margin-bottom: 1.5rem;
    }
    
    .form-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .checkbox-item {
        padding: 0.6rem;
        border-radius: 8px;
        min-height: 44px; /* Better touch target */
    }
    
    .checkbox-text {
        font-size: 0.9rem;
    }
    
    .quote-submit-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        min-height: 48px; /* Better touch target */
    }
    
    .guidelines-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guidelines-section h2 {
        font-size: 2rem;
    }
    
    .guidelines-cta {
        padding: 1.5rem;
    }
    
    .guidelines-cta h3 {
        font-size: 1.5rem;
    }
    
    .upload-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .upload-features {
        grid-template-columns: 1fr;
    }
    
    .upload-portal-section {
        padding: 1.5rem;
    }
    
    .upload-text h3 {
        font-size: 1.5rem;
    }
    
    /* Tablet-optimized upload button */
    .upload-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        max-width: 320px;
    }
    
    .upload-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* Tighter card spacing */
    .article-card,
    .template-card,
    .tool-card,
    .guideline-card {
        margin-bottom: 1rem;
    }
    
    /* Reduce article content padding */
    .article-content {
        padding: 1rem;
    }
    
    /* Tighter newsletter signup */
    .newsletter-signup {
        padding: 1.5rem;
    }
    
    /* Improve tool card spacing */
    .tool-card {
        padding: 1.5rem;
    }
    
    .tool-form .form-group {
        margin-bottom: 1rem;
    }
    
    .tool-input,
    .tool-select {
        padding: 0.75rem;
        font-size: 16px;
    }
    
    .tool-btn {
        padding: 1rem;
        min-height: 44px;
        width: 100%;
    }
}

/* Planning Tools Section */
.planning-tools-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0c6d 0%, #224abe 50%, #4a90e2 100%);
    background-size: 400% 400%;
    animation: lawrenciumFlow 15s ease-in-out infinite;
    color: white;
}

@keyframes lawrenciumFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.planning-tools-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.planning-tools-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.tool-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2ecc71, #27ae60, #3498db);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.tool-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
}

.tool-card:hover .tool-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.4);
}

.tool-icon i {
    font-size: 2.5rem;
    color: white;
}

.tool-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.tool-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.tool-form {
    text-align: left;
}

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

.tool-form label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.tool-input,
.tool-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.tool-input:focus,
.tool-select:focus {
    outline: none;
    border-color: #2ecc71;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.tool-btn {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 1rem;
}

.tool-btn:hover {
    background: linear-gradient(135deg, #27ae60, #229954);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

.tool-result {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2ecc71;
    font-size: 0.9rem;
    color: #2c3e50;
    display: none;
}

.tool-result.show {
    display: block;
    animation: fadeInUp 0.3s ease;
}

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

/* Event Quote Section */
.event-quote-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #1a252f 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.event-quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.quote-header {
    text-align: center;
    margin-bottom: 4rem;
}

.quote-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-header p {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.benefit-text p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
}

.quote-form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #2c3e50;
}

.quote-form-container,
.quote-form-container * {
    color: #2c3e50 !important;
}

.quote-form-container .form-header h3,
.quote-form-container .form-header p,
.quote-form-container .form-section h4,
.quote-form-container .form-group label,
.quote-form-container .checkbox-text {
    color: #2c3e50 !important;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

.event-quote-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 2rem;
}

.form-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.form-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-section h4 i {
    color: #3498db;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.form-section h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 2px;
}

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

@media (max-width: 1024px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #2c3e50;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select option {
    background: white;
    color: #2c3e50;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    background: white;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
}

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

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.checkbox-item:hover {
    background: #f8f9fa;
    border-color: #e9ecef;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #2ecc71;
    cursor: pointer;
}

.checkbox-text {
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 500;
}

.quote-submit-btn {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

.quote-submit-btn:hover {
    background: linear-gradient(135deg, #27ae60, #229954);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.4);
}

.quote-submit-btn:active {
    transform: translateY(-1px);
}

/* File Guidelines Section */
.guidelines-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.guidelines-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.guidelines-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.guideline-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.guideline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.guideline-icon i {
    font-size: 1.5rem;
    color: white;
}

.guideline-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.guideline-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.guideline-content h4:first-child {
    margin-top: 0;
}

.guideline-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.guideline-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
    font-size: 0.9rem;
    color: #555;
}

.guideline-content li:last-child {
    border-bottom: none;
}

.guideline-note {
    background: #e8f4fd;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    font-size: 0.85rem;
    color: #2c3e50;
    margin-top: 1rem;
    line-height: 1.5;
}

.guidelines-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.guidelines-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.guidelines-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.guideline-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guideline-cta-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

/* Upload Portal Section */
.upload-portal-section {
    background: linear-gradient(135deg, #000428 0%, #004e92 100%);
    background-size: 400% 400%;
    animation: frostFlow 25s ease-in-out infinite;
    padding: 3rem;
    border-radius: 15px;
    margin-top: 2rem;
    color: white;
}

@keyframes frostFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.upload-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.upload-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.upload-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.upload-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.upload-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.upload-features i {
    color: #f39c12;
    font-size: 1.1rem;
    width: 20px;
}

.upload-action {
    text-align: center;
}

.upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.upload-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
    /* Even tighter container padding for phones */
    .container {
        padding: 0 10px;
    }
    
    .events-hero {
        padding: 80px 0 40px;
        min-height: 40vh;
    }
    
    .events-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .events-hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Ultra-tight section padding for phones */
    .articles-section,
    .templates-section,
    .newsletter-section,
    .contact-cta,
    .guidelines-section {
        padding: 30px 0;
    }
    
    .planning-tools-section,
    .event-quote-section {
        padding: 40px 0;
    }
    
    .article-content {
        padding: 0.75rem;
    }
    
    .template-card {
        padding: 1rem;
    }
    
    .newsletter-signup {
        padding: 1rem;
    }
    
    /* Ensure mobile menu works on events page */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        z-index: 1000;
    }
    
    /* Extra mobile optimizations for phones */
    .quote-benefits {
        display: none !important; /* Ensure benefit cards are hidden on smallest screens */
    }
    
    .quote-form-container {
        padding: 1rem 0.75rem;
        margin: 0 0.25rem;
        border-radius: 12px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .checkbox-grid {
        gap: 0.4rem;
    }
    
    .checkbox-item {
        padding: 0.5rem;
        min-height: 40px; /* Better touch target */
    }
    
    .quote-submit-btn {
        padding: 1rem;
        min-height: 44px; /* Better touch target */
    }
    
    /* Improve tool cards on phones */
    .tool-card {
        padding: 1rem;
        margin: 0 0.25rem;
    }
    
    .tool-form .form-group {
        margin-bottom: 0.75rem;
    }
    
    .tool-input,
    .tool-select {
        padding: 0.75rem;
        font-size: 16px;
    }
    
    .tool-btn {
        padding: 0.9rem;
        min-height: 40px;
        width: 100%;
    }
    
    /* Tighter grid gaps for phones */
    .articles-grid,
    .templates-grid,
    .tools-grid,
    .guidelines-grid {
        gap: 1rem;
    }
    
    .quote-content {
        gap: 1rem;
    }
    
    /* Reduce heading sizes for phones */
    .planning-tools-section h2,
    .quote-header h2,
    .guidelines-section h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-text h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    /* Tighter form spacing */
    .form-section {
        margin-bottom: 1rem;
    }
    
    .form-section h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    /* Reduce upload portal padding */
    .upload-portal-section {
        padding: 1rem;
    }
    
    .upload-text h3 {
        font-size: 1.3rem;
    }
    
    /* Tighter guidelines CTA */
    .guidelines-cta {
        padding: 1rem;
    }
    
    .guidelines-cta h3 {
        font-size: 1.3rem;
    }
    
    /* Mobile-optimized upload button for narrow screens */
    .upload-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 20px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .upload-content {
        gap: 1rem;
    }
    
    .upload-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .upload-features li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }
    
    /* Mobile-optimized quote form for narrow screens */
    .quote-form-container {
        padding: 1rem 0.5rem;
        margin: 0 0.25rem;
        border-radius: 10px;
    }
    
    .form-header h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .form-section {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    
    .form-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .form-section h4 i {
        font-size: 0.9rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
    
    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 16px;
        border-radius: 6px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
    
    .checkbox-item {
        padding: 0.5rem;
        min-height: 40px;
        border-radius: 6px;
    }
    
    .checkbox-text {
        font-size: 0.8rem;
    }
    
    .quote-submit-btn {
        padding: 0.8rem;
        font-size: 1rem;
        min-height: 44px;
        border-radius: 8px;
    }
} 