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

/* Typography Hierarchy */
:root {
    --font-primary: 'Montserrat', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Navigation Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 250px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: var(--font-weight-medium);
    font-size: 0.8rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: #3498db;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Enhanced Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    z-index: 1001;
}

.hamburger:hover {
    background-color: rgba(52, 152, 219, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Overlay */
.nav-menu {
    transition: all 0.3s ease;
}

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

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 40px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    text-align: left;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: var(--font-weight-light);
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}



.cta-button {
    display: inline-block;
    background: #d63031;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 48, 49, 0.3);
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* Image Placeholders */
.image-placeholder {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #6c757d;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    border-color: #3498db;
    background: #e3f2fd;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #adb5bd;
}

.hero .image-placeholder {
    width: 400px;
    height: 300px;
}

/* Services Overview */
.services-overview {
    padding: 60px 0;
    background: #f8f9fa;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 3rem;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Better grid layout for 4 service cards */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
    }
}

@media (min-width: 1600px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
        gap: 2.5rem;
    }
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: #2c3e50;
    letter-spacing: -0.3px;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
    font-weight: var(--font-weight-regular);
}

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

.service-section:nth-child(even) {
    background: #f8f9fa;
}

.service-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 3rem;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-text p {
    font-size: 1.1rem;
    font-weight: var(--font-weight-regular);
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
}

.service-text ul {
    list-style: none;
}

.service-text li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.service-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Event CTA Section */
.event-cta {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 4px solid #3498db;
}

.event-cta h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.event-cta p {
    font-size: 1rem;
    font-weight: var(--font-weight-regular);
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-cta-btn {
    background: #2c3e50 !important;
    font-size: 0.9rem !important;
    padding: 12px 25px !important;
}

.event-cta-btn:hover {
    background: #1a252f !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4) !important;
}

/* Consulting CTA Section */
.consulting-cta {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 4px solid #27ae60;
}

.consulting-cta h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.consulting-cta p {
    font-size: 1rem;
    font-weight: var(--font-weight-regular);
    color: #555;
    margin-bottom: 0;
    line-height: 1.6;
}

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

.gallery-item .image-placeholder {
    width: 100%;
    height: 150px;
    font-size: 0.9rem;
}

.gallery-item .image-placeholder i {
    font-size: 2rem;
}

.gallery-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Portfolio */
.portfolio {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
}

.portfolio h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

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

.portfolio-item .image-placeholder {
    width: 100%;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
}

.portfolio-item .image-placeholder:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #3498db;
}

.portfolio-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    padding: 80px 0;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 2rem;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.about-text p {
    font-size: 1.1rem;
    font-weight: var(--font-weight-regular);
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.about-image .image-placeholder {
    width: 100%;
    height: 400px;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 3rem;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: #2c3e50;
    letter-spacing: -0.3px;
}

.contact-info p {
    font-size: 1.1rem;
    font-weight: var(--font-weight-regular);
    margin-bottom: 2rem;
    color: #555;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
}

.contact-item i {
    width: 20px;
    color: #3498db;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    width: 100%;
    background: #3498db;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #2980b9;
}

.submit-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit-btn:disabled:hover {
    background: #95a5a6;
    transform: none;
    box-shadow: none;
}

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

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 35px;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.modal-close:hover,
.modal-close:focus {
    color: #bbb;
    text-decoration: none;
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
}

/* Add cursor pointer to clickable images */
.gallery-img,
.portfolio-img,
.about-img,
.hero-img {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover,
.portfolio-img:hover,
.about-img:hover,
.hero-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Events Page Styles */
.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: none;
    border-radius: 6px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.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;
}

/* 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);
}

/* Article Page Styles */
.article-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed navbar */
    min-height: 200px; /* Reduced minimum height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.95) 0%, rgba(41, 128, 185, 0.95) 100%);
    z-index: 1;
}

.article-header .container {
    position: relative;
    z-index: 2;
}



.article-meta {
    margin-bottom: 2rem;
}

.back-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.article-category {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 1rem;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: white;
}

.article-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    font-weight: var(--font-weight-regular);
}

.article-content {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.main-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    line-height: 1.8;
}

.main-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.main-content h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    margin: 2rem 0 1rem;
}

.main-content h4 {
    color: #34495e;
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    margin: 1.5rem 0 1rem;
}

.main-content p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.main-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.main-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

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

.category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.category h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 0;
}

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

.tech-trend {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.tech-trend h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 0;
}

.sidebar {
    position: sticky;
    top: 2rem;
}

.planning-tool,
.compliance-tool,
.trend-analyzer {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.planning-tool h3,
.compliance-tool h3,
.trend-analyzer h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.tool-form,
.checklist-form,
.analyzer-form {
    margin-top: 1.5rem;
}

.checklist-section {
    margin-bottom: 2rem;
}

.checklist-section h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.checklist-item input[type="checkbox"] {
    margin-right: 0.8rem;
    transform: scale(1.2);
}

.checklist-item label {
    cursor: pointer;
    color: #555;
    transition: color 0.3s ease;
}

.tool-results {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.tool-results h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 0;
}

.result-item,
.compliance-summary,
.trend-summary {
    margin-bottom: 1.5rem;
}

.result-item h5,
.compliance-summary h5,
.trend-summary h5 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.status-indicator {
    background: #28a745;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1rem;
}

.status-indicator h5 {
    margin: 0 0 0.5rem 0;
    color: white;
}

.percentage {
    font-size: 1.5rem;
    font-weight: bold;
}

.missing-items,
.recommendations {
    margin-bottom: 1.5rem;
}

.missing-items h5,
.recommendations h5 {
    color: #dc3545;
    margin-bottom: 0.8rem;
}

.missing-items ul,
.recommendations ul {
    margin: 0;
    padding-left: 1.5rem;
}

.missing-items li,
.recommendations li {
    margin-bottom: 0.3rem;
    color: #555;
}

.urgent-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.urgent-notice h5 {
    color: #856404;
    margin-bottom: 0.5rem;
}

.urgent-notice p {
    color: #856404;
    margin: 0;
}

.score-indicator {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.score {
    font-size: 2rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.profile-info p {
    margin-bottom: 0.5rem;
    color: #555;
}

.top-trends {
    margin-bottom: 2rem;
}

.trend-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-bottom: 1rem;
}

.trend-item h6 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.trend-recommendations {
    margin-top: 1rem;
}

.trend-recommendations ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
}

.trend-priorities {
    margin-top: 1rem;
}

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

.trend-name {
    min-width: 150px;
    font-weight: 500;
    color: #2c3e50;
}

.priority-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.priority-fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.priority-score {
    min-width: 40px;
    text-align: right;
    font-weight: 500;
    color: #2c3e50;
}

/* Hero CTA button for events page - match home page style */
.cta-button.hero-cta {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    border: none;
}

.cta-button.hero-cta:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Article Page Enhancements */

/* Article Stats */
.article-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.article-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    background: rgba(52, 152, 219, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.article-stats .stat i {
    color: #3498db;
}

/* Table of Contents */
.toc-section {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.toc-wrapper {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.toc-wrapper h3 {
    margin-bottom: 0.75rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.25rem;
}

.toc-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    font-weight: 500;
    font-size: 0.9rem;
}

.toc-list a:hover {
    background: rgba(52, 152, 219, 0.1);
    border-left-color: #3498db;
    color: #3498db;
    transform: translateX(3px);
}

/* Content Sections */
.content-section {
    margin-bottom: 4rem;
    scroll-margin-top: 100px; /* Account for fixed navbar */
}

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

.section-header h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header h2 i {
    color: #3498db;
    font-size: 1.2em;
}

.section-divider {
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    border-radius: 2px;
    width: 60px;
}

/* Callout Boxes */
.callout-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid;
}

.callout-box.info {
    background: rgba(52, 152, 219, 0.1);
    border-left-color: #3498db;
}

.callout-box.warning {
    background: rgba(243, 156, 18, 0.1);
    border-left-color: #f39c12;
}

.callout-box.success {
    background: rgba(39, 174, 96, 0.1);
    border-left-color: #27ae60;
}

.callout-box.tip {
    background: rgba(155, 89, 182, 0.1);
    border-left-color: #9b59b6;
}

.callout-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.callout-box.info .callout-icon {
    background: #3498db;
    color: white;
}

.callout-box.warning .callout-icon {
    background: #f39c12;
    color: white;
}

.callout-box.success .callout-icon {
    background: #27ae60;
    color: white;
}

.callout-box.tip .callout-icon {
    background: #9b59b6;
    color: white;
}

.callout-content h4 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
}

.callout-content p {
    margin: 0;
    color: #555;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.feature-item h4 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
}

.feature-item p {
    color: #666;
    margin: 0;
}

/* Timeline */
.timeline-container {
    position: relative;
    margin: 3rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #3498db;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.timeline-content h4 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
}

.timeline-content ul {
    margin: 0;
    padding-left: 1.5rem;
}

.timeline-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Compliance Grid */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.compliance-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.compliance-card:hover {
    transform: translateY(-3px);
}

.compliance-icon {
    width: 50px;
    height: 50px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.2rem;
}

.compliance-card h4 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
}

.compliance-card p {
    color: #666;
    margin: 0;
}

/* Budget Breakdown */
.budget-breakdown {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.budget-breakdown h4 {
    margin: 0 0 1.5rem 0;
    color: #2c3e50;
}

.budget-chart {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.budget-item {
    display: grid;
    grid-template-columns: 200px 1fr 300px;
    gap: 1rem;
    align-items: center;
}

.budget-label {
    font-weight: 600;
    color: #2c3e50;
}

.budget-bar {
    height: 20px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.budget-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.budget-desc {
    font-size: 0.9rem;
    color: #666;
}

/* Cost Tips */
.cost-tips {
    margin: 2rem 0;
}

.cost-tips h4 {
    margin: 0 0 1.5rem 0;
    color: #2c3e50;
}

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

.tip-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tip-item i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.tip-item h5 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
}

.tip-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Materials Comparison */
.materials-comparison {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.materials-comparison h4 {
    margin: 0 0 1.5rem 0;
    color: #2c3e50;
}

.comparison-table {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.header-cell {
    padding: 1rem;
    border-right: 1px solid #e9ecef;
}

.header-cell:last-child {
    border-right: none;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-top: 1px solid #e9ecef;
}

.table-row:nth-child(even) {
    background: #f8f9fa;
}

.cell {
    padding: 1rem;
    border-right: 1px solid #e9ecef;
    color: #555;
}

.cell:last-child {
    border-right: none;
}

/* Installation Checklist */
.installation-checklist {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.installation-checklist h4 {
    margin: 0 0 1.5rem 0;
    color: #2c3e50;
}

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

.checklist-column h5 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.checklist-column ul {
    list-style: none;
    padding: 0;
}

.checklist-column li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #555;
}

.checklist-column li i {
    color: #27ae60;
    font-size: 0.9rem;
}

/* Quick Links */
.quick-links {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.quick-links h4 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 0.75rem;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.quick-links a:hover {
    background: rgba(52, 152, 219, 0.1);
}

/* Responsive Design - Large Screens */
@media (min-width: 1400px) {
    .container,
    .hero .container,
    .nav-container {
        padding: 0 60px;
    }
    
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
}

@media (min-width: 1600px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.45rem 0;
    }
    
    .nav-container {
        gap: 1.5rem;
    }
}

/* Responsive Design - Medium Screens */
@media (max-width: 1200px) {
    .container,
    .hero .container,
    .nav-container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
        padding: 0.3rem 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        max-width: 1000px;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 0.6rem;
    }
    
    .nav-link {
        font-size: 0.7rem;
        padding: 0.25rem 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        max-width: 900px;
    }
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .container,
    .hero .container,
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-container {
        gap: 0.8rem;
    }
    
    .logo-img {
        height: 40px;
        max-width: 160px;
    }
    
    /* Show hamburger, hide regular menu */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        gap: 1.5rem;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        font-weight: var(--font-weight-semibold);
        padding: 1rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background-color: rgba(52, 152, 219, 0.1);
        color: #3498db;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 0 40px;
        min-height: 70vh;
    }
    
    .hero .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        font-weight: var(--font-weight-bold);
        letter-spacing: -0.5px;
    }
    
    .hero-content p {
        text-align: left;
    }
    
    .hero-content .cta-button {
        align-self: flex-start;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        max-width: 700px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .nav-container {
        gap: 0.6rem;
        padding: 0 10px;
    }
    
    .logo-img {
        height: 35px;
        max-width: 140px;
    }
    
    .nav-menu {
        padding-top: 80px;
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
    
    .hamburger {
        padding: 6px;
    }
    
    .bar {
        width: 22px;
        height: 2px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .service-section h2,
    .services-overview h2,
    .portfolio h2,
    .about h2,
    .contact h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Tighter section spacing for phones */
    .service-section,
    .about,
    .contact,
    .portfolio {
        padding: 40px 0;
    }
    
    .hero {
        padding: 60px 0 30px;
        min-height: 60vh;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .logo-img {
        height: 30px;
        max-width: 120px;
    }
    
    .nav-menu {
        padding-top: 70px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.7rem 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
}

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

.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;
    color: #3498db;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.3px;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-weight: var(--font-weight-regular);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
    font-weight: var(--font-weight-light);
}

/* Additional responsive adjustments for other elements */
@media (max-width: 768px) {
    .service-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-content.reverse {
        direction: ltr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .gallery-img {
        height: 120px;
    }
    
    .portfolio-img {
        height: 200px;
    }
    
    .about-img {
        height: 300px;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 80%;
    }
    
    .modal-close {
        font-size: 30px;
        top: 10px;
        right: 20px;
    }
    
    .modal-caption {
        width: 90%;
        height: auto;
        font-size: 1rem;
        padding: 5px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .event-cta {
        margin-top: 1.5rem;
        padding: 1.5rem;
    }
    
    .event-cta h3 {
        font-size: 1.3rem;
    }
    
    .consulting-cta {
        margin-top: 1.5rem;
        padding: 1.5rem;
    }
    
    .consulting-cta h3 {
        font-size: 1.3rem;
    }
}

/* Smooth Scrolling */
/* Smooth scrolling for table of contents */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.portfolio-item,
.gallery-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Article Page Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar {
        position: static;
    }
    
    .restriction-categories,
    .trend-categories {
        grid-template-columns: 1fr;
    }
    
    .tech-trends {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .article-header {
        padding: 100px 0 60px;
        margin-top: 70px; /* Slightly less margin on mobile */
    }
    
    .article-header h1 {
        font-size: 2.5rem;
    }
    
    .article-subtitle {
        font-size: 1.2rem;
    }
    
    .main-content {
        padding: 2rem;
    }
    
    .main-content h2 {
        font-size: 1.7rem;
    }
    
    .main-content h3 {
        font-size: 1.3rem;
    }
    
    .planning-tool,
    .compliance-tool,
    .trend-analyzer {
        padding: 1.5rem;
    }
    
    .checklist-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .priority-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .trend-name {
        min-width: auto;
    }
    
    .priority-bar {
        width: 100%;
    }
}

/* Resources Section */
.resources {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.resources h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.resource-link:hover {
    background: rgba(52, 152, 219, 0.05);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.resource-link i {
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.resource-link:hover i {
    transform: scale(1.1);
}

.resource-link span {
    font-weight: 600;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 0 1rem;
    }
    
    .resource-link {
        padding: 1.25rem;
    }
    
    .resources h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 80px 0 40px;
        margin-top: 60px; /* Even less margin on small mobile */
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .main-content {
        padding: 1.5rem;
    }
    
    .main-content h2 {
        font-size: 1.5rem;
    }
    
    .main-content h3 {
        font-size: 1.2rem;
    }
    
    .planning-tool,
    .compliance-tool,
    .trend-analyzer {
        padding: 1rem;
    }
    
    .category,
    .tech-trend {
        padding: 1rem;
    }
    
    .tool-results {
        padding: 1rem;
    }
    
    .score {
        font-size: 1.5rem;
    }
} 