/* Reset and Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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


/* Header */

.header {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    max-width: 1400px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 150px;
    position: relative;
}

.logo {
    /* height: 50px; */
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    width: 100%;
    position: absolute;
    top: -29px;
    left: 0;
}


/* .logo:hover {
    transform: scale(1.05);
} */

.nav-menu {
    display: flex;
    /* gap: 35px; */
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 6px;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.15);
    transform: translateY(-1px);
}

.nav-menu a:hover::before {
    width: 80%;
}

.btn-quote {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    padding: 8px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-quote:hover::before {
    left: 100%;
}

.btn-quote:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

.btn-quote i {
    font-size: 0.85rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}


/* Mobile Menu Toggle */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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


/* Mobile Drawer - base (hidden on desktop) */

.mobile-drawer {
    display: none;
}

.mobile-drawer-overlay {
    display: none;
}


/* Hero Section */

.banner {
    margin-top: 78px;
    padding: 0 !important;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Removed slide-overlay styles as we only want image slides */

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fbbf24;
    transform: scale(1.2);
}


/* Removed hero content styles as we only want image slides */


/* Services Detail Section */

.services-detail {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-detail::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="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.services-detail .container {
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 4rem;
    font-weight: 900;
    color: #dc2626;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
}

.services-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 10px 0 0 0;
    letter-spacing: 1px;
}

.services-header h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.services-grid {
    display: flex;
    /* grid-template-columns: 1fr 1fr; */
    gap: 40px;
    align-items: start;
}

.content-grid {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: start;
}

.content-left {
    width: 67%;
}

.content-right {
    width: 33%;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #dc2626;
    position: relative;
}

.services-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #fbbf24;
}

.services-list h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.services-list-3col {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 3;
    column-gap: 20px;
    column-fill: balance;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    font-size: 14px;
    margin-bottom: 15px;
}

.services-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-left-color: #dc2626;
}

.services-list li i {
    color: #dc2626;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.services-list li span {
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
}

.contact-info {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
    border: 1px solid #e5e7eb;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    margin-bottom: 8px;
}

.contact-icon i {
    color: #dc2626;
    font-size: 1.5rem;
}

.contact-text a {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: #dc2626;
    text-decoration: underline;
}

.phone-separator {
    color: #6b7280;
    font-weight: 400;
    margin: 0 8px;
}

.price-highlight {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #dc2626 100%);
    border-radius: 15px;
    color: white;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    position: relative;
    overflow: hidden;
}

.price-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.price-text {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-line {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin: 8px 0;
}

.price-value {
    font-size: 2.8rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #ffffff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

.price-unit {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.price-unit {
    font-size: 1.1rem;
    font-weight: 700;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(139, 92, 246, 0.3);
    white-space: nowrap;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    color: white;
    text-decoration: none;
}

.btn-download i {
    font-size: 1.2rem;
}


/* Services Slider */

.services-slider {
    height: 400px;
    border-radius: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.services-slider::-webkit-scrollbar {
    height: 8px;
}

.services-slider::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.services-slider::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 4px;
}

.services-slider::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

.slider-container {
    display: flex;
    height: 100%;
    width: max-content;
}

.services-slider .slide {
    width: 400px;
    height: 100%;
    flex-shrink: 0;
}

.services-slider .slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services-slider .slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90%;
}

.services-slider .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-slider .dot.active {
    background: #fbbf24;
    transform: scale(1.2);
}


/* Video Section */

.video-section {
    margin-top: 60px;
}

.row-media {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.row-media .gallery-slider {
    flex: 1;
}

.row-media .video-player {
    flex: 1;
}

@media (max-width: 768px) {
    /* Hero: use image's natural height on mobile */
    .hero {
        height: auto;
        min-height: 0;
        max-height: none;
    }
    .hero-slider {
        height: auto;
    }
    .slide {
        position: relative;
        /* allow height to follow image */
        opacity: 1;
        /* managed by display below */
        transition: none;
    }
    .slide:not(.active) {
        display: none;
        /* hide non-active so only one sets height */
    }
    .slide-image {
        width: 100%;
        height: auto;
        /* keep image aspect ratio */
        object-fit: contain;
    }
    header .container>.nav-menu {
        display: none !important;
    }
    .row-media {
        flex-direction: column;
        gap: 20px;
    }
}

.gallery-slider {
    height: 300px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-slider:hover {
    cursor: pointer;
}

.gallery-slider::-webkit-scrollbar {
    height: 8px;
}

.gallery-slider::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.gallery-slider::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 4px;
}

.gallery-slider::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

.gallery-wrapper {
    display: flex;
    height: 100%;
    width: max-content;
}

.gallery-item {
    /* width: 300px; */
    height: 100%;
    flex-shrink: 0;
    margin-right: 10px;
}

.gallery-item:last-child {
    margin-right: 0;
}

.gallery-img-popup,
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.video-player {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.video-section h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
    position: relative;
}

.video-section h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #fbbf24);
    border-radius: 2px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: #000;
}

.video-container::before {
    content: '';
    display: block;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.btn-consult {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
}

.btn-consult:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}


/* Section Styles */

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}


/* About Section */

.about {
    background: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 0;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1f2937;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
}

.section-placeholder {
    height: 150px;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
    border: 2px dashed #d1d5db;
}

.section-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0.7;
}


/* Why Choose Section */

.why-choose {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.why-choose h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1f2937;
}

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

.reason-item {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.reason-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #dc2626;
}

.reason-item p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}


/* Benefits Section */

.benefits {
    background: #f9fafb;
}

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

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.6;
}


/* Process Section */

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.step p {
    color: #6b7280;
    line-height: 1.6;
}


/* Services Section */

.services {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1f2937;
}


/* .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
} */

.service-item {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    background: #fef2f2;
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.1);
}

.service-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}


/* Samples Section */

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

.sample-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.sample-placeholder {
    height: 200px;
    background: #f3f4f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.sample-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}


/* Quote Section */

.quote {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23fbbf24" stop-opacity="0.1"/><stop offset="100%" stop-color="%23fbbf24" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="300" r="200" fill="url(%23a)"/><circle cx="400" cy="700" r="250" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.quote h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.quote p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}


/* Thesis Section */

.thesis-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.thesis-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23dc2626" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23fbbf24" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.thesis-section .container {
    position: relative;
    z-index: 2;
}

.thesis-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.thesis-title h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-underline {
    display: flex;
    align-items: center;
    gap: 0;
}

.underline-yellow {
    width: 30px;
    height: 3px;
    background: #fbbf24;
    border-radius: 2px;
}

.underline-red {
    width: 200px;
    height: 4px;
    background: #dc2626;
    border-radius: 2px;
    margin-left: 0;
}

.thesis-price {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.thesis-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.price-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 20px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thesis-content {
    max-width: 1200px;
    margin: 0 auto;
}

.thesis-features {
    margin-bottom: 50px;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.feature-row-single {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.feature-row-single .feature-item {
    max-width: 450px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left-color: #f59e0b;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
}

.feature-row-single .feature-item:hover {
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
    border-left-color: #dc2626;
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.3);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #dc2626;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.25);
    border-left-color: #fbbf24;
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
}

.feature-item i {
    color: #dc2626;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
}

.feature-item:hover i {
    color: #fbbf24;
    transform: scale(1.1);
}

.feature-item span {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.feature-item:hover span {
    color: #dc2626;
}

.thesis-note {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    border-left: 5px solid #fbbf24;
}

.thesis-note h3 {
    color: #dc2626;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.thesis-note p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.note-tips h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.note-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.note-tips li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #666;
    line-height: 1.6;
}

.note-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #dc2626;
    font-weight: bold;
    font-size: 1.2rem;
}

.thesis-process {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.thesis-process h3 {
    color: #dc2626;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.thesis-process h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #fbbf24);
    border-radius: 2px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 100px);
    background: linear-gradient(180deg, #dc2626, #fbbf24, #dc2626);
    z-index: 1;
}

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #dc2626, #fbbf24);
    border-radius: 20px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.25);
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
}

.step-number {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.5);
}

.step-content h4 {
    color: #1f2937;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.process-step:hover .step-content h4 {
    color: #dc2626;
}

.step-content p {
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.process-step:hover .step-content p {
    color: #374151;
}

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

.btn-thesis {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-thesis::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-thesis:hover::before {
    left: 100%;
}

.btn-thesis:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
    color: white;
    text-decoration: none;
}

.btn-thesis i {
    font-size: 1.2rem;
}


/* Thesis Ad Section */

.thesis-ad {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    margin-top: 30px;
    border: 1px solid #e5e7eb;
}

.ad-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #dc2626;
}

.ad-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ad-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: #dc2626;
}

.ad-notes h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.notes-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    column-count: 2;
    column-gap: 25px;
    column-fill: balance;
}

.notes-list li {
    position: relative;
    padding: 8px 0;
    margin-bottom: 6px;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1.4;
    padding-left: 20px;
    break-inside: avoid;
    page-break-inside: avoid;
    background: #f8fafc;
    border-radius: 6px;
    margin-bottom: 8px;
    padding: 10px 15px 10px 35px;
    border-left: 3px solid #dc2626;
    transition: all 0.3s ease;
}

.notes-list li:hover {
    background: #f1f5f9;
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.1);
}

.notes-list li::before {
    content: '✓';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #dc2626;
    font-weight: bold;
    font-size: 0.9rem;
    background: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(220, 38, 38, 0.2);
}

.notes-conclusion {
    background: #f9fafb;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    color: #374151;
    font-size: 0.85rem;
    letter-spacing: 0.2px;
    border: 1px solid #e5e7eb;
}


/* Responsive Design for Thesis Ad */

@media (max-width: 768px) {
    .thesis-ad {
        padding: 20px;
        margin-top: 25px;
    }
    .ad-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .ad-header h2 {
        font-size: 1.3rem;
    }
    .ad-price {
        font-size: 1.6rem;
    }
    .notes-list {
        column-count: 1;
        column-gap: 0;
    }
    .ad-notes h3 {
        font-size: 0.9rem;
    }
    .notes-column li {
        font-size: 0.8rem;
    }
    .notes-conclusion {
        font-size: 0.8rem;
        padding: 10px;
    }
}


/* Responsive Design for Thesis Section */

@media (max-width: 768px) {
    .menu-video iframe {
        width: 100%;
        height: 200px;
    }
    .thesis-section {
        padding: 60px 0;
    }
    .thesis-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .thesis-title h2 {
        font-size: 2rem;
    }
    .underline-red {
        width: 150px;
    }
    .thesis-price {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
    .price-value {
        font-size: 2rem;
    }
    .feature-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .feature-row-single {
        justify-content: center;
    }
    .feature-row-single .feature-item {
        max-width: 100%;
    }
    .feature-item {
        padding: 20px;
        border-radius: 15px;
    }
    .feature-item i {
        font-size: 1.5rem;
    }
    .feature-item span {
        font-size: 1rem;
    }
    .thesis-note,
    .thesis-process {
        padding: 25px;
    }
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .process-steps::before {
        display: none;
    }
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    .step-content h4 {
        font-size: 1.2rem;
    }
    .step-content p {
        font-size: 0.95rem;
    }
    .thesis-cta {
        flex-direction: column;
        align-items: center;
    }
    .btn-thesis {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .thesis-header h2 {
        font-size: 1.8rem;
    }
    .thesis-note,
    .thesis-process {
        padding: 20px;
    }
    .feature-item {
        padding: 15px;
    }
    .process-step {
        padding: 20px;
    }
}


/* Thesis Ad Section */

.thesis-ad-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.thesis-ad-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e5e7eb" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.thesis-ad-section .container {
    position: relative;
    z-index: 2;
}

.thesis-ad {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.thesis-ad::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #fbbf24, #dc2626);
}

.ad-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.ad-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ad-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #dc2626;
    text-shadow: 2px 2px 4px rgba(220, 38, 38, 0.3);
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ad-contact {
    text-align: center;
    margin-bottom: 40px;
}

.ad-contact span {
    font-size: 1.8rem;
    font-weight: 800;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-notes h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

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

.notes-column li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #2563eb;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.5;
}

.notes-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.5rem;
}

.notes-conclusion {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    color: #1f2937;
    font-size: 1.1rem;
    line-height: 1.6;
    border-left: 4px solid #dc2626;
}


/* Responsive Design for Thesis Ad */

@media (max-width: 768px) {
    .thesis-ad {
        padding: 30px;
        margin: 0 20px;
    }
    .ad-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .ad-header h2 {
        font-size: 2rem;
    }
    .ad-price {
        font-size: 2.5rem;
    }
    .ad-contact span {
        font-size: 1.4rem;
    }
    .notes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .notes-column li {
        font-size: 1rem;
    }
    .notes-conclusion {
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .thesis-ad {
        padding: 20px;
        margin: 0 10px;
    }
    .ad-header h2 {
        font-size: 1.8rem;
    }
    .ad-price {
        font-size: 2rem;
    }
    .ad-contact span {
        font-size: 1.2rem;
    }
}


/* Footer */

.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #fbbf24, #dc2626);
}

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

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fbbf24;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.contact-info p {
    margin-bottom: 8px;
    color: #d1d5db;
    font-size: 0.9rem;
}

.contact-info i {
    color: #fbbf24;
    margin-right: 10px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.company-info h4 {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.company-info p {
    margin-bottom: 8px;
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.5;
}

.policy-links h4 {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.policy-links ul {
    list-style: none;
    columns: 2;
    column-gap: 20px;
}

.policy-links ul li {
    margin-bottom: 5px;
    break-inside: avoid;
}

.policy-links ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

.policy-links ul li a:hover {
    color: #fbbf24;
}

.footer-copyright {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}


/* Responsive Design */

@media (max-width: 1200px) {
    .nav-menu {
        gap: 25px;
    }
    .nav-menu a {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    .nav-menu a {
        font-size: 0.8rem;
        padding: 5px 8px;
    }
    .btn-quote {
        padding: 12px 18px;
        font-size: 0.85rem;
    }
    .logo {
        /* height: 40px; */
        max-width: 150px;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .services-list {
        grid-column: 1;
    }
    .services-slider {
        grid-column: 1;
        height: 350px;
    }
    .services-grid-2col {
        column-count: 2;
        column-gap: 15px;
    }
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }
    .services-detail,
    .services-detail .container {
        overflow-x: hidden;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .menu-content {
        max-width: 100%;
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .menu-category,
    .menu-content,
    .services-detail .container {
        max-width: 100%;
    }
    .menu-category img,
    .category-image {
        max-width: 100%;
        height: auto;
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .btn-quote {
        display: none !important;
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-menu a {
        padding: 12px 20px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        text-align: center;
        font-size: 0.9rem;
    }
    /* Mobile drawer content */
    .mobile-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80vw;
        max-width: 420px;
        transform: translateX(100%);
        transition: transform .35s ease;
        z-index: 1001;
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        box-shadow: -10px 0 30px rgba(0, 0, 0, .3);
        padding-top: 70px;
    }
    .mobile-drawer .mobile-drawer-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.25);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(8px);
        cursor: pointer;
        transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }
    .mobile-drawer .mobile-drawer-close:hover {
        transform: scale(1.06);
        border-color: rgba(255, 255, 255, 0.45);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    }
    .mobile-drawer .mobile-drawer-close i {
        font-size: 18px;
    }
    .mobile-drawer.active {
        transform: translateX(0);
    }
    .mobile-drawer .nav-menu {
        display: flex;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    /* Support plain <ul> list inside mobile drawer */
    .mobile-drawer ul,
    .mobile-drawer .drawer-menu ul {
        list-style: none;
        margin: 0;
        padding: 10px 20px 0 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .mobile-drawer ul li a,
    .mobile-drawer .drawer-menu ul li a {
        display: block;
        text-decoration: none;
        color: #e5e7eb;
        padding: 12px 16px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.2s ease;
    }
    .mobile-drawer ul li a:hover,
    .mobile-drawer .drawer-menu ul li a:hover {
        color: #fbbf24;
        background: rgba(251, 191, 36, 0.12);
        transform: translateX(2px);
    }
    .mobile-drawer-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .4);
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s ease, visibility .3s ease;
        z-index: 99;
    }
    .mobile-drawer-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .mobile-drawer .drawer-content {
        margin-top: auto;
        /* push to bottom */
        padding: 10px 20px 30px 20px;
        display: grid;
        gap: 16px;
    }
    .mobile-drawer .drawer-quote {
        display: flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        color: #1f2937;
        padding: 12px 16px;
        border-radius: 10px;
        font-weight: 600;
        text-decoration: none;
        justify-content: center;
    }
    .mobile-drawer .drawer-section h4 {
        color: #e5e7eb;
        font-size: .95rem;
        margin-bottom: 10px;
    }
    .mobile-drawer .contact-row {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #e5e7eb;
        font-size: .9rem;
        margin: 6px 0;
    }
    .mobile-drawer .contact-row a {
        color: #fbbf24;
        text-decoration: none;
    }
    .mobile-drawer .contact-row .sep {
        margin: 0 6px;
        color: #9ca3af;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .header .container {
        padding: 12px 15px;
    }
    .logo {
        /* height: 35px; */
        max-width: 80px;
        top: -20px;
    }
    .nav-brand::before {
        font-size: 1.5rem;
    }
    .btn-quote {
        padding: 10px 16px;
        font-size: 0.8rem;
        gap: 8px;
    }
    .hero {
        height: 60vh;
        min-height: 400px;
        max-height: 500px;
    }
    /* Simplified responsive styles for image-only slides */
    .services-detail {
        padding: 60px 0;
    }
    .services-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .services-list h4 {
        font-size: 1.5rem;
    }
    .btn-download {
        padding: 8px 12px;
        font-size: 0.8rem;
        gap: 6px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .content-grid {
        flex-direction: column;
        gap: 30px;
    }
    .content-left {
        width: 100%;
    }
    .content-right {
        width: 100%;
    }
    .services-list-3col {
        column-count: 1;
        column-gap: 0;
    }
    .gallery-slider {
        height: 250px;
    }
    .gallery-item {
        width: 250px;
    }
    .contact-info {
        position: static;
        padding: 15px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .price-value {
        font-size: 2.2rem;
    }
    .price-unit {
        font-size: 1rem;
    }
    .price-text {
        font-size: 0.8rem;
    }
    .contact-item {
        padding: 12px;
    }
    .contact-icon i {
        font-size: 1.3rem;
    }
    .contact-text a {
        font-size: 0.8rem;
    }
    .services-list li {
        padding: 12px 15px;
    }
    .services-list li span {
        font-size: 0.9rem;
    }
    .price-value {
        font-size: 2.5rem;
    }
    .video-section h4 {
        font-size: 1.5rem;
    }
    .video-container {
        max-width: 100%;
    }
    .services-grid-auto {
        column-count: 1;
        column-gap: 0;
    }
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .policy-links ul {
        columns: 1;
    }
    .hero h2 {
        font-size: 1.2rem;
    }
    .hero-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .feature-item {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-stats {
        gap: 30px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-text h2 {
        font-size: 2rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .features-grid,
    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
    .quote h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero {
        padding: 100px 0 60px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    .btn-large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}


/* Gallery Popup Modal */

.gallery-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.gallery-popup.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(220, 38, 38, 0.1) 100%);
    cursor: pointer;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.popup-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 20px;
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 11;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.popup-close:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
}

.popup-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 11;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.popup-nav:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.popup-prev {
    left: 40px;
}

.popup-next {
    right: 40px;
}

.popup-image-container {
    max-width: 1000px;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 200px;
}

.popup-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    display: block;
    transition: none;
    max-height: 100vh;
}

.popup-image:hover {
    transform: scale(1.02);
    transition: transform 0.2s ease;
}

.popup-counter {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(220, 38, 38, 0.2) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    z-index: 11;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}


/* Mobile responsive for popup */

@media (max-width: 768px) {
    .popup-content {
        padding: 15px;
    }
    .popup-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    .popup-nav {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    .popup-prev {
        left: 20px;
    }
    .popup-next {
        right: 20px;
    }
    .popup-image-container {
        max-width: 95%;
        max-height: 75%;
        min-height: 150px;
    }
    .popup-counter {
        bottom: 25px;
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .popup-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .popup-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .popup-prev {
        left: 15px;
    }
    .popup-next {
        right: 15px;
    }
    .popup-image-container {
        max-width: 98%;
        max-height: 70%;
        min-height: 120px;
    }
    .popup-counter {
        bottom: 20px;
        font-size: 13px;
        padding: 8px 16px;
    }
}


/* Gallery 2 Popup Styles */

.gallery-popup-2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.gallery-popup-2.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.gallery-img-2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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


/* Gallery 3 Popup Styles */

.gallery-popup-3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.gallery-popup-3.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.gallery-img-3 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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


/* Diploma Section Styles */

.diploma-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.diploma-section .container {
    position: relative;
    z-index: 2;
}

.diploma-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.diploma-title h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.diploma-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.diploma-price::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.price-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

.price-note {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 5px;
}

.diploma-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.diploma-subtitle h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.diploma-subtitle h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24 0%, #dc2626 100%);
    border-radius: 2px;
}

.diploma-features {
    display: grid;
    gap: 40px;
}

.feature-section h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 20px;
}

.feature-section h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #dc2626 0%, #fbbf24 100%);
    border-radius: 2px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #dc2626;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
    border-left-color: #fbbf24;
}

.feature-list li:hover::before {
    opacity: 1;
}

.feature-list li i {
    color: #dc2626;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-list li:hover i {
    color: #fbbf24;
    transform: scale(1.1);
}

.feature-list li span {
    font-weight: 500;
    color: #374151;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.feature-list li:hover span {
    color: #1f2937;
}

.reason-content {
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #fbbf24;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.reason-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 15px;
    font-weight: 500;
}

.reason-content p:last-child {
    margin-bottom: 0;
}

.diploma-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-diploma {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-diploma::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-diploma:hover::before {
    left: 100%;
}

.btn-diploma:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}


/* Responsive Design */

@media (max-width: 768px) {
    .diploma-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .diploma-title h2 {
        font-size: 2rem;
    }
    .underline-red {
        width: 150px;
    }
    .diploma-content {
        padding: 25px;
    }
    .diploma-subtitle h3 {
        font-size: 1.2rem;
    }
    .feature-section h4 {
        font-size: 1.1rem;
    }
    .feature-list li {
        padding: 15px;
    }
    .reason-content {
        padding: 20px;
    }
    .diploma-cta {
        flex-direction: column;
        align-items: center;
    }
    .btn-diploma {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}


/* Menu Design Section Styles */

.menu-design-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.menu-design-section .container {
    position: relative;
    z-index: 2;
}

.menu-header {
    text-align: center;
    margin-bottom: 60px;
}

.menu-title h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-content {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.menu-category {
    /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); */
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
    border-color: #dc2626;
}

.menu-category:hover::before {
    opacity: 1;
}

.category-header {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.category-header h5 {
    font-size: 16px;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 20px;
}

.category-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-image:hover {
    transform: scale(1.05);
}

.category-header h5::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #dc2626 0%, #fbbf24 100%);
    border-radius: 2px;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.feature-tag {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.category-description {
    position: relative;
    z-index: 2;
}

.category-description p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    /* margin-bottom: 8px; */
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu-category:hover .category-description p {
    color: #1f2937;
}

.menu-contact {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-info h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.contact-item i {
    color: #fbbf24;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-item span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.menu-video {
    text-align: center;
}

.video-placeholder {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    height: 200px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.video-text {
    position: relative;
    z-index: 2;
}

.video-label {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Responsive Design */

@media (max-width: 768px) {
    .menu-title h2 {
        font-size: 2rem;
    }
    .underline-red {
        width: 150px;
    }
    .menu-content {
        padding: 0;
        background: transparent;
        box-shadow: unset;
        border: 0;
    }
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .menu-category {
        padding: 20px;
    }
    .category-header h5 {
        font-size: 1.1rem;
    }
    .contact-details {
        flex-direction: column;
        gap: 15px;
    }
    .contact-item {
        padding: 12px 20px;
    }
    .video-placeholder {
        height: 150px;
    }
    .video-label {
        font-size: 1.2rem;
    }
}


/* Thank You Section Styles */

.thank-you-section {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.thank-you-section .container {
    position: relative;
    z-index: 2;
}

.thank-you-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.thank-you-header {
    margin-bottom: 40px;
}

.thank-you-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.thank-you-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24 0%, #dc2626 100%);
    border-radius: 2px;
}

.thank-you-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.thank-you-message {
    margin-bottom: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
    font-weight: 500;
}

.thank-you-message p:last-of-type {
    margin-bottom: 0;
}

.signature {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #dc2626 !important;
    text-align: right !important;
    font-style: italic;
    margin-top: 30px !important;
}

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

.btn-thank-you {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-thank-you::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-thank-you:hover::before {
    left: 100%;
}

.btn-thank-you:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}


/* Responsive Design */

@media (max-width: 768px) {
    .thank-you-content {
        padding: 30px;
    }
    .thank-you-header h2 {
        font-size: 2rem;
    }
    .thank-you-header h3 {
        font-size: 1.2rem;
    }
    .thank-you-message {
        text-align: center;
    }
    .thank-you-message p {
        font-size: 1rem;
    }
    .signature {
        text-align: center !important;
    }
    .thank-you-cta {
        flex-direction: column;
        align-items: center;
    }
    .btn-thank-you {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}


/* Section Subtitle Styles */

.menu-design-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #dc2626;
    text-align: center;
    margin: 30px 0 40px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 15px 0;
}


/* .menu-design-section h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24 0%, #dc2626 100%);
    border-radius: 2px;
} */

.menu-design-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #dc2626 0%, #fbbf24 100%);
    border-radius: 1px;
}


/* Responsive for subtitles */

@media (max-width: 768px) {
    .menu-design-section h3 {
        font-size: 1.5rem;
        margin: 25px 0 30px 0;
        padding: 12px 0;
    }
}


/* Quote Request Section Styles */

.quote-request-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.quote-request-section .container {
    position: relative;
    z-index: 2;
}

.quote-header {
    text-align: center;
    margin-bottom: 50px;
}

.quote-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    background: #f9fafb;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    background: white;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    font-style: italic;
}

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

.form-actions {
    text-align: center;
    margin-top: 20px;
}

.btn-submit {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

.btn-submit:active {
    transform: translateY(0);
}


/* Footer Styles */

.footer {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 60px 0 20px 0;
    position: relative;
    overflow: hidden;
}

.footer::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="footerGrid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%234b5563" stroke-width="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrid)"/></svg>');
    opacity: 0.2;
    z-index: 1;
}

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

.footer-header {
    text-align: center;
    margin-bottom: 40px;
}

.footer-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    margin: 0 0 40px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24 0%, #dc2626 100%);
    border-radius: 2px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-item i {
    color: #fbbf24;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.contact-item span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}


/* Responsive Design */

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 15px 0;
    }
    .footer-header h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .footer-info {
        gap: 20px;
    }
    .contact-item {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .contact-item i {
        font-size: 1.3rem;
    }
    .contact-item span {
        font-size: 1rem;
    }
}


/* Responsive Design */

@media (max-width: 768px) {
    .quote-header h2 {
        font-size: 2rem;
    }
    .quote-form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    .quote-form {
        gap: 20px;
    }
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    .btn-submit {
        padding: 15px 30px;
        font-size: 1rem;
    }
}


/* Contact Form 7 – match custom quote form styles */

.wpcf7 {
    max-width: 600px;
    margin: 20px auto 0 auto;
}

.wpcf7 form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.wpcf7 form p {
    margin: 0 0 20px 0;
}

.wpcf7 label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    background: #f9fafb;
    transition: all 0.3s ease;
    font-family: inherit;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: #dc2626;
    background: white;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.wpcf7 .wpcf7-submit,
.wpcf7 input[type="submit"] {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.wpcf7 .wpcf7-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.wpcf7 .wpcf7-submit:hover::before {
    left: 100%;
}

.wpcf7 .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

.wpcf7-response-output {
    margin: 15px 0 0 0 !important;
    border-radius: 10px;
    border-width: 2px !important;
}

@media (max-width: 768px) {
    .wpcf7 form {
        padding: 30px 20px;
        margin: 0 15px;
    }
}