/* Global Variables */
:root {
    --section-padding: 6rem 0;
    --accent-gradient: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    --glass-background: rgba(255, 255, 255, 0.08);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-link i {
    font-size: 28px;
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Header Section with Background Image */
#header {
    background-image: url('Images/header6.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(27, 27, 27, 0.8) 0%,
            rgba(78, 205, 196, 0.3) 50%,
            rgba(255, 107, 107, 0.3) 100%);
    z-index: 0;
}

/* Ensure all header content stays above the background */
#header .logo,
#header .content,
#header nav {
    position: relative;
    z-index: 1;
}

/* Header Customizations */
#header .logo .icon.fa-camera {
    font-size: 2.5em;
    color: #ff6b6b;
}

#header .content .inner h1 {
    font-size: 3.5em;
    margin-bottom: 0.5em;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Enhanced for better readability */
}

#header .content .inner p {
    font-size: 1.2em;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Enhanced for better readability */
    color: rgba(255, 255, 255, 0.9);
}

/* Navigation */
#header nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5em;
}

#header nav ul li a {
    padding: 0.8em 1.5em;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
    background: rgba(27, 27, 27, 0.6);
    /* Semi-transparent background */
    backdrop-filter: blur(10px);
    /* Glass effect */
}

#header nav ul li a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Navigation */
#header nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5em;

}

#header nav ul li a {
    padding: 0.8em 1.5em;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
}

#header nav ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);

}

/* Portfolio Section */
#work {
    background-image: url('Images/t6.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Optional: creates parallax effect */
    position: relative;
    padding: var(--section-padding);
}

/* Add overlay for better content readability */
#work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 27, 27, 0.85);
    /* Dark overlay */
    z-index: 0;
}

/* Ensure all portfolio content stays above the background */
#work .major,
#work>p,
#work .portfolio-grid,
#work .portfolio-item {
    position: relative;
    z-index: 1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2em;
    margin-top: 2em;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 1.5em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    /* Glass effect */
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.portfolio-item h3 {
    color: #4ecdc4;
    margin: 1em 0 0.5em 0;
    font-size: 1.4em;
    font-weight: 600;
}

.portfolio-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Portfolio item images */
.portfolio-item .image.main {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1em;
}

.portfolio-item .image.main img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .image.main img {
    transform: scale(1.05);
}


/* Video Container Styling */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Make the iframe directly clickable and block overlays */
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    /* Force interactivity and block overlay divs */
    pointer-events: auto !important;
    z-index: 10 !important;
}

/* Block any potential overlay elements from the video host */
.video-container > div,
.video-container > a {
    display: none !important;
    pointer-events: none !important;
}

/* Content Area */
.portfolio-content {
    padding: 1.5rem;
}

/* IMDb Button Styling */
.imdb-button {
    display: inline-block;
    background-color: #f5c518; /* IMDb's yellow */
    color: #000;
    padding: 12px 24px;
    margin: 1rem 0;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.imdb-button:hover {
    background-color: #d4ab14; /* Darker yellow on hover */
    text-decoration: none;
}

.imdb-button i {
    margin-right: 8px;
    font-size: 1.2em;
}

.link-subtext {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

/* Footer Section */
.portfolio-footer {
    margin-top: 3rem;
    text-align: center;
}

.additional-links {
    background: rgba(139, 119, 119, 0.975);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

/* Gallery Section */
#gallery {
    background-image: url('Images/t13.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Optional: creates parallax effect */
    position: relative;
    padding: var(--section-padding);
}

/* Add overlay for better content readability */
#gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 27, 27, 0.85);
    /* Dark overlay */
    z-index: 0;
}

/* Ensure all gallery content stays above the background */
#gallery .major,
#gallery>p,
#gallery .gallery-container,
#gallery .gallery-grid,
#gallery .gallery-item {
    position: relative;
    z-index: 1;
}

.gallery-container {
    margin: 2em 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5em;
    margin-bottom: 2em;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    /* Subtle glass effect */
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

/* Gallery overlay for better visual hierarchy */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox Overlay */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2em;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.lightbox-nav button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2em;
    transition: background 0.3s ease;
}

.lightbox-nav button:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Blog Section */
#blog {
    background-image: url('Images/Camera\ \(5\).webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Optional: creates parallax effect */
    position: relative;
    padding: var(--section-padding);
}

/* Add overlay for better content readability */
#blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 27, 27, 0.85);
    /* Dark overlay */
    z-index: 0;
}

/* Ensure all blog content stays above the background */
#blog .major,
#blog>p,
#blog .blog-posts,
#blog .blog-post {
    position: relative;
    z-index: 1;
}

.blog-posts {
    margin: 2em 0;
}

.blog-post {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 2.5em;
    margin-bottom: 2.5em;
    border-left: 4px solid #ff6b6b;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    /* Glass effect */
}

.blog-post:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.blog-post h3 {
    color: #4ecdc4;
    margin-bottom: 0.8em;
    font-size: 1.6em;
    font-weight: 600;
    line-height: 1.4;
}

.post-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
    margin-bottom: 1.5em;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.post-meta::before {
    content: '📅';
    font-style: normal;
}

.blog-post p {
    line-height: 1.7;
    margin-bottom: 1.5em;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05em;
}

.read-more {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border: 2px solid rgba(255, 107, 107, 0.4);
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 107, 107, 0.05);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1rem;
}

.read-more:hover {
    color: white;
    background: var(--accent-gradient);
    border-color: transparent;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.read-more::after {
    content: '→';
    font-weight: 600;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* Contact Section */
#contact {
    background-image: url('Images/t16.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Optional: creates parallax effect */
    position: relative;
    padding: var(--section-padding);
}

/* Add overlay for better content readability */
#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 27, 27, 0.85);
    /* Dark overlay */
    z-index: 0;
}

/* Ensure all contact content stays above the background */
#contact .major,
#contact>p,
#contact form,
#contact .contact-info,
#contact .icons {
    position: relative;
    z-index: 1;
}

.contact-info {
    margin-top: 2em;
    padding: 2em;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    /* Glass effect */
    transition: all 0.3s ease;
}

.contact-info:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-info h3 {
    color: #4ecdc4;
    margin-bottom: 1.5em;
    font-size: 1.4em;
    text-align: center;
    position: relative;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    border-radius: 1px;
}

.contact-info p {
    margin-bottom: 1.2em;
    display: flex;
    align-items: center;
    padding: 0.8em 1em;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-info p:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-info i {
    margin-right: 12px;
    color: #ff6b6b;
    width: 20px;
    text-align: center;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.contact-info p:hover i {
    color: #4ecdc4;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-info a:hover {
    color: #4ecdc4;
    transform: translateX(3px);
}

/* Social Icons - Enhanced for visibility */
.icons {
    display: flex;
    justify-content: center;
    gap: 1.2em;
    margin-top: 2.5em;
    flex-wrap: wrap;
}

.icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.icons a:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.icons a:hover::before {
    left: 100%;
}

/* Individual Social Media Colors */
.icons a.fa-instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

.icons a.fa-twitter:hover {
    background: #1DA1F2;
    color: white;
}

.icons a.fa-facebook-f:hover {
    background: #4267B2;
    color: white;
}

.icons a.fa-youtube:hover {
    background: #FF0000;
    color: white;
}

.icons a.fa-linkedin:hover {
    background: #0077B5;
    color: white;
}

.icons a.fa-whatsapp:hover {
    background: #25D366;
    color: white;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .whatsapp-link {
        width: 50px;
        height: 50px;
    }

    .whatsapp-link i {
        font-size: 24px;
    }

    #header .content .inner h1 {
        font-size: 2.5em;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    #header nav ul {
        gap: 1em;
    }

    #header nav ul li a {
        padding: 0.6em 1.2em;
        font-size: 0.9em;
    }
}

@media screen and (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-post {
        padding: 1.5em;
    }

    .contact-info {
        padding: 1em;
    }
}

/* Enhanced Intro/About Section */
#intro {
    background-image: url('Images/t12.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: var(--section-padding);
    animation: fadeInUp 0.8s ease-out;
}

#intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 27, 27, 0.9);
    z-index: 0;
}

#intro .inner {
    position: relative;
    z-index: 1;
}

#intro .major {
    text-align: center;
    margin-bottom: 2em;
    font-size: 2.8em;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #c74ec4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

#intro .major::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #c74ec4);
    border-radius: 2px;
}

#intro .image.main {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 3em;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

#intro .image.main:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

#intro .image.main img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease, filter 0.3s ease;
    filter: brightness(0.9);
    color: thistle;
}

#intro .image.main:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

#intro p {
    font-size: 1.15em;
    line-height: 1.8;
    margin-bottom: 2em;
    color: rgba(244, 238, 238, 0.95);
    text-align: justify;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    padding: 0 1em;
}

#intro p:first-of-type {
    font-size: 1.3em;
    font-weight: 600;
    color: #4ecdc4;
    padding: 2em;
    background: rgba(78, 205, 196, 0.08);
    border-radius: 15px;
    border-left: 5px solid #4ecdc4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

#intro p:first-of-type:hover {
    background: rgba(78, 205, 196, 0.12);
    transform: translateX(5px);
}

#intro p:last-of-type {
    border-left: 5px solid #ff6b6b;
    padding-left: 2em;
    background: rgba(255, 107, 107, 0.1);
    padding: 2em;
    border-radius: 0 15px 15px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

#intro p:last-of-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #ff6b6b, #4ecdc4);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

#intro p:last-of-type:hover {
    background: rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

#intro p:last-of-type:hover::before {
    transform: scaleY(1);
}

/* Portfolio Section */
#work {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

#work .major {
    text-align: center;
    margin-bottom: 1em;
    font-size: 2.5em;
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#work>p:first-of-type {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 2em;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5em;
    margin: 3em 0;
}

.portfolio-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.portfolio-item:hover::before {
    transform: scaleX(1);
}

.portfolio-item .image.main {
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    height: 250px;
}

.portfolio-item .image.main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .image.main img {
    transform: scale(1.1);
}

.portfolio-item h3 {
    color: #4ecdc4;
    margin: 1.5em 1.5em 0.8em;
    font-size: 1.4em;
    font-weight: 600;
}

.portfolio-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 1.5em 1.5em;
    font-size: 0.95em;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5em;
    right: 1.5em;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

#work>p:last-of-type {
    text-align: center;
    font-size: 1.1em;
    margin-top: 2em;
    padding: 1.5em;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #4ecdc4;
    color: rgba(255, 255, 255, 0.9);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading States */
.image.main img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image.main img.loaded {
    opacity: 1;
}

/* Responsive Design */
@media screen and (max-width: 768px) {

    #intro .major,
    #work .major {
        font-size: 2em;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2em;
    }

    #intro p {
        font-size: 1em;
        text-align: left;
    }

    .portfolio-item {
        margin: 0 1em;
    }

    .portfolio-item .image.main {
        height: 200px;
    }
}

@media screen and (max-width: 480px) {

    #intro .major,
    #work .major {
        font-size: 1.8em;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .portfolio-item h3 {
        margin: 1.2em 1.2em 0.6em;
        font-size: 1.3em;
    }

    .portfolio-item p {
        margin: 0 1.2em 1.2em;
    }

    #intro p:last-of-type {
        padding: 1em;
        margin-left: 0.5em;
    }
}

/* Enhanced Image Styling */
.image.main {
    position: relative;
}

.image.main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
    pointer-events: none;
    border-radius: inherit;
}

/* Portfolio Item Hover Effects */
.portfolio-item {
    position: relative;
}

.portfolio-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.8), rgba(78, 205, 196, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .overlay-content {
    transform: translateY(0);
}

.view-project {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 0.8em 1.5em;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1em;
    display: inline-block;
    transition: all 0.3s ease;
}

.view-project:hover {
    background: white;
    transform: scale(1.05);
}

/* Gallery Section */
#gallery {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

#gallery .major {
    text-align: center;
    margin-bottom: 1em;
    font-size: 2.5em;
    background: linear-gradient(45deg, #ff6b6b, #c74ec4, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

#gallery .major::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b6b, #c74ec4, #4ecdc4);
    border-radius: 2px;
}

#gallery>p:first-of-type {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 2.5em;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Gallery Container */
.gallery-container {
    margin: 2em 0 3em;
    position: relative;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2em;
    margin-bottom: 2em;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.9);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

/* Gallery Item Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.85), rgba(78, 205, 196, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.zoom-icon {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    display: block;
}

.overlay-content span {
    font-size: 1.1em;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
    animation: lightboxFadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.lightbox-caption {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 1.1em;
    padding: 1em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active .lightbox-caption {
    opacity: 1;
}

/* Lightbox Controls */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2.5em;
    cursor: pointer;
    background: none;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 1001;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.lightbox-prev:disabled,
.lightbox-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(1);
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em;
    margin-bottom: 2.5em;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.8em 1.5em;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95em;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Gallery Footer Text */
#gallery>p:last-of-type {
    text-align: center;
    font-size: 1.1em;
    margin-top: 2em;
    padding: 1.5em;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #c74ec4;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Animations */
@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item {
    animation: slideIn 0.6s ease both;
}

.gallery-item:nth-child(1) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
    animation-delay: 0.3s;
}

.gallery-item:nth-child(4) {
    animation-delay: 0.4s;
}

.gallery-item:nth-child(5) {
    animation-delay: 0.5s;
}

.gallery-item:nth-child(6) {
    animation-delay: 0.6s;
}

.gallery-item:nth-child(7) {
    animation-delay: 0.7s;
}

.gallery-item:nth-child(8) {
    animation-delay: 0.8s;
}

/* Loading Animation */
.gallery-item.loading {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    #gallery .major {
        font-size: 2em;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1em;
    }

    .gallery-filter {
        gap: 0.8em;
    }

    .filter-btn {
        padding: 0.6em 1.2em;
        font-size: 0.9em;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.2em;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 2em;
    }
}

@media screen and (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8em;
    }

    .gallery-item {
        aspect-ratio: 1/1;
    }

    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 80%;
        text-align: center;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 80%;
    }

    .zoom-icon {
        font-size: 2em;
    }

    .overlay-content span {
        font-size: 1em;
    }
}

/* Enhanced Image Transitions */
.gallery-item img {
    transition: transform 0.5s ease, filter 0.5s ease, opacity 0.3s ease;
}

.gallery-item.loading img {
    opacity: 0;
}

.gallery-item img.loaded {
    opacity: 1;
}

/* Blog Section */
#blog {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

#blog .major {
    text-align: center;
    margin-bottom: 1em;
    font-size: 2.5em;
    background: linear-gradient(45deg, #4ecdc4, #c74ec4, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

#blog .major::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(45deg, #4ecdc4, #c74ec4, #ff6b6b);
    border-radius: 2px;
}

#blog>p:first-of-type {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 3em;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    padding: 0 2em;
}

/* Blog Posts Container */
.blog-posts {
    margin: 2em 0 3em;
}

/* Individual Blog Post */
.blog-post {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 15px;
    padding: 2.5em;
    margin-bottom: 2.5em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.blog-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #4ecdc4, #ff6b6b);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.blog-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.blog-post:hover::before {
    transform: scaleY(1);
}

.blog-post:last-child {
    margin-bottom: 0;
}

.blog-post h3 {
    color: #4ecdc4;
    font-size: 1.6em;
    margin-bottom: 0.8em;
    line-height: 1.4;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-post:hover h3 {
    color: #ff6b6b;
}

.post-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    margin-bottom: 1.5em;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.post-meta::before {
    content: '📅';
    font-style: normal;
}

.blog-post p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5em;
    font-size: 1.05em;
}

/* Read More Link */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    padding: 0.8em 1.5em;
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 107, 107, 0.05);
    position: relative;
    overflow: hidden;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.read-more:hover {
    color: white;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.read-more:hover::before {
    left: 100%;
}

.read-more::after {
    content: '→';
    font-weight: 600;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* Blog Post Categories */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    margin-bottom: 2em;
    justify-content: center;
}

.category-filter {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.6em 1.2em;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
    font-weight: 500;
}

.category-filter:hover,
.category-filter.active {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

/* Blog Post Featured Image */
.blog-post-featured {
    margin-bottom: 1.5em;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.blog-post-featured img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .blog-post-featured img {
    transform: scale(1.05);
}

/* Blog Post Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    margin-top: 1.5em;
}

.blog-tag {
    background: rgba(78, 205, 196, 0.1);
    color: #4ecdc4;
    padding: 0.3em 0.8em;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 500;
    border: 1px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: rgba(78, 205, 196, 0.2);
    transform: translateY(-1px);
}

/* Blog Footer Text */
#blog>p:last-of-type {
    text-align: center;
    font-size: 1.1em;
    margin-top: 3em;
    padding: 2em;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    position: relative;
}

#blog>p:last-of-type::before {
    content: '"';
    font-size: 4em;
    color: rgba(255, 107, 107, 0.3);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

/* Blog Load More Button */
.blog-load-more {
    text-align: center;
    margin-top: 3em;
}

.load-more-btn {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    color: white;
    border: none;
    padding: 1em 2em;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.load-more-btn:active {
    transform: translateY(-1px);
}

/* Blog Search */
.blog-search {
    margin-bottom: 2em;
    position: relative;
}

.blog-search input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 1em 1.5em;
    color: white;
    font-size: 1em;
    width: 100%;
    transition: all 0.3s ease;
}

.blog-search input:focus {
    border-color: #4ecdc4;
    box-shadow: 0 0 0 2px rgba(78, 205, 196, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.blog-search::after {
    content: '🔍';
    position: absolute;
    right: 1.5em;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    opacity: 0.6;
}

/* Blog Post Animations */
.blog-post {
    animation: slideInUp 0.6s ease both;
}

.blog-post:nth-child(1) {
    animation-delay: 0.1s;
}

.blog-post:nth-child(2) {
    animation-delay: 0.2s;
}

.blog-post:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blog Post Hover Effects */
.blog-post::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 107, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 15px;
}

.blog-post:hover::after {
    opacity: 1;
}

/* Responsive Design for Blog */
@media screen and (max-width: 768px) {
    #blog .major {
        font-size: 2em;
    }

    .blog-post {
        padding: 2em;
        margin-bottom: 2em;
    }

    .blog-post h3 {
        font-size: 1.4em;
    }

    .blog-categories {
        gap: 0.8em;
    }

    .category-filter {
        padding: 0.5em 1em;
        font-size: 0.85em;
    }

    #blog>p:first-of-type {
        padding: 0 1em;
    }

    #blog>p:last-of-type {
        padding: 1.5em;
        margin-top: 2em;
    }

    #blog>p:last-of-type::before {
        font-size: 3em;
        top: 5px;
        left: 15px;
    }
}

@media screen and (max-width: 480px) {
    .blog-post {
        padding: 1.5em;
    }

    .blog-post h3 {
        font-size: 1.3em;
    }

    .blog-categories {
        flex-direction: column;
        align-items: center;
    }

    .category-filter {
        width: 80%;
        text-align: center;
    }

    .read-more {
        width: 100%;
        justify-content: center;
    }

    .blog-tags {
        justify-content: center;
    }

    #blog>p:first-of-type {
        font-size: 1.1em;
        margin-bottom: 2em;
    }
}

/* Blog Post Excerpt */
.blog-excerpt {
    position: relative;
    overflow: hidden;
    max-height: 4.2em;
    line-height: 1.4;
}

.blog-excerpt::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 1.4em;
    background: linear-gradient(to right, transparent, rgba(27, 27, 27, 0.9));
}

/* Blog Author Info */
.blog-author {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-top: 1.5em;
    padding-top: 1.5em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #4ecdc4;
}

.author-info h4 {
    color: #4ecdc4;
    margin-bottom: 0.3em;
    font-size: 1em;
}

.author-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    margin-bottom: 0;
}

/* Blog Social Share */
.blog-share {
    display: flex;
    gap: 0.5em;
    margin-top: 1.5em;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.share-btn.twitter:hover {
    background: #1DA1F2;
    color: white;
    border-color: #1DA1F2;
}

.share-btn.facebook:hover {
    background: #4267B2;
    color: white;
    border-color: #4267B2;
}

.share-btn.linkedin:hover {
    background: #0077B5;
    color: white;
    border-color: #0077B5;
}

/* Contact Section */
#contact {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

#contact .major {
    text-align: center;
    margin-bottom: 1em;
    font-size: 2.5em;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #c74ec4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

#contact .major::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #c74ec4);
    border-radius: 2px;
}

#contact>p:first-of-type {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 2.5em;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    padding: 0 2em;
}

/* Contact Form */
#contact form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 15px;
    padding: 2.5em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3em;
    position: relative;
    overflow: hidden;
}

#contact form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #c74ec4);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

#contact form:focus-within::before {
    transform: scaleX(1);
}

.fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5em;
    margin-bottom: 1.5em;
}

.field {
    position: relative;
}

.field.half {
    grid-column: span 1;
}

.field.full {
    grid-column: 1 / -1;
}

/* Form Labels */
#contact label {
    display: block;
    margin-bottom: 0.8em;
    color: #4ecdc4;
    font-weight: 600;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

/* Form Inputs */
#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    padding: 1em 1.2em;
    font-size: 1em;
    transition: all 0.3s ease;
    width: 100%;
    resize: vertical;
}

#contact input[type="text"]:focus,
#contact input[type="email"]:focus,
#contact textarea:focus {
    border-color: #4ecdc4;
    box-shadow: 0 0 0 2px rgba(78, 205, 196, 0.2);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

#contact textarea {
    min-height: 120px;
    line-height: 1.6;
}

/* Form Input Placeholder */
#contact input::placeholder,
#contact textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Form Actions */
#contact .actions {
    display: flex;
    gap: 1em;
    justify-content: center;
    margin-top: 2em;
}

#contact input[type="submit"],
#contact input[type="reset"] {
    padding: 1em 2em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95em;
    position: relative;
    overflow: hidden;
}

#contact input[type="submit"] {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    color: white;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

#contact input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
    background: linear-gradient(45deg, #5dd4cc, #ff7b7b);
}

#contact input[type="submit"]:active {
    transform: translateY(-1px);
}

#contact input[type="reset"] {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#contact input[type="reset"]:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Contact Info Section */
.contact-info {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 15px;
    padding: 2.5em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2.5em;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #ff6b6b, #4ecdc4);
}

.contact-info h3 {
    color: #4ecdc4;
    font-size: 1.4em;
    margin-bottom: 1.5em;
    text-align: center;
    position: relative;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    border-radius: 1px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-bottom: 1.2em;
    padding: 0.8em 1em;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-info p:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-info i {
    color: #ff6b6b;
    width: 20px;
    text-align: center;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.contact-info p:hover i {
    color: #4ecdc4;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #4ecdc4;
}

/* Social Icons */
#contact .icons {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin-top: 2em;
    flex-wrap: wrap;
}

#contact .icons li {
    margin: 0;
}

#contact .icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#contact .icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

#contact .icons a:hover {
    transform: translateY(-3px);
    border-color: transparent;
}

#contact .icons a:hover::before {
    left: 100%;
}

/* Individual Social Media Colors */
#contact .icons a.fa-instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

#contact .icons a.fa-twitter:hover {
    background: #1DA1F2;
    color: white;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

#contact .icons a.fa-facebook-f:hover {
    background: #4267B2;
    color: white;
    box-shadow: 0 5px 15px rgba(66, 103, 178, 0.4);
}

#contact .icons a.fa-youtube:hover {
    background: #FF0000;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

/* Form Validation Styles */
.field.error input,
.field.error textarea {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

.field.success input,
.field.success textarea {
    border-color: #4ecdc4;
    box-shadow: 0 0 0 2px rgba(78, 205, 196, 0.2);
}

.validation-message {
    color: #ff6b6b;
    font-size: 0.85em;
    margin-top: 0.5em;
    display: none;
}

.field.error .validation-message {
    display: block;
}

/* Loading State for Form Submission */
.form-loading {
    position: relative;
    pointer-events: none;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #4ecdc4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Success Message */
.form-success {
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 8px;
    padding: 1.5em;
    margin-top: 1.5em;
    text-align: center;
    color: #4ecdc4;
    display: none;
}

.form-success.show {
    display: block;
    animation: slideInUp 0.5s ease;
}

/* Map Section (if you add one later) */
.contact-map {
    margin-top: 2em;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-placeholder {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Business Hours */
.business-hours {
    margin-top: 2em;
}

.business-hours h4 {
    color: #4ecdc4;
    margin-bottom: 1em;
    text-align: center;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8em 1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    color: rgba(255, 255, 255, 0.9);
}

.hours-list .time {
    color: #4ecdc4;
    font-weight: 600;
}

/* Responsive Design for Contact Section */
@media screen and (max-width: 768px) {
    #contact .major {
        font-size: 2em;
    }

    .fields {
        grid-template-columns: 1fr;
        gap: 1em;
    }

    .field.half {
        grid-column: 1 / -1;
    }

    #contact form,
    .contact-info {
        padding: 2em;
    }

    #contact .actions {
        flex-direction: column;
        align-items: center;
    }

    #contact input[type="submit"],
    #contact input[type="reset"] {
        width: 100%;
        max-width: 200px;
    }

    #contact>p:first-of-type {
        padding: 0 1em;
    }

    .contact-info p {
        flex-direction: column;
        text-align: center;
        gap: 0.5em;
    }
}

@media screen and (max-width: 480px) {

    #contact form,
    .contact-info {
        padding: 1.5em;
    }

    #contact .icons a {
        width: 45px;
        height: 45px;
    }

    #contact input[type="submit"],
    #contact input[type="reset"] {
        padding: 0.8em 1.5em;
        font-size: 0.9em;
    }

    .contact-info h3 {
        font-size: 1.3em;
    }

    .hours-list li {
        flex-direction: column;
        text-align: center;
        gap: 0.3em;
    }
}

/* Animation for Form Elements */
.field {
    animation: slideInUp 0.6s ease both;
}

.field:nth-child(1) {
    animation-delay: 0.1s;
}

.field:nth-child(2) {
    animation-delay: 0.2s;
}

.field:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-info p {
    animation: slideInRight 0.6s ease both;
}

.contact-info p:nth-child(2) {
    animation-delay: 0.1s;
}

.contact-info p:nth-child(3) {
    animation-delay: 0.2s;
}

.contact-info p:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Focus Effects for Form Elements */
#contact input:focus,
#contact textarea:focus {
    transform: translateY(-2px);
}

/* Hover Effects for Contact Info */
.contact-info p:hover a {
    transform: translateX(3px);
    display: inline-block;
}

/* Footer Section */
#footer {
    background: linear-gradient(145deg, rgba(27, 27, 27, 0.95), rgba(20, 20, 20, 0.98));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3em 0;
    position: relative;
    overflow: hidden;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b6b, #4ecdc4, #c74ec4, transparent);
}

#footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.02"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white"/><circle cx="20" cy="20" r="0.5" fill="white"/><circle cx="80" cy="80" r="0.7" fill="white"/><circle cx="30" cy="70" r="0.3" fill="white"/><circle cx="70" cy="30" r="0.4" fill="white"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

#footer .copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
    margin: 0;
    position: relative;
    z-index: 1;
}

#footer .copyright a {
    color: #4ecdc4;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
}

#footer .copyright a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #4ecdc4, #ff6b6b);
    transition: width 0.3s ease;
}

#footer .copyright a:hover {
    color: #ff6b6b;
}

#footer .copyright a:hover::after {
    width: 100%;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    margin-bottom: 2em;
    position: relative;
    z-index: 1;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-social a:hover::before {
    left: 100%;
}

.footer-social a.fa-instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

.footer-social a.fa-twitter:hover {
    background: #1DA1F2;
    color: white;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

.footer-social a.fa-facebook-f:hover {
    background: #4267B2;
    color: white;
    box-shadow: 0 5px 15px rgba(66, 103, 178, 0.4);
}

.footer-social a.fa-youtube:hover {
    background: #FF0000;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.footer-social a.fa-linkedin:hover {
    background: #0077B5;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
    margin-bottom: 2em;
    position: relative;
    z-index: 1;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5em 0;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: #4ecdc4;
}

.footer-nav a:hover::after {
    width: 100%;
}

/* Footer Additional Info */
.footer-info {
    text-align: center;
    margin-bottom: 2em;
    position: relative;
    z-index: 1;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85em;
    margin: 0.5em 0;
    line-height: 1.6;
}

.footer-credits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    margin-top: 1.5em;
    flex-wrap: wrap;
}

.credit-item {
    display: flex;
    align-items: center;
    gap: 0.5em;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8em;
}

.credit-item i {
    color: #4ecdc4;
    font-size: 0.9em;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px);
}

/* Footer Animations */
#footer {
    animation: fadeInUp 1s ease-out 1s both;
}

.footer-social a,
.footer-nav a,
.credit-item {
    animation: fadeInUp 0.6s ease both;
}

.footer-social a:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-social a:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-social a:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-social a:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-social a:nth-child(5) {
    animation-delay: 0.5s;
}

.footer-nav a:nth-child(1) {
    animation-delay: 0.2s;
}

.footer-nav a:nth-child(2) {
    animation-delay: 0.3s;
}

.footer-nav a:nth-child(3) {
    animation-delay: 0.4s;
}

.footer-nav a:nth-child(4) {
    animation-delay: 0.5s;
}

.footer-nav a:nth-child(5) {
    animation-delay: 0.6s;
}

/* Footer Wave Decoration */
.footer-wave {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path fill="rgba(27,27,27,0.95)" d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z"></path></svg>');
    background-size: 1200px 20px;
}

/* Footer Newsletter (Optional) */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 2em;
    margin: 0 auto 2em;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter h4 {
    color: #4ecdc4;
    text-align: center;
    margin-bottom: 1em;
    font-size: 1.1em;
}

.newsletter-form {
    display: flex;
    gap: 0.5em;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.8em 1.2em;
    color: white;
    font-size: 0.9em;
}

.newsletter-form button {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    border: none;
    border-radius: 25px;
    padding: 0.8em 1.5em;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

/* Responsive Design for Footer */
@media screen and (max-width: 768px) {
    #footer {
        padding: 2em 0;
    }

    .footer-nav {
        gap: 1.5em;
    }

    .footer-nav a {
        font-size: 0.85em;
    }

    .footer-social {
        gap: 1em;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .back-to-top {
        bottom: 70px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .footer-credits {
        flex-direction: column;
        gap: 0.5em;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    #footer {
        padding: 1.5em 0;
    }

    .footer-nav {
        gap: 1em;
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        gap: 0.8em;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 0.9em;
    }

    .back-to-top {
        bottom: 60px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.9em;
    }

    #footer .copyright {
        font-size: 0.8em;
    }

    .footer-newsletter {
        padding: 1.5em;
        margin: 0 1em 2em;
    }
}

/* Footer Theme Variations */
#footer.dark {
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
}

#footer.glass {
    background: rgba(27, 27, 27, 0.8);
    backdrop-filter: blur(10px);
}

/* Footer Border Variations */
#footer.bordered {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Pattern Overlay */
#footer.pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 107, 107, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(78, 205, 196, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Fix low contrast text */
#header .content .inner p {
    color: rgba(255, 255, 255, 0.95);
    /* Increase contrast */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.contact-info a {
    color: #4ecdc4;
    /* Use solid colors instead of rgba */
}

/* Add focus styles */
a:focus,
button:focus {
    outline: 2px solid #4ecdc4;
    outline-offset: 2px;
}

input:focus,
textarea:focus {
    outline: 2px solid #ff6b6b;
}

/* Booking Form Styles */
.booking-toggle {
    text-align: center;
    margin-bottom: 2em;
}

.booking-toggle-buttons {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin-top: 1em;
    flex-wrap: wrap;
}

.booking-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.8em 1.5em;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 120px;
}

.booking-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.booking-toggle-btn.active {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

/* Booking Form */
#booking-form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 15px;
    padding: 2.5em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3em;
    position: relative;
    overflow: hidden;
    display: none;
}

#booking-form.show {
    display: block;
    animation: slideInUp 0.5s ease;
}

#booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #c74ec4, #4ecdc4);
}

.booking-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 2em;
    position: relative;
}

.booking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    margin: 0 1.5em;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5em;
    transition: all 0.3s ease;
}

.step-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.booking-step.active .step-number {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    color: white;
    border-color: transparent;
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.booking-step.active .step-label {
    color: #4ecdc4;
    font-weight: 600;
}

.booking-step.completed .step-number {
    background: linear-gradient(45deg, #c74ec4, #ff6b6b);
    color: white;
    border-color: transparent;
}

/* Form Steps */
.booking-form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.booking-form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Selection */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5em;
    margin-bottom: 2em;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.service-card.selected {
    background: rgba(78, 205, 196, 0.1);
    border-color: #4ecdc4;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.2);
}

.service-card i {
    font-size: 2.5em;
    color: #4ecdc4;
    margin-bottom: 0.8em;
    display: block;
}

.service-card h4 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5em;
    font-size: 1.1em;
}

.service-card .price {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 0.5em;
}

.service-card .description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    line-height: 1.4;
}

/* Date and Time Selection */
.date-picker {
    margin-bottom: 1.5em;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.8em;
    margin-top: 1em;
}

.time-slot {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.8em;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.time-slot:hover {
    background: rgba(255, 255, 255, 0.1);
}

.time-slot.selected {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    color: white;
    border-color: transparent;
}

.time-slot.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Form Navigation */
.booking-form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2em;
    padding-top: 1.5em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-prev,
.btn-next {
    padding: 0.8em 1.5em;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: 120px;
}

.btn-prev {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-prev:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-next {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    color: white;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

/* Booking Summary */
.booking-summary {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5em;
    margin-bottom: 1.5em;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8em 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 600;
    color: #4ecdc4;
    font-size: 1.1em;
}

.summary-label {
    color: rgba(255, 255, 255, 0.7);
}

.summary-value {
    color: rgba(255, 255, 255, 0.9);
}

/* Success Message */
.booking-success {
    text-align: center;
    padding: 3em;
    display: none;
}

.booking-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    font-size: 4em;
    color: #4ecdc4;
    margin-bottom: 1em;
    animation: bounce 1s ease;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.booking-success h3 {
    color: #4ecdc4;
    margin-bottom: 1em;
    font-size: 1.8em;
}

.booking-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2em;
    margin: 2em auto;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-details p {
    margin-bottom: 1em;
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-details strong {
    color: #4ecdc4;
}

/* Responsive Design for Booking Form */
@media screen and (max-width: 768px) {
    .booking-steps {
        flex-direction: column;
        gap: 1em;
    }

    .booking-step {
        margin: 0;
        flex-direction: row;
        gap: 1em;
        justify-content: flex-start;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .booking-form-navigation {
        flex-direction: column;
        gap: 1em;
    }

    .btn-prev,
    .btn-next {
        width: 100%;
    }

    #booking-form,
    #contact-form {
        padding: 1.5em;
    }
}

@media screen and (max-width: 480px) {
    .booking-toggle-buttons {
        flex-direction: column;
        align-items: center;
    }

    .booking-toggle-btn {
        width: 100%;
        max-width: 200px;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== */
/* BOOKING FORM STYLES */
/* ==================== */

/* Booking Toggle Buttons */
.booking-toggle {
    text-align: center;
    margin: 2em 0 3em;
}

.booking-toggle p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1em;
    font-size: 1.1em;
}

.booking-toggle-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    flex-wrap: wrap;
}

.toggle-btn {
    padding: 1em 2em;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    background: rgba(27, 27, 27, 0.6);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1em;
    min-width: 180px;
    backdrop-filter: blur(10px);
}

.toggle-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.toggle-btn.active {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-color: transparent;
    color: white;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

/* Forms Container */
.forms-container {
    position: relative;
    min-height: 500px;
}

/* Contact Form (Existing) - Ensure it's visible by default */
#contact-form {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Booking Form */
#booking-form {
    display: none;
    animation: fadeIn 0.5s ease;
}

#booking-form.show {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Booking Steps Indicator */
.booking-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5em;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.booking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 120px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.8em;
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.step-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    font-weight: 500;
}

.booking-step.active .step-number {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    color: white;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.5);
    transform: scale(1.1);
}

.booking-step.active .step-label {
    color: #4ecdc4;
    font-weight: 600;
}

.booking-step.completed .step-number {
    background: linear-gradient(45deg, #c74ec4, #ff6b6b);
    color: white;
    border-color: transparent;
}

/* Form Steps */
.booking-form-step {
    display: none;
    animation: slideIn 0.5s ease;
}

.booking-form-step.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Selection Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5em;
    margin: 2em 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-card.selected {
    background: rgba(78, 205, 196, 0.1);
    border-color: #4ecdc4;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5em;
    color: #4ecdc4;
    margin-bottom: 1em;
    display: block;
    transition: all 0.3s ease;
}

.service-card.selected i {
    color: #ff6b6b;
    transform: scale(1.1);
}

.service-card h4 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8em;
    font-size: 1.2em;
    font-weight: 600;
}

.service-card .price {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1.2em;
    margin-bottom: 0.8em;
    display: block;
}

.service-card .description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95em;
    line-height: 1.5;
}

/* Date and Time Selection */
.date-time-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 2em;
    margin: 2em 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1em;
    margin-top: 1.5em;
}

.time-slot {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1em;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.time-slot:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.time-slot.selected {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.time-slot.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Form Navigation Buttons */
.booking-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3em;
    padding-top: 2em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-btn {
    padding: 1em 2em;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1em;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}

.booking-btn.prev {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-btn.prev:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

.booking-btn.next,
.booking-btn.submit {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    color: white;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.booking-btn.next:hover,
.booking-btn.submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

/* Booking Summary */
.booking-summary {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2.5em;
    margin: 2em 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2em 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.2em;
    padding-top: 1.5em;
    margin-top: 0.5em;
}

.summary-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.summary-value {
    color: rgba(255, 255, 255, 0.9);
    text-align: right;
    font-weight: 600;
}

.summary-item:last-child .summary-value {
    color: #4ecdc4;
    font-size: 1.3em;
}

/* Success Message */
.booking-success {
    text-align: center;
    padding: 3em;
    display: none;
    animation: fadeIn 0.5s ease;
}

.booking-success.show {
    display: block;
}

.success-icon {
    font-size: 5em;
    color: #4ecdc4;
    margin-bottom: 1em;
    animation: bounce 1s ease;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.booking-success h3 {
    color: #4ecdc4;
    margin-bottom: 1em;
    font-size: 2em;
    font-weight: 600;
}

.booking-details {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2.5em;
    margin: 2em auto;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.booking-details p {
    margin-bottom: 1em;
    display: flex;
    justify-content: space-between;
    padding: 0.8em 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-details p:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.booking-details strong {
    color: #4ecdc4;
    font-weight: 600;
}

.booking-details span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .booking-toggle-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1em;
    }

    .toggle-btn {
        width: 100%;
        max-width: 300px;
    }

    .booking-steps {
        flex-direction: column;
        gap: 2em;
    }

    .booking-steps::before {
        width: 2px;
        height: 80%;
        top: 20px;
        left: 20px;
        transform: none;
    }

    .booking-step {
        flex-direction: row;
        width: 100%;
        gap: 1.5em;
        justify-content: flex-start;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .booking-navigation {
        flex-direction: column;
        gap: 1em;
    }

    .booking-btn {
        width: 100%;
    }

    .booking-summary,
    .booking-details {
        padding: 1.5em;
    }
}

@media screen and (max-width: 480px) {
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-success {
        padding: 2em 1em;
    }

    .success-icon {
        font-size: 4em;
    }

    .booking-success h3 {
        font-size: 1.5em;
    }
}

/* Content Management Tabs */
.content-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tab-btn.active {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

/* Form groups in tabs */
.tab-content .form-group {
    margin-bottom: 1.5rem;
}

.tab-content h4 {
    color: var(--primary);
    margin: 1.5rem 0 1rem;
    font-size: 1.1rem;
}

/* Gallery Manager */
.gallery-manager {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-preview {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-preview img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.gallery-preview .actions {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-preview:hover .actions {
    opacity: 1;
}

.upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.upload-area:hover {
    border-color: var(--primary);
    background: rgba(78, 205, 196, 0.05);
}

/* Editable items */
.editable-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.editable-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.editable-item-title {
    font-weight: 600;
    color: var(--light);
}

.editable-item-actions {
    display: flex;
    gap: 0.5rem;
}

/* Image upload preview */
.image-preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.image-preview {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 100px;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(244, 67, 54, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
}

.back-to-site-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-to-site-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-site-btn i {
    font-size: 0.8rem;
}

/* Time Slots Styling */
.date-time-section {
    margin: 1.5rem 0;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.time-slot {
    padding: 0.75rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.time-slot:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.time-slot.active {
    background: #4ecdc4;
    color: #000;
    border-color: #4ecdc4;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

/* Validation styling */
.time-slots:has(+ #booking-time:invalid) {
    border: 1px solid rgba(255, 100, 100, 0.3);
    padding: 0.5rem;
    border-radius: 6px;
}

.time-slots:has(+ #booking-time:valid) .time-slot.active {
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .time-slots {
        grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
        gap: 0.5rem;
    }
    
    .time-slot {
        padding: 0.6rem 0.4rem;
        font-size: 0.85rem;
    }
}

/* Add to your existing CSS */
.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.time-slot {
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot.active {
    border-color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
}

.status-message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    animation: slideDown 0.3s ease;
}

.status-success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.status-error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid #e74c3c;
    color: #e74c3c;
}

.status-warning {
    background: rgba(241, 196, 15, 0.1);
    border: 1px solid #f1c40f;
    color: #f1c40f;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .time-slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .booking-form-container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-step {
        padding: 15px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add this to your existing CSS section */
.booking-toggle {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.booking-toggle-buttons {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.3rem;
    gap: 0.5rem;
}

.toggle-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.toggle-btn:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.toggle-btn.active {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    color: white;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

/* Mobile styles for horizontal nav */
@media (max-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: row; /* Change from column to row */
        justify-content: space-around; /* Or space-between, center */
        align-items: center;
        position: fixed; /* Or relative/absolute based on your design */
        bottom: 0; /* Stick to bottom if you want */
        left: 0;
        right: 0;
        width: 100%;
        height: auto; /* Remove full height */
        background: rgba(0, 0, 0, 0.9); /* Adjust background */
        padding: 15px 10px;
        z-index: 1000;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Remove any hamburger menu if it exists */
    .hamburger-menu {
        display: none;
    }

    /* Make nav items horizontal */
    .nav-item {
        margin: 0 5px; /* Horizontal spacing */
        padding: 8px 12px;
        font-size: 14px; /* Smaller font for mobile */
    }

    /* If you have a logo/title in nav */
    .nav-brand {
        display: none; /* Hide on mobile or adjust */
    }
}

/* Video Container Styles */
    .video-container {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        background: #1a1a1a;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    
    
    
    .video-placeholder {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    }
    
    .video-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.7;
    }
    
    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: transform 0.2s ease;
    }
    
    
    
    .video-container.playing .video-placeholder {
        display: none;
    }
    
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    /* Hide iframe when preloaded but not playing */
    .video-container.preloaded:not(.playing) iframe {
        display: none;
    }
    
    /* Performance Optimizations */
    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .portfolio-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }