/* NowMedia Contest Marketing WordPress Theme Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Brand Color Variables */
:root {
    --brand-red: #DF1F28;
    --brand-orange: #EE7F22;
    --brand-blue: #046EB1;
    --brand-dark-blue: #023E73;
    --brand-teal: #0CB7B7;
    --brand-green: #4CAF50;
    --brand-dark-grey: #2C3E50;
    --brand-light-grey: #7F8C8D;
    
    /* Seasonal Colors */
    --spring-green: #32CD32;
    --summer-yellow: #FFD700;
    --fall-orange: #FF8C00;
    --winter-blue: #4169E1;
}

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

/* Header */
.site-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

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

.logo h1 a {
    color: var(--brand-dark-blue);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-img {
    max-height: 50px;
    width: auto;
}

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

.main-nav .main-menu li a {
    text-decoration: none;
    color: var(--brand-dark-grey);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav .main-menu li a:hover {
    color: var(--brand-teal);
}

/* Header Phone Button */
.header-phone {
    display: flex;
    align-items: center;
}

.phone-button {
    background: var(--brand-orange);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.phone-button:hover {
    background: #EA580C;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(238, 127, 34, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 3px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--brand-dark-blue);
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-red) 100%);
    color: white;
    text-align: center;
    padding: 120px 0 80px;
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title br {
    display: block;
}

.hero-title span {
    color: #FFD700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: var(--brand-orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    margin: 0 10px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-button.transparent {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.transparent:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

.cta-button.blue {
    background: var(--brand-blue);
}

.cta-button.blue:hover {
    background: var(--brand-dark-blue);
}

.cta-button.green {
    background: var(--brand-green);
}

.cta-button.teal {
    background: var(--brand-teal);
}

/* Sections */
.section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--brand-dark-grey);
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--brand-light-grey);
    max-width: 600px;
    margin: 0 auto;
}

/* Why Contests Work Section */
.why-contests-section {
    background: white;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.benefit-icon.brand-orange {
    background: linear-gradient(135deg, var(--brand-orange), #ff6b35);
}

.benefit-icon.brand-teal {
    background: linear-gradient(135deg, var(--brand-teal), #4db8db);
}

.benefit-icon.brand-green {
    background: linear-gradient(135deg, var(--spring-green), var(--brand-green));
}

.benefit-icon.brand-blue {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-dark-blue));
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon img,
.benefit-icon .icon-placeholder {
    width: 32px;
    height: 32px;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--brand-dark-grey);
}

.benefit-card p {
    color: var(--brand-light-grey);
    line-height: 1.6;
}

/* Grid Gallery Section */
.grid-gallery-section {
    background: #f8f9fa;
    padding: 5rem 0;
    position: relative;
}

.grid-gallery-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--brand-dark-grey);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .gallery-title {
        font-size: 3rem;
    }
}

.gallery-subtitle {
    font-size: 1.25rem;
    color: var(--brand-light-grey);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Gallery */
.grid-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    grid-auto-rows: 150px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .grid-gallery {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 180px;
    }
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.grid-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

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

.grid-item:hover img {
    transform: scale(1.05);
}

/* Size variants */
.grid-item.size-large {
    grid-column: span 2;
    grid-row: span 2;
}

.grid-item.size-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.grid-item.size-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.grid-item.size-small {
    grid-column: span 1;
    grid-row: span 1;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-item:hover .grid-overlay {
    opacity: 1;
}

.view-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    padding: 0.5rem;
    font-size: 1rem;
}

/* Call to Action */
.gallery-cta {
    text-align: center;
    margin-top: 4rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-orange) 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.4);
}

.cta-arrow {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

/* Simple Lightbox */
.simple-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.simple-lightbox-modal.active {
    display: flex !important;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Navigation Arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
}

/* Video Support */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
}

.grid-item:hover .play-button {
    background: white;
    transform: scale(1.1);
}

.lightbox-video {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Center the tab navigation container */
.examples-section .section-header {
    text-align: center;
}

.examples-section {
    text-align: center;
}

/* Load More Button */
.load-more-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
    background: linear-gradient(135deg, #0d9488, #0f766e);
}

.load-more-button:disabled {
    cursor: not-allowed;
    transform: none;
}

/* Loading Spinner */
.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #14b8a6;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hidden-gallery-item {
    transition: all 0.5s ease;
}

/* Free Consultation Callout */
.free-consultation-callout {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.free-consultation-callout h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.free-consultation-callout p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.consultation-btn {
    display: inline-block;
    background: white;
    color: #04546B;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.consultation-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Case Studies Section */
.case-studies-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

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

.case-studies-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.case-studies-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.case-study-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.5s ease;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-study-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
    cursor: pointer;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-card:hover .case-study-overlay {
    opacity: 1;
}

.gradient-green-teal {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.8), rgba(20, 184, 166, 0.8));
}

.gradient-orange-red {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.8), rgba(239, 68, 68, 0.8));
}

.gradient-blue-teal {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(20, 184, 166, 0.8));
}

.view-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.case-study-content {
    padding: 2rem;
}

.case-study-meta h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.case-study-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.color-green { color: #22c55e; }
.color-orange { color: #f97316; }
.color-blue { color: #3b82f6; }

.case-study-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-study-highlights h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.highlight-bullet {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    margin-top: 0.5rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.color-bg-green { background-color: #22c55e; }
.color-bg-orange { background-color: #f97316; }
.color-bg-blue { background-color: #3b82f6; }

.highlight-item span {
    font-size: 0.875rem;
    color: #6b7280;
}

.case-studies-cta {
    text-align: center;
}

.cta-container {
    background: linear-gradient(135deg, #1e40af, #14b8a6);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    color: white;
}

.cta-container h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-button.primary {
    background: white;
    color: #1e40af;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Benefits section styles */
.benefits-section {
    background: #f8fafc;
    padding: 4rem 0;
}

/* Lightbox modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
    color: white;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.season-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.season-card:hover .season-hero img {
    transform: scale(1.1);
}

.season-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.season-overlay.season-spring-green {
    background: linear-gradient(to top, rgba(34, 197, 94, 0.8) 0%, transparent 100%);
}

.season-overlay.season-summer-yellow {
    background: linear-gradient(to top, rgba(251, 191, 36, 0.8) 0%, transparent 100%);
}

.season-overlay.season-autumn-red {
    background: linear-gradient(to top, rgba(239, 68, 68, 0.8) 0%, transparent 100%);
}

.season-overlay.season-winter-blue {
    background: linear-gradient(to top, rgba(59, 130, 246, 0.8) 0%, transparent 100%);
}

.season-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.season-badge.season-spring-green {
    background: var(--brand-green);
}

.season-badge.season-summer-yellow {
    background: #FbbF24;
}

.season-badge.season-autumn-red {
    background: #EF4444;
}

.season-badge.season-winter-blue {
    background: #3B82F6;
}

.season-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.season-content {
    padding: 2rem;
}

.season-content h3 {
    color: var(--brand-dark-grey);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.season-content p {
    color: var(--brand-light-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.season-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.season-gallery img {
    width: 100%;
    height: 5rem;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

/* Contest Packages */
.packages-section {
    background: white;
    padding: 5rem 0;
}

.packages-section .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-dark-grey);
    margin-bottom: 1.5rem;
}

.packages-section .section-header p {
    color: var(--brand-light-grey);
    font-size: 1.25rem;
    max-width: 48rem;
    margin: 0 auto;
}

.packages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 1024px) {
    .packages-grid {
        flex-wrap: nowrap;
    }
}

.package-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    max-width: 400px;
    overflow: hidden;
}

.package-card:hover {
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
}

.package-card.order-1 {
    order: 1;
}

.package-card.order-2 {
    order: 2;
}

.package-card.order-3 {
    order: 3;
}

.package-card.featured-scale {
    transform: scale(1.05);
    z-index: 10;
    border: 4px solid #7C3AED;
}

.package-badge-top {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-red);
    color: white;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid white;
    z-index: 20;
}

.package-content {
    padding: 2rem;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-header h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--brand-dark-grey);
    margin-bottom: 1rem;
}

.package-pricing {
    margin-bottom: 0.5rem;
}

.original-price {
    font-size: 1.5rem;
    color: #9CA3AF;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-price.price-teal {
    color: var(--brand-teal);
}

.package-price.price-orange {
    color: var(--brand-orange);
}

.package-price.price-featured {
    color: #7C3AED;
}

.package-prize {
    color: var(--brand-light-grey);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.package-value {
    color: var(--brand-light-grey);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.package-value.special-offer {
    color: var(--brand-green);
    font-weight: 600;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checkmark {
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    font-weight: bold;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.checkmark.check-teal {
    color: var(--brand-teal);
}

.checkmark.check-orange {
    color: var(--brand-orange);
}

.checkmark.check-featured {
    color: #7C3AED;
}

.feature-text {
    color: var(--brand-light-grey);
    line-height: 1.5;
}

.package-button {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.package-button.btn-teal {
    background: var(--brand-teal);
}

.package-button.btn-teal:hover {
    background: #0891B2;
}

.package-button.btn-orange {
    background: var(--brand-orange);
}

.package-button.btn-orange:hover {
    background: #EA580C;
}

.package-button.btn-featured {
    background: #7C3AED;
}

.package-button.btn-featured:hover {
    background: #6D28D9;
}

.packages-cta {
    text-align: center;
    margin-top: 3rem;
}

.packages-cta p {
    font-size: 1.125rem;
    color: var(--brand-light-grey);
    margin-bottom: 1.5rem;
}

.packages-cta .btn-primary {
    background: var(--brand-dark-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.packages-cta .btn-primary:hover {
    background: #035A94;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .packages-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .package-card {
        max-width: 100%;
        width: 100%;
    }
    
    .package-card.featured-scale {
        transform: none;
    }
    
    .packages-section .section-header h2 {
        font-size: 2rem;
    }
}

/* Contest Examples */
.examples-section {
    background: linear-gradient(135deg, rgba(4, 110, 177, 0.05) 0%, rgba(12, 183, 183, 0.03) 50%, rgba(238, 127, 34, 0.03) 100%);
}

.tab-navigation {
    display: inline-flex;
    background: white;
    border-radius: 0.75rem;
    padding: 0.5rem;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    margin: 0 auto 3rem auto;
    justify-content: center;
}

.tab-button {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--brand-teal);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.tab-button:hover {
    background: #f9fafb;
}

.tab-button.active {
    background: var(--brand-teal);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

.example-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.example-card.hidden {
    display: none;
}

.example-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.example-status {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

.status-live {
    background: rgba(76, 175, 80, 0.9);
}

.status-past {
    background: rgba(108, 117, 125, 0.9);
}

.example-content {
    padding: 1.5rem;
}

.example-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--brand-dark-grey);
}

.example-description {
    color: var(--brand-light-grey);
    line-height: 1.5;
}

.examples-cta {
    text-align: center;
    margin-top: 3rem;
}

.examples-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--brand-dark-grey);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, rgba(14, 116, 187, 0.05), rgba(6, 182, 212, 0.05));
}

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

.contact-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-dark-grey);
    margin-bottom: 1.5rem;
}

.contact-header p {
    font-size: 1.25rem;
    color: var(--brand-light-grey);
    max-width: 48rem;
    margin: 0 auto;
}

.contact-main-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 3rem;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--brand-dark-grey);
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--brand-light-grey);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

.form-group label {
    color: var(--brand-dark-grey);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

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

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

.form-submit-btn {
    background: var(--brand-teal);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: #0891B2;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Info Section */
.contact-info-section {
    background: linear-gradient(135deg, var(--brand-dark-blue), var(--brand-teal));
    padding: 3rem;
    display: flex;
    align-items: center;
}

.contact-info-card {
    color: white;
}

.contact-info-card h4 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info-card > p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.contact-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.contact-details h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p {
    opacity: 0.9;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-btn.btn-orange {
    background: var(--brand-orange);
    color: white;
}

.contact-btn.btn-orange:hover {
    background: #EA580C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-btn.btn-blue {
    background: white;
    color: var(--brand-dark-blue);
}

.contact-btn.btn-blue:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#form-response {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

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

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

/* Footer */
.site-footer {
    background: var(--brand-dark-grey);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.footer-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-content > p {
    color: #D1D5DB;
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #6B7280;
    padding-top: 1.5rem;
}

.footer-bottom p {
    margin: 0;
    color: #9CA3AF;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-contact {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Gallery Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 150px);
    }
    
    .gallery-item.size-large,
    .gallery-item.size-medium,
    .gallery-item.size-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-tabs {
        gap: 0.25rem;
    }
    
    .gallery-tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .gallery-info {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .gallery-info h3 {
        font-size: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .header-content {
        flex-direction: row;
        gap: 1rem;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .header-phone {
        display: none;
    }
    
    .main-nav.mobile-open {
        display: block;
    }
    
    .main-nav .main-menu {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }
    
    .main-nav .main-menu li {
        border-bottom: 1px solid #eee;
        padding: 1rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .tab-button {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
    
    .benefits-grid,
    .seasons-grid,
    .packages-grid,
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .package-featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .package-card,
    .benefit-card,
    .season-card {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* WordPress specific classes */
.wp-block-group {
    margin: 0;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
}

/* Case Study Modal Styles */
.case-study-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.case-study-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.case-study-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: white;
    transform: scale(1.1);
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.modal-body img {
    max-width: 100%;
    max-height: 70vh;
    height: auto;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.modal-body h3 {
    margin-top: 20px;
    color: var(--brand-dark-blue);
    font-size: 1.5rem;
    text-align: center;
    font-weight: 600;
}

body.modal-open {
    overflow: hidden;
}

/* Case Study Card Image Fixes */
.case-study-image {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    cursor: pointer;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.case-study-image:hover img {
    transform: scale(1.05);
}

.case-study-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-image:hover .case-study-overlay {
    opacity: 1;
}

.view-icon {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.case-study-image:hover .view-icon {
    transform: scale(1);
}

/* Case Study Grid Styles */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.case-study-content {
    padding: 1.5rem;
}

.case-study-meta h3 {
    color: var(--brand-dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.case-study-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-description {
    color: var(--brand-light-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-study-highlights h4 {
    color: var(--brand-dark-blue);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.highlight-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.highlight-item span:last-child {
    color: var(--brand-dark-grey);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Color Classes */
.color-blue { color: var(--brand-blue); }
.color-green { color: var(--brand-green); }
.color-orange { color: var(--brand-orange); }
.color-red { color: var(--brand-red); }
.color-teal { color: var(--brand-teal); }
.color-purple { color: #8B5CF6; }

.color-bg-blue { background-color: var(--brand-blue); }
.color-bg-green { background-color: var(--brand-green); }
.color-bg-orange { background-color: var(--brand-orange); }
.color-bg-red { background-color: var(--brand-red); }
.color-bg-teal { background-color: var(--brand-teal); }
.color-bg-purple { background-color: #8B5CF6; }

/* Gradient Classes */
.gradient-blue-teal { background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal)); }
.gradient-green-teal { background: linear-gradient(135deg, var(--brand-green), var(--brand-teal)); }
.gradient-orange-red { background: linear-gradient(135deg, var(--brand-orange), var(--brand-red)); }
.gradient-purple-blue { background: linear-gradient(135deg, #8B5CF6, var(--brand-blue)); }
.gradient-red-orange { background: linear-gradient(135deg, var(--brand-red), var(--brand-orange)); }
.gradient-teal-blue { background: linear-gradient(135deg, var(--brand-teal), var(--brand-blue)); }

/* Case Studies Section */
.case-studies-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.case-studies-header {
    text-align: center;
    margin-bottom: 3rem;
}

.case-studies-header h2 {
    color: var(--brand-dark-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.case-studies-header p {
    color: var(--brand-light-grey);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.case-studies-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

.case-studies-cta .cta-container {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-teal) 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.case-studies-cta h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.case-studies-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.case-studies-cta .cta-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.case-studies-cta .cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Case Studies Responsive Design */
@media (max-width: 768px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .case-studies-header h2 {
        font-size: 2rem;
    }
    
    .case-studies-cta h3 {
        font-size: 1.5rem;
    }
    
    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-body img {
        max-height: 60vh;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}