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

:root {
    color-scheme: light only;
    /* Brand Colors */
    --brand-cyan: #00d4ff;
    --brand-magenta: #ff0080;
    --brand-dark: #1a1a1a;
    --light-bg: #f8f9ff;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

html {
    color-scheme: light;
    scroll-behavior: smooth;
}

@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: light only;
    }
    html {
        color-scheme: light;
        background: white !important;
        color: #333 !important;
    }
    body {
        background: white !important;
        color: #333 !important;
    }
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: #333;
    line-height: 1.6;
    color-scheme: light;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    height: 80px;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
    filter: brightness(1.2) contrast(1.1);
}

.brand-text {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.brand-studios {
    color: #cccccc;
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-cyan);
    background: rgba(255, 255, 255, 0.1);
}

/* Simple Mobile Menu Button - matching hamburger style */
.mobile-menu-btn {
    display: none;
    background: transparent;
    color: var(--brand-dark);
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--brand-cyan);
}

/* Solid Dark Mobile Menu Dropdown with Cyan Borders Only */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgb(0, 0, 0);
    border-radius: 10px;
    padding: 15px;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.mobile-menu.show {
    display: block;
}

.mobile-nav-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    margin: 5px 0;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--brand-cyan);
    background: transparent;
}

.mobile-nav-link:hover {
    background: var(--brand-cyan);
    color: white;
    transform: translateY(-2px);
}

/* Sections */
.section {
    display: none;
    min-height: 100vh;
    padding-top: 80px;
}

.section.active {
    display: block !important;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    border-radius: 15px;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e3e7f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    border-radius: 15px;
}

.section-header h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: var(--brand-dark);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e3e7f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    color: var(--brand-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-magenta) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-magenta));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
}

.btn-secondary {
    border: 2px solid var(--brand-cyan);
    color: var(--brand-cyan);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--brand-cyan);
    color: var(--white);
}

.btn-link {
    background: none;
    border: none;
    color: var(--brand-cyan);
    text-decoration: underline;
    font-size: 1rem;
    cursor: pointer;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

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

.about-text h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--brand-dark);
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Portfolio Slideshow */
.portfolio-slideshow {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    /* Performance optimizations */
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}

.slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    /* Performance optimizations */
    transform: translateZ(0);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.slide.active {
    display: block;
}

/* Optimize for faster rendering */
.slide img {
    content-visibility: auto;
    contain: layout style paint;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    /* Optimize image rendering for speed */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    /* Prevent layout shifts */
    display: block;
    /* Enable hardware acceleration */
    transform: translate3d(0, 0, 0);
    will-change: transform;
    /* Faster loading */
    background-color: #f0f0f0;
}

.slide img:hover {
    transform: scale(1.05) translateZ(0);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

.prev-btn,
.next-btn {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: auto;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--brand-cyan);
    transform: scale(1.1);
}

.slide-dots {
    text-align: center;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--brand-cyan);
    transform: scale(1.2);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--gray-100);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-magenta));
    color: var(--white);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

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

.service-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    position: relative;
    padding-left: 30px;
}

.service-card.featured .service-list li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--brand-cyan);
    font-weight: bold;
}

.service-card.featured .service-list li::before {
    color: var(--white);
}

.maintenance-info {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
}

.maintenance-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.maintenance-info .price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gray-200);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    border-color: var(--brand-cyan);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-magenta));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.pricing-header h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
}

.pricing-items {
    margin-bottom: 20px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-item:last-child {
    border-bottom: none;
}

.price {
    color: var(--brand-cyan);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Printing Options */
.printing-section {
    margin-bottom: 30px;
}

.printing-section h4 {
    color: var(--brand-cyan);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.printing-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.printing-option {
    background: var(--gray-50);
    padding: 15px;
    border-radius: 10px;
}

.printing-option.special {
    background: #e0f7fa;
    border: 1px solid var(--brand-cyan);
}

.option-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.option-prices {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.price-row span:first-child {
    color: var(--gray-600);
}

.price-row .price {
    font-size: 1rem;
}

.discount-note {
    background: #404040;
    border: 1px solid #00ffff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    color: #ffffff;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Website Packages */
.website-package-info {
    background: rgba(0, 128, 255, 0.05);
    border-left: 4px solid var(--brand-cyan);
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 10px;
}

.website-package-info p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.website-package-info strong {
    color: var(--brand-cyan);
}

.website-package {
    background: rgba(64, 224, 208, 0.1);
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.website-package h4 {
    color: var(--brand-cyan);
    font-weight: 600;
    margin-bottom: 10px;
}

.package-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--brand-cyan);
    margin-bottom: 15px;
}

.package-price span {
    font-size: 1rem;
    font-weight: normal;
}

.website-package ul {
    list-style: none;
    margin-bottom: 15px;
}

.website-package li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.website-package li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-cyan);
    font-weight: bold;
}

.package-note {
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--gray-600);
    border-left: 3px solid var(--brand-cyan);
}

/* Additional Services Section */
.additional-services {
    background: rgba(0, 128, 255, 0.05);
    border: 1px solid rgba(0, 128, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-top: 25px;
}

.additional-services h4 {
    color: var(--brand-cyan);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: center;
}

.service-option {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.service-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-option.rush-service {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 0, 128, 0.05));
}

.service-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 10px;
}

.service-title strong {
    color: var(--brand-dark);
    font-size: 1rem;
}

.service-price {
    background: var(--brand-cyan);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.rush-service .service-price {
    background: #ff6b35;
}

.service-option p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.4;
}

.hosting-reminder {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.1), rgba(255, 20, 147, 0.1));
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
    text-align: center;
}

.hosting-reminder h5 {
    color: var(--brand-cyan);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.hosting-reminder p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--gray-600);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--brand-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-magenta));
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--brand-dark);
}

.contact-details p {
    color: var(--gray-600);
    margin-bottom: 10px;
}

.contact-details a {
    color: var(--brand-cyan);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.business-hours {
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-magenta));
    color: var(--white);
    border-radius: 15px;
    padding: 25px;
}

.business-hours h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

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

.footer-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
}

.footer-tagline {
    color: #cccccc;
    font-size: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand-cyan);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #cccccc;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-magenta));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(40, 40, 40, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 30px 20px;
        transform: translateY(-100%);
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        border-radius: 0 0 15px 15px;
        z-index: 1001;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        border: 2px solid #0080ff;
        border-top: none;
        display: none;
    }

    .nav-links.open {
        display: flex !important;
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }

    /* Make sure mobile menu button is always visible */
    .mobile-menu-btn {
        display: flex !important;
    }

    .nav-link {
        width: 100%;
        padding: 15px 20px;
        margin: 5px 0;
        text-align: center;
        border-radius: 10px;
        border: 1px solid rgba(0, 128, 255, 0.3);
        background: rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        color: #ffffff;
        font-weight: 500;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(0, 128, 255, 0.2);
        border-color: var(--brand-cyan);
        transform: translateX(5px);
        color: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 128, 255, 0.3);
    }

    .mobile-menu-btn {
        display: flex;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 8px;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .slideshow-container {
        height: 300px;
    }

    .prev-btn,
    .next-btn {
        padding: 10px 15px;
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
    }

    .slide-caption {
        font-size: 1rem;
        padding: 20px 15px 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .section-header h1 {
        font-size: 2rem;
    }

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

    .printing-options {
        gap: 10px;
    }

    .option-prices {
        gap: 3px;
    }

    .price-row {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .service-card,
    .pricing-card,
    .contact-form {
        padding: 25px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    /* Ensure mobile menu button is clearly visible on small screens */
    .mobile-menu-btn {
        display: flex !important;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-menu-btn span {
        width: 22px;
        height: 2px;
        background: var(--white);
        margin: 2px 0;
    }

    /* Make navigation links more touch-friendly */
    .nav-link {
        padding: 18px 20px;
        font-size: 1.1rem;
        margin: 8px 0;
    }
}

/* Pricing highlight boxes for video/photo editing services */
.pricing-highlight {
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-magenta));
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    color: white;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
    font-weight: 600;
}

.price-item .price {
    font-size: 1.2rem;
    font-weight: bold;
}

.service-description {
    text-align: left;
    line-height: 1.6;
    color: var(--brand-dark);
    margin-top: 20px;
}

/* Services Overview Section in Hero */
.services-overview {
    margin: 40px 0;
    text-align: left;
    max-width: 1000px;
}

.overview-section {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    border-left: 4px solid var(--brand-cyan);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.overview-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-color: var(--brand-magenta);
}

.overview-section h3 {
    color: var(--brand-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.overview-section p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Modern Professional Icons */
.service-icon-modern {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    position: relative;
    flex-shrink: 0;
}

.service-icon-modern.design {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-icon-modern.design::before {
    content: "◊";
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.service-icon-modern.website {
    background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-magenta) 100%);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.service-icon-modern.website::before {
    content: "⟨/⟩";
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.service-icon-modern.photo {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.service-icon-modern.photo::before {
    content: "◐";
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.service-icon-modern.print {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.service-icon-modern.print::before {
    content: "▣";
    color: white;
    font-size: 22px;
    font-weight: bold;
}

.service-icon-modern.merchandise {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.service-icon-modern.merchandise::before {
    content: "⬟";
    color: white;
    font-size: 22px;
    font-weight: bold;
}

.service-icon-modern.memorial {
    background: linear-gradient(135deg, #696969 0%, #2c2c2c 100%);
}

.service-icon-modern.memorial::before {
    content: "✝";
    color: white;
    font-size: 20px;
    font-weight: bold;
}

/* Featured Website Design Service */
.overview-section.featured-service {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(255, 0, 128, 0.05) 100%);
    border-left: 4px solid var(--brand-magenta);
    position: relative;
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-magenta));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.feature-highlights {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.highlight {
    background: rgba(0, 212, 255, 0.1);
    color: var(--brand-cyan);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.overview-section h3 {
    color: var(--brand-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* Responsive adjustments for services overview */
@media (max-width: 768px) {
    .services-overview {
        margin: 30px 0;
    }
    
    .overview-section {
        margin: 20px 0;
        padding: 20px;
    }
    
    .overview-section.featured-service {
        transform: scale(1);
    }
    
    .overview-section h3 {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .service-icon-modern {
        width: 40px;
        height: 40px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .overview-section p {
        font-size: 0.95rem;
    }
    
    .feature-highlights {
        justify-content: center;
    }
    
    .service-badge {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }
}

/* Memorial Service Styling */
.service-card.memorial-service {
    border: 2px solid #e0e0e0;
    background: linear-gradient(135deg, rgba(240, 240, 240, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.custom-quote-banner {
    background: linear-gradient(135deg, #696969, #2c2c2c);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-align: center;
    margin: 15px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.memorial-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.feature-item {
    background: rgba(105, 105, 105, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid rgba(105, 105, 105, 0.2);
}

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

/* Memorial/Funeral Brochure Pricing Styles */
.memorial-pricing-content {
    text-align: left;
}

.memorial-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
}

.memorial-feature {
    background: rgba(105, 105, 105, 0.05);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--brand-cyan);
}

.memorial-feature strong {
    display: block;
    color: var(--brand-dark);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.memorial-feature span {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.4;
}

.quote-contact {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.1), rgba(255, 20, 147, 0.1));
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid rgba(64, 224, 208, 0.2);
}

.quote-contact p {
    margin-bottom: 15px;
    color: var(--brand-dark);
    font-size: 0.95rem;
}

.quote-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Pricing Examples for Website Packages */
.pricing-examples {
    background: rgba(0, 128, 255, 0.05);
    border: 1px solid rgba(0, 128, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

.pricing-examples h5 {
    color: var(--brand-cyan);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1rem;
}

.example-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 128, 255, 0.1);
    font-size: 0.9rem;
}

.example-price:last-child {
    border-bottom: none;
}

.example-price strong {
    color: var(--brand-cyan);
    font-weight: 600;
}

.calculation {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-style: italic;
}

/* Funeral Brochure Pricing Guidance */
.pricing-guidance {
    background: rgba(105, 105, 105, 0.05);
    border-left: 4px solid #696969;
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    text-align: center;
}

.pricing-guidance h5 {
    color: var(--brand-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.price-range {
    font-size: 1.5rem;
    font-weight: bold;
    color: #696969;
    margin-bottom: 8px;
}

.price-note {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-style: italic;
    margin: 0;
}

.quote-cta span {
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

@media (max-width: 768px) {
    .quote-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .quote-cta span {
        text-align: center;
    }
    
    .service-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .service-price {
        align-self: flex-end;
    }
    
    .example-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .pricing-examples {
        padding: 12px;
    }
}

/* Small icons for pricing section */
.service-icon-modern.small {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.service-icon-modern.small::before {
    font-size: 16px;
}
/* Mobile menu button styling */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--brand-cyan);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animate into an X when active */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}
