* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
}

/* Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 20px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

/* Logo Styles */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.icon-text {
    font-size: 32px;
    font-weight: bold;
    color: #f39c12;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon-subtext {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.2;
}

.founded-text {
    font-size: 10px;
    font-weight: 600;
    color: #7f8c8d;
    letter-spacing: 0.5px;
    margin-left: 5px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0 auto;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    display: inline-block;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #f39c12;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    color: #7f8c8d;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: white;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-nav-menu.active {
    display: flex;
}

.mobile-nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 10px;
    border-bottom: 1px solid #ecf0f1;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #f39c12;
    background-color: #fef6e8;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #ecf0f1;
}

.mobile-nav-buttons .btn {
    width: 100%;
    justify-content: center;
}

.mobile-arrow {
    float: right;
    font-size: 20px;
    font-weight: 300;
}

/* Mobile Services Menu Popup */
.mobile-services-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 9999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-services-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-services-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #ecf0f1;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.mobile-services-back,
.mobile-services-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border-radius: 50%;
}

.mobile-services-back:hover,
.mobile-services-close:hover {
    background-color: #f5f5f5;
}

.mobile-services-back svg,
.mobile-services-close svg {
    width: 24px;
    height: 24px;
}

.mobile-services-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.mobile-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
}

.mobile-service-card {
    text-decoration: none;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-service-card:active {
    transform: scale(0.95);
}

.mobile-service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-service-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.mobile-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mobile-service-card:hover .mobile-service-image img {
    transform: scale(1.05);
}

.mobile-service-name {
    padding: 12px 10px;
    font-size: 11px;
    font-weight: 500;
    color: #2c3e50;
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 480px) {
    .mobile-services-grid {
        gap: 12px;
        padding: 15px;
    }
    
    .mobile-service-image {
        height: 100px;
    }
    
    .mobile-service-name {
        font-size: 12px;
        padding: 10px 8px;
    }
}

/* Mobile Shop Menu Popup */
.mobile-shop-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 9999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-shop-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-shop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #ecf0f1;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.mobile-shop-back,
.mobile-shop-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border-radius: 50%;
}

.mobile-shop-back:hover,
.mobile-shop-close:hover {
    background-color: #f5f5f5;
}

.mobile-shop-back svg,
.mobile-shop-close svg {
    width: 24px;
    height: 24px;
}

.mobile-shop-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.mobile-shop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
}

.mobile-shop-card {
    text-decoration: none;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-shop-card:active {
    transform: scale(0.95);
}

.mobile-shop-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-shop-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.mobile-shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mobile-shop-card:hover .mobile-shop-image img {
    transform: scale(1.05);
}

.mobile-shop-name {
    padding: 12px 10px;
    font-size: 11px;
    font-weight: 500;
    color: #2c3e50;
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 480px) {
    .mobile-shop-grid {
        gap: 12px;
        padding: 15px;
    }
    
    .mobile-shop-image {
        height: 100px;
    }
    
    .mobile-shop-name {
        font-size: 12px;
        padding: 10px 8px;
    }
}

/* Mega Menu Dropdown */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 20px;
    width: 720px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    z-index: 1000;
}

.nav-item.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.mega-menu-container {
    width: 100%;
}

.mega-menu-title {
    font-size: 11px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background-color: #fff;
    overflow: hidden;
}

.service-item:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-item img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 8px;
    display: block;
}

.video-placeholder {
    width: 100%;
    height: 90px;
    background-color: #f0f0f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.video-placeholder svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.mega-menu .service-name {
    font-size: 11px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    line-height: 1.3;
    word-break: break-word;
    width: 100%;
}

/* Shop Mega Menu */
.shop-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 25px;
    width: 800px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    z-index: 1000;
}

.nav-item.dropdown:hover .shop-mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.shop-menu-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.shop-category {
    display: flex;
    flex-direction: column;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.category-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.lr-icon {
    background-color: #31456a;
}

.ps-icon {
    background-color: #001d34;
}

.template-icon {
    background-color: #1e40af;
}

.video-icon {
    background-color: transparent;
}

.icon-lr,
.icon-ps,
.icon-template {
    color: white;
    font-size: 14px;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.category-title {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.category-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-links li a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 11px;
    line-height: 1.5;
    display: block;
    transition: color 0.2s ease;
}

.category-links li a:hover {
    color: #2c3e50;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.btn-outline {
    background-color: white;
    color: #2c3e50;
    border: 2px solid #e0e0e0;
}

.btn-outline:hover {
    background-color: #f5f5f5;
    border-color: #bdc3c7;
}

.btn-primary {
    background-color: #f39c12;
    color: white;
    border: 2px solid #f39c12;
}

.btn-primary:hover {
    background-color: #e67e22;
    border-color: #e67e22;
}

/* User Icon */
.user-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.user-icon:hover {
    background-color: #f5f5f5;
}

.user-icon svg {
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .nav-container {
        padding: 10px 15px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .founded-text {
        display: none;
    }
    
    .logo-icon {
        gap: 3px;
    }
    
    .icon-text {
        font-size: 24px;
    }
    
    .icon-subtext {
        font-size: 12px;
    }
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    width: calc(100% - 40px);
    max-width: 1400px;
    height: 400px;
    margin: 20px auto 40px auto;
    overflow: hidden;
    background-color: #2c3e50;
    border-radius: 20px;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide.active {
    display: block;
}

/* Hero Image */
.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Image Comparison - Full Width */
.image-comparison {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.comparison-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.before-image,
.after-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.after-image {
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

/* Slider Handle */
.slider-handle {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: white;
    cursor: ew-resize;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.handle-line {
    width: 4px;
    flex: 1;
    background-color: white;
}

.handle-circle {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.handle-circle svg {
    width: 24px;
    height: 24px;
}

/* Carousel Content Overlay */
.carousel-content {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    text-align: right;
    max-width: 600px;
}

.slide-counter {
    position: absolute;
    top: -200px;
    right: 0;
    background-color: white;
    color: #2c3e50;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.hero-title {
    font-size: 68px;
    font-weight: 900;
    color: white;
    text-align: right;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: white;
    text-align: right;
    margin-bottom: 50px;
    letter-spacing: 2px;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    font-size: 18px;
    font-weight: bold;
}

/* Award Badges */
.award-badges {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
    align-items: flex-end;
}

.badge {
    text-align: center;
    color: white;
}

/* Laurel Badge */
.badge-laurel {
    position: relative;
    width: 100px;
}

.laurel-svg {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.badge-content {
    position: relative;
    z-index: 1;
    padding: 15px 10px;
}

.badge-title {
    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.badge-year {
    font-size: 20px;
    font-weight: 900;
    margin: 8px 0 5px 0;
}

.badge-source {
    font-size: 8px;
    margin: 0;
    opacity: 0.9;
    letter-spacing: 0.3px;
}

/* Circle Badge */
.badge-circle {
    width: 100px;
}

.circle-border {
    width: 95px;
    height: 95px;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.badge-text-center {
    font-size: 11px;
    line-height: 1.5;
    font-weight: 700;
    margin: 0;
}

.badge-agency {
    font-size: 10px;
    font-weight: 700;
}

.badge-year-circle {
    font-size: 18px;
    font-weight: 900;
    display: block;
    margin-top: 3px;
}

/* Shield Badge */
.badge-shield {
    width: 100px;
}

.shield-shape {
    width: 90px;
    height: 110px;
    background-color: white;
    color: #2c3e50;
    clip-path: polygon(50% 0%, 100% 0, 100% 75%, 50% 100%, 0 75%, 0 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    gap: 5px;
}

.shield-title {
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.shield-stars {
    color: #f39c12;
    font-size: 14px;
    margin: 0;
    letter-spacing: 1px;
}

.shield-global {
    font-size: 9px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.shield-year {
    font-size: 18px;
    font-weight: 900;
    margin: 0;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background-color: white;
    width: 12px;
    height: 12px;
}

/* Responsive Design for Hero */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .carousel-content {
        right: 30px;
        max-width: 500px;
    }
    
    .award-badges {
        gap: 20px;
        transform: scale(0.85);
        transform-origin: right;
    }
    
    .slide-counter {
        top: -180px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 400px;
    }
    
    .carousel-content {
        right: 50%;
        transform: translate(50%, -50%);
        max-width: 90%;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 32px;
        text-align: center;
        letter-spacing: 2px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 13px;
        text-align: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .arrow-circle {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .award-badges {
        justify-content: center;
        gap: 15px;
        transform: scale(0.7);
        transform-origin: center;
    }
    
    .slide-counter {
        top: -170px;
        right: 50%;
        transform: translateX(50%);
        font-size: 12px;
        padding: 6px 15px;
    }
}

/* Services Section */
.services-section {
    padding: 0 20px 80px;
    background-color: #f8f9fa;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    color: #5a6c7d;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}

.feature-icon svg {
    filter: drop-shadow(0 2px 4px rgba(74, 144, 226, 0.2));
}

.feature-title {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* Upload Section */
.upload-section {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.upload-area {
    background-color: white;
    border: 2px dashed #e0e0e0;
    border-radius: 12px;
    padding: 80px 200px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area:hover {
    border-color: #f39c12;
    background-color: #fffbf5;
}

.upload-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.upload-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.upload-btn svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2.5;
    fill: none;
}

.upload-text {
    margin-top: 20px;
    color: #7f8c8d;
    font-size: 14px;
}

/* Responsive for Services Section */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .upload-area {
        padding: 60px 100px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 0 15px 50px;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .section-description {
        font-size: 14px;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .feature-item {
        padding: 15px 10px;
    }
    
    .feature-icon {
        height: 60px;
        margin-bottom: 15px;
    }
    
    .feature-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .feature-title {
        font-size: 14px;
    }
    
    .upload-area {
        padding: 40px 30px;
    }
    
    .upload-btn {
        padding: 14px 32px;
        font-size: 14px;
    }
    
    .upload-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 0 10px 40px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-description {
        font-size: 13px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 10px;
    }
    
    .feature-icon {
        height: 50px;
    }
    
    .feature-icon svg {
        width: 45px;
        height: 45px;
    }
    
    .feature-title {
        font-size: 13px;
    }
    
    .upload-area {
        padding: 30px 20px;
    }
    
    .upload-btn {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
    }
}

/* Photo Editing Services Section */
.editing-services-section {
    padding: 80px 20px;
    background-color: white;
}

.editing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.editing-title {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

/* Service Card */
.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.service-content {
    padding-right: 20px;
}

.service-name {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-price, .service-description {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price strong, .service-description strong {
    color: #2c3e50;
    font-weight: 600;
}

.service-subtitle {
    font-size: 15px;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 20px;
}

.service-description {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-features li {
    font-size: 15px;
    color: #5a6c7d;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #7f8c8d;
    font-weight: bold;
}

.view-more-btn {
    background-color: white;
    color: #d4a574;
    border: 2px solid #d4a574;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.view-more-btn:hover {
    background-color: #d4a574;
    color: white;
    transform: translateY(-2px);
}

/* Image Comparison Card */
.service-image {
    position: relative;
}

.image-comparison-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.comparison-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.before-img,
.after-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.before-img img,
.after-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.after-img {
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

/* Comparison Slider */
.comparison-slider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: white;
    cursor: ew-resize;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.slider-line-top,
.slider-line-bottom {
    width: 3px;
    flex: 1;
    background-color: white;
}

.slider-button {
    width: 45px;
    height: 45px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    cursor: ew-resize;
}

.slider-button svg {
    width: 20px;
    height: 20px;
    stroke: #666;
    stroke-width: 2;
    fill: none;
}

.before-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    z-index: 5;
}

.after-label {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    z-index: 5;
}

/* Responsive for Editing Services */
@media (max-width: 1024px) {
    .service-card {
        gap: 40px;
    }
    
    .comparison-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .editing-services-section {
        padding: 50px 15px;
    }
    
    .editing-title {
        font-size: 22px;
        margin-bottom: 35px;
    }
    
    .service-card {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .service-content {
        padding-right: 0;
    }
    
    .service-name {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .service-price,
    .service-description,
    .service-features li {
        font-size: 14px;
    }
    
    .service-subtitle {
        font-size: 14px;
        margin-top: 15px;
    }
    
    .view-more-btn {
        padding: 10px 32px;
        font-size: 13px;
        width: 100%;
    }
    
    .comparison-wrapper {
        height: 280px;
    }
    
    .before-label,
    .after-label {
        font-size: 12px;
        padding: 6px 15px;
        bottom: 15px;
    }
    
    .slider-button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .editing-title {
        font-size: 20px;
    }
    
    .service-name {
        font-size: 16px;
    }
    
    .comparison-wrapper {
        height: 240px;
    }
    
    .slider-button {
        width: 35px;
        height: 35px;
    }
    
    .slider-button svg {
        width: 16px;
        height: 16px;
    }
    
    .before-label,
    .after-label {
        font-size: 11px;
        padding: 5px 12px;
    }
}

@media (max-width: 480px) {
    .editing-services-section {
        padding: 40px 10px;
    }
    
    .editing-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .service-card {
        gap: 20px;
        margin-bottom: 35px;
    }
    
    .service-name {
        font-size: 16px;
    }
    
    .service-price,
    .service-description,
    .service-features li {
        font-size: 13px;
    }
    
    .view-more-btn {
        padding: 10px 28px;
        font-size: 12px;
    }
    
    .comparison-wrapper {
        height: 250px;
    }
    
    .before-label,
    .after-label {
        font-size: 11px;
        padding: 5px 12px;
        bottom: 10px;
    }
    
    .before-label {
        left: 10px;
    }
    
    .after-label {
        right: 10px;
    }
    
    .slider-button {
        width: 35px;
        height: 35px;
    }
    
    .slider-button svg {
        width: 16px;
        height: 16px;
    }
}

/* How Does It Work Section */
.how-it-works-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-title {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.step-item {
    text-align: center;
}

.step-icon {
    position: relative;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background-color: #f39c12;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
}

.step-title {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

/* Description Section */
.how-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 16px;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 25px;
}

.steps-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 25px;
    padding-left: 20px;
}

.steps-list li {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

.closing-text {
    font-size: 16px;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-try-free {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-try-free:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.btn-get-quote {
    background-color: white;
    color: #2c3e50;
    border: 2px solid #e0e0e0;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-get-quote:hover {
    background-color: #f8f9fa;
    border-color: #bdc3c7;
    transform: translateY(-2px);
}

/* Responsive for How It Works */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 50px 20px;
    }
    
    .how-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .intro-text,
    .closing-text {
        font-size: 14px;
    }
    
    .steps-list {
        font-size: 14px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-try-free,
    .btn-get-quote {
        width: 100%;
        max-width: 300px;
    }
}

/* Video Section */
.video-section {
    padding: 80px 20px;
    background-color: white;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
}

.video-section-title {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

.video-section-description {
    font-size: 16px;
    color: #5a6c7d;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Video Carousel */
.video-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.video-slide-container {
    position: relative;
}

.video-slide {
    display: none;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background-color: #2c3e50;
}

.video-slide.video-active-slide {
    display: block;
}

.video-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: white;
    color: #2c3e50;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.video-content {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 5;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-text-overlay {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
}

.video-text-overlay h3 {
    font-size: 48px;
    font-weight: 300;
    color: white;
    text-align: right;
    line-height: 1.2;
    letter-spacing: 4px;
    margin: 0;
}

.video-text-overlay .highlight {
    font-weight: 700;
    font-size: 56px;
}

.nav-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-arrow:hover {
    background-color: #f8f9fa;
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow svg {
    width: 24px;
    height: 24px;
}

/* Video Dots */
.video-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.video-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-dot:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.video-dot.active-dot {
    background-color: #2c3e50;
    width: 12px;
    height: 12px;
}

/* Responsive for Video Section */
@media (max-width: 1024px) {
    .video-content {
        height: 400px;
    }
    
    .video-text-overlay {
        right: 50px;
    }
    
    .video-text-overlay h3 {
        font-size: 36px;
    }
    
    .video-text-overlay .highlight {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 50px 20px;
    }
    
    .video-section-title {
        font-size: 24px;
    }
    
    .video-section-description {
        font-size: 14px;
    }
    
    .video-content {
        height: 300px;
    }
    
    .video-text-overlay {
        right: 30px;
    }
    
    .video-text-overlay h3 {
        font-size: 24px;
    }
    
    .video-text-overlay .highlight {
        font-size: 28px;
    }
    
    .play-button svg {
        width: 60px;
        height: 60px;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .video-counter {
        font-size: 12px;
        padding: 6px 15px;
    }
}

/* Statistics Section */
.stats-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Years Column */
.years-column {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.years-number {
    font-size: 180px;
    font-weight: 900;
    color: #4AB5A8;
    line-height: 0.9;
    letter-spacing: -5px;
}

.years-info {
    flex: 1;
    padding-top: 20px;
}

.years-title {
    font-size: 16px;
    font-weight: 700;
    color: #5a6c7d;
    line-height: 1.4;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.years-description {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.get-in-touch-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.get-in-touch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: #4AB5A8;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #5a6c7d;
    line-height: 1.4;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Partners Section */
.partners-section {
    padding: 60px 20px;
    background-color: white;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo-svg {
    width: 100%;
    height: auto;
    max-width: 120px;
}

/* Responsive for Stats Section */
@media (max-width: 1024px) {
    .stats-content {
        gap: 50px;
    }
    
    .years-number {
        font-size: 140px;
    }
    
    .stats-grid {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 50px 20px;
    }
    
    .stats-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .years-column {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .years-number {
        font-size: 100px;
    }
    
    .years-title {
        font-size: 14px;
    }
    
    .years-description {
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .partners-section {
        padding: 40px 20px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    
    .partner-logo {
        padding: 10px;
    }
    
    .logo-svg {
        max-width: 100px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-title {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.4;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-arrow {
    width: 50px;
    height: 50px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.testimonial-arrow:hover {
    background-color: #f8f9fa;
    border-color: #bdc3c7;
    transform: scale(1.1);
}

.testimonial-arrow svg {
    width: 24px;
    height: 24px;
}

.testimonial-slides {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active-testimonial {
    display: flex;
    opacity: 1;
    gap: 40px;
    align-items: flex-start;
}

/* Testimonial Image */
.testimonial-image {
    flex-shrink: 0;
}

.testimonial-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonial Content */
.testimonial-content {
    flex: 1;
    padding-top: 10px;
}

.customer-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.rating-date {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 18px;
    color: #f39c12;
}

.star.filled {
    color: #f39c12;
}

.star.empty {
    color: #e0e0e0;
}

.rating-text {
    font-size: 14px;
    color: #5a6c7d;
    font-weight: 600;
}

.review-date {
    font-size: 14px;
    color: #7f8c8d;
}

.testimonial-text {
    line-height: 1.8;
}

.testimonial-text p {
    font-size: 15px;
    color: #5a6c7d;
    margin: 0 0 15px 0;
}

.testimonial-text p:last-child {
    margin-bottom: 0;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.testimonial-dot.active-testimonial-dot {
    background-color: #2c3e50;
    width: 12px;
    height: 12px;
}

/* Responsive for Testimonials */
@media (max-width: 1024px) {
    .testimonials-title {
        font-size: 26px;
    }
    
    .testimonial-slide.active-testimonial {
        gap: 30px;
    }
    
    .testimonial-image img {
        width: 150px;
        height: 150px;
    }
    
    .customer-name {
        font-size: 16px;
    }
    
    .testimonial-text p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 20px;
    }
    
    .testimonials-title {
        font-size: 20px;
        margin-bottom: 40px;
    }
    
    .testimonials-carousel {
        gap: 15px;
    }
    
    .testimonial-arrow {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .testimonial-slide.active-testimonial {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    
    .testimonial-image img {
        width: 120px;
        height: 120px;
    }
    
    .rating-date {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .customer-name {
        font-size: 15px;
    }
    
    .testimonial-text p {
        font-size: 13px;
    }
    
    .stars {
        font-size: 16px;
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 20px;
    background-color: white;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-title {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

.portfolio-description {
    font-size: 16px;
    color: #5a6c7d;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-item.large {
    grid-column: span 1;
}

.portfolio-item.medium {
    grid-column: span 1;
    grid-row: span 1;
}

.portfolio-item.small {
    grid-column: span 1;
}

.portfolio-item.counter-box {
    background: #f0f0f0;
    display: block;
    padding: 0;
}

.mini-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 50% 50%;
    width: 100%;
    height: 100%;
    gap: 0;
    background: #fff;
    overflow: hidden;
}

.mini-grid img, .empty-mini {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    border: 0.5px solid rgba(255,255,255,0.2);
}

.empty-mini {
    background: #f5f5f5;
}

.more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    transition: background 0.3s ease;
}

.portfolio-item.counter-box:hover .more-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.more-text {
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.more-count {
    font-size: 72px;
    font-weight: 700;
    color: white;
}

/* Portfolio Buttons */
.portfolio-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-more-samples,
.btn-view-prices {
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #d4a574;
}

.btn-more-samples {
    background-color: white;
    color: #d4a574;
}

.btn-more-samples:hover {
    background-color: #d4a574;
    color: white;
    transform: translateY(-2px);
}

.btn-view-prices {
    background-color: white;
    color: #d4a574;
}

.btn-view-prices:hover {
    background-color: #d4a574;
    color: white;
    transform: translateY(-2px);
}

/* Portfolio Lightbox Styles */
.portfolio-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px;
}

.portfolio-modal {
    position: relative;
    max-width: 1100px;
    width: 90%;
    background: white;
    border-radius: 12px;
    padding: 10px 10px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.before-after-header {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
    padding: 0;
}

.before-after-header .comparison-label {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    text-align: center;
    flex: 1;
    margin: 0;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-comparison {
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
    background: #f0f0f0;
}

.comparison-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #000;
    overflow: hidden;
}

.comparison-image {
    max-width: 100%;
    width: 100%;
    max-height: 70vh;
    height: auto;
    object-fit: contain;
    border-radius: 0;
}

.portfolio-lightbox-close {
    position: fixed;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
    border-radius: 50%;
}

.portfolio-lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.portfolio-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #333;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.portfolio-prev {
    left: -18px;
}

.portfolio-next {
    right: -18px;
}

.portfolio-nav-btn svg {
    stroke: #333;
    width: 20px;
    height: 20px;
    display: block;
}

.portfolio-nav-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.portfolio-counter {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.portfolio-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.25);
    padding: 4px 10px;
    border-radius: 20px;
}

.portfolio-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-dot.active {
    background: white;
    transform: scale(1.3);
}

.portfolio-dot:hover {
    background: #999;
}

.portfolio-clickable {
    cursor: pointer;
}

/* Responsive Portfolio Lightbox */
@media (max-width: 1024px) {
    .portfolio-modal {
        width: 95%;
        padding: 30px 15px 50px;
    }
    
    .portfolio-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .portfolio-prev {
        left: -15px;
    }
    
    .portfolio-next {
        right: -15px;
    }
}

@media (max-width: 768px) {
    .portfolio-modal {
        padding: 10px 10px 20px;
        width: 95%;
    }
    
    .portfolio-comparison {
        flex-direction: row; /* Keep side-by-side */
    }
    
    .before-after-header {
        display: flex;
    }
    
    .before-after-header .comparison-label {
        font-size: 12px;
    }
    
    .portfolio-nav-btn {
        width: 36px;
        height: 36px;
    }
    
    .portfolio-prev {
        left: 5px;
    }
    
    .portfolio-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .portfolio-modal {
        width: 98%;
        padding: 10px 5px 15px;
    }
    
    .before-after-header .comparison-label {
        font-size: 10px;
    }
    
    .portfolio-comparison {
        gap: 2px;
    }
    
    .portfolio-nav-btn {
        width: 32px;
        height: 32px;
    }
}

/* Before/After Lightbox - Modal Style */
.before-after-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.before-after-lightbox.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}

.modal-container {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 1100px;
    width: 90%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.modal-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    gap: 20px;
}

.modal-label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
    text-align: center;
}

.images-container {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

.comparison-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f9fa;
}

.comparison-images {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.comparison-after,
.comparison-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-before-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    cursor: ew-resize;
    z-index: 3;
    transform: translateX(-50%);
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.slider-button:hover {
    background: rgba(0, 0, 0, 0.85);
}

.slider-button svg {
    width: 20px;
    height: 20px;
}

.slider-button svg:first-child {
    margin-right: -8px;
}

.slider-button svg:last-child {
    margin-left: -8px;
}


.modal-counter {
    text-align: center;
    font-size: 14px;
    color: #718096;
    font-weight: 500;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f0;
    border: none;
    color: #2c3e50;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.modal-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    color: #2c3e50;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-prev {
    left: -25px;
}

.modal-next {
    right: -25px;
}

.modal-prev:hover,
.modal-next:hover {
    background: #f8f9fa;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ==============================
   Package Images Lightbox Styles
   ============================== */

.package-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.package-lightbox.active {
    display: flex;
}

.package-modal {
    max-width: 1200px;
    width: 95%;
}

.package-modal-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.side-by-side-comparison {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 20px;
}

.comparison-column {
    flex: 1;
    max-width: 500px;
}

.comparison-label {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.package-comparison-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: block;
    object-fit: cover;
}

.package-image-clickable {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-image-clickable:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive for Package Lightbox */
@media (max-width: 768px) {
    .package-modal {
        width: 95%;
        max-width: 100%;
    }
    
    .package-modal-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .side-by-side-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .comparison-column {
        max-width: 100%;
    }
    
    .comparison-label {
        font-size: 16px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .package-modal-title {
        font-size: 18px;
    }
    
    .comparison-label {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .side-by-side-comparison {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-content {
        padding: 20px 15px;
    }
    
    .comparison-images {
        height: 350px;
    }
    
    .slider-button {
        width: 50px;
        height: 50px;
    }
    
    .modal-prev {
        left: 10px;
        width: 40px;
        height: 40px;
    }
    
    .modal-next {
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .modal-header {
        margin-bottom: 15px;
    }
    
    .modal-label {
        font-size: 14px;
    }
}

/* Worldwide Services Section */
.worldwide-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.worldwide-container {
    max-width: 1200px;
    margin: 0 auto;
}

.worldwide-title {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

.worldwide-description {
    font-size: 16px;
    color: #5a6c7d;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Countries Grid */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.country-item {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.country-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.country-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.flag-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.country-name {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.country-content {
    position: relative;
}

.country-content p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0;
}

.expand-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: transparent;
    border: none;
    color: #f39c12;
    font-size: 14px;
    cursor: pointer;
    padding: 5px 10px;
    transition: transform 0.3s ease;
}

.expand-btn:hover {
    transform: scale(1.2);
}

/* Responsive for Portfolio */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .portfolio-item {
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 768px) {
    .portfolio-section,
    .worldwide-section {
        padding: 50px 20px;
    }
    
    .portfolio-title,
    .worldwide-title {
        font-size: 24px;
    }
    
    .portfolio-description,
    .worldwide-description {
        font-size: 14px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .portfolio-item.large,
    .portfolio-item.medium,
    .portfolio-item.small,
    .portfolio-item.counter-box {
        height: auto;
        aspect-ratio: 1 / 1;
        grid-row: span 1;
    }
    
    .more-count {
        font-size: 56px;
    }
    
    .portfolio-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-more-samples,
    .btn-view-prices {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .country-item {
        padding: 20px;
    }
    
    .country-name {
        font-size: 18px;
    }
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background-color: white;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-title {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
}

.about-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 40px;
}

.about-content {
    margin-bottom: 50px;
}

.about-text {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.about-text strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 80px;
    margin-bottom: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 53px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #f39c12, #4AB5A8);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.timeline-year {
    position: absolute;
    left: -80px;
    top: 0;
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    width: 60px;
    text-align: right;
}

.timeline-dot {
    position: absolute;
    left: -27px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: #f39c12;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #f39c12;
}

.timeline-item.founding .timeline-dot {
    background-color: #4AB5A8;
    box-shadow: 0 0 0 2px #4AB5A8;
    width: 16px;
    height: 16px;
    left: -29px;
}

.timeline-content {
    padding-left: 20px;
}

.timeline-title {
    font-size: 16px;
    color: #5a6c7d;
    margin: 0 0 10px 0;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.timeline-title:hover {
    color: #2c3e50;
}

.expand-icon {
    color: #f39c12;
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.timeline-title.expanded .expand-icon {
    transform: rotate(180deg);
}

.timeline-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.timeline-details.show {
    max-height: 200px;
    margin-top: 10px;
}

.timeline-details p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #f39c12;
}

/* CTA Section */
.cta-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef2 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.cta-text {
    font-size: 16px;
    color: #5a6c7d;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border-color: #f39c12;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.cta-btn-secondary {
    background-color: white;
    color: #2c3e50;
    border-color: #e0e0e0;
}

.cta-btn-secondary:hover {
    background-color: #f8f9fa;
    border-color: #bdc3c7;
    transform: translateY(-2px);
}

/* Responsive for About Section */
@media (max-width: 1024px) {
    .about-title {
        font-size: 28px;
    }
    
    .timeline {
        padding-left: 70px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 20px;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .about-subtitle {
        font-size: 16px;
    }
    
    .about-text {
        font-size: 14px;
        text-align: left;
    }
    
    .timeline {
        padding-left: 60px;
    }
    
    .timeline::before {
        left: 43px;
    }
    
    .timeline-year {
        left: -60px;
        width: 50px;
        font-size: 16px;
    }
    
    .timeline-dot {
        left: -17px;
    }
    
    .timeline-item.founding .timeline-dot {
        left: -19px;
    }
    
    .timeline-title {
        font-size: 14px;
    }
    
    .cta-section {
        flex-direction: column;
        gap: 25px;
        padding: 30px 20px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 18px;
    }
    
    .cta-text {
        font-size: 14px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Customer Feedback Section */
.feedback-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.feedback-container {
    max-width: 1200px;
    margin: 0 auto;
}

.feedback-title {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
}

.feedback-subtitle {
    font-size: 16px;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Reviews Header */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.reviews-summary {
    flex: 1;
}

.reviews-count {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars-large {
    display: flex;
    gap: 3px;
}

.star-large {
    font-size: 24px;
    color: #f39c12;
}

.star-large.half {
    position: relative;
    color: #e0e0e0;
}

.star-large.half::before {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #f39c12;
}

.rating-number {
    font-size: 14px;
    color: #5a6c7d;
}

.write-review-link {
    color: #5a6c7d;
    text-decoration: underline;
    font-size: 15px;
    transition: color 0.3s ease;
}

.write-review-link:hover {
    color: #2c3e50;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Review Header */
.review-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.avatar.pink {
    background: linear-gradient(135deg, #ff6b9d, #c94277);
}

.avatar.purple {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

.avatar.red {
    background: linear-gradient(135deg, #f87171, #dc2626);
}

.avatar.yellow {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.avatar.blue {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.avatar.teal {
    background: linear-gradient(135deg, #2dd4bf, #14b8a6);
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.stars-small {
    display: flex;
    gap: 2px;
}

.star-small {
    font-size: 14px;
    color: #f39c12;
}

.rating-text {
    font-size: 13px;
    color: #5a6c7d;
    font-weight: 600;
}

.review-date {
    font-size: 13px;
    color: #7f8c8d;
}

/* Review Content */
.review-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.review-text {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0;
}

/* Load More */
.load-more {
    text-align: center;
}

.load-more-link {
    display: inline-block;
    color: #7f8c8d;
    text-decoration: underline;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 10px 20px;
}

.load-more-link:hover {
    color: #2c3e50;
}

/* Responsive for Feedback Section */
@media (max-width: 1024px) {
    .reviews-grid {
        gap: 25px;
    }
    
    .review-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .feedback-section {
        padding: 50px 20px;
    }
    
    .feedback-title {
        font-size: 24px;
    }
    
    .feedback-subtitle {
        font-size: 14px;
    }
    
    .reviews-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .reviews-count {
        font-size: 20px;
    }
    
    .overall-rating {
        justify-content: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-header {
        gap: 12px;
    }
    
    .avatar {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .reviewer-name {
        font-size: 15px;
    }
    
    .review-title {
        font-size: 15px;
    }
    
    .review-text {
        font-size: 13px;
    }
}

/* Portrait Retouching Hero Carousel Styles */
.portrait-hero-carousel {
    background: linear-gradient(135deg, #e8d5d5 0%, #f5e8e8 50%, #f0c9a8 100%);
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.portrait-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    min-height: 600px;
}

.portrait-carousel-slides {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.portrait-slide {
    display: none;
    grid-template-columns: 300px 1fr 200px;
    gap: 30px;
    padding: 60px 40px;
    align-items: center;
    min-height: 600px;
}

.portrait-slide.portrait-active {
    display: grid;
}

.portrait-slide-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.portrait-service-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.portrait-service-price {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.5px;
}

.portrait-badges {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.portrait-badge svg {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.portrait-before-after {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.portrait-image-container {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.portrait-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portrait-label {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.portrait-service-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: right;
}

.portrait-highlight-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    text-align: center;
}

.portrait-highlight-price {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-align: center;
}

.portrait-highlight-badge svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.portrait-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.portrait-prev-arrow {
    left: 20px;
}

.portrait-next-arrow {
    right: 20px;
}

.portrait-carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.portrait-carousel-counter {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.portrait-carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.portrait-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.portrait-dot-active {
    background: rgba(0, 0, 0, 0.7);
    width: 12px;
    height: 12px;
}

.portrait-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Headshot Upload Section */
.headshot-upload-section {
    background: #ffffff;
    padding: 80px 20px;
}

.headshot-upload-container {
    max-width: 1200px;
    margin: 0 auto;
}

.headshot-upload-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.headshot-upload-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.upload-box {
    max-width: 800px;
    margin: 0 auto;
}

.upload-area {
    border: 3px dashed #ddd;
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    background: #fafafa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area:hover {
    border-color: #ff9933;
    background: #fff8f0;
}

.upload-area.drag-over {
    border-color: #ff9933;
    background: #fff8f0;
}

.upload-button {
    background: linear-gradient(135deg, #ffb84d 0%, #ff9933 50%, #ff8c1a 100%);
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 140, 26, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.upload-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 26, 0.4);
}

.upload-button svg {
    width: 24px;
    height: 24px;
}

.upload-hint {
    font-size: 15px;
    color: #999;
    margin: 0;
}

/* Responsive Headshot Upload Section */
@media (max-width: 768px) {
    .headshot-upload-section {
        padding: 50px 20px;
    }
    
    .headshot-upload-title {
        font-size: 26px;
    }
    
    .headshot-upload-description {
        font-size: 15px;
        margin-bottom: 35px;
    }
    
    .upload-area {
        padding: 60px 30px;
    }
    
    .upload-button {
        padding: 16px 40px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .headshot-upload-title {
        font-size: 22px;
    }
    
    .headshot-upload-description {
        font-size: 14px;
    }
    
    .upload-area {
        padding: 50px 20px;
    }
    
    .upload-button {
        padding: 14px 35px;
        font-size: 14px;
    }
    
    .upload-hint {
        font-size: 13px;
    }
}

/* Headshot Services We Provide Section */
.headshot-services-provide-section {
    background: #f9f9f9;
    padding: 80px 20px;
}

.headshot-services-provide-container {
    max-width: 1200px;
    margin: 0 auto;
}

.headshot-services-provide-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 50px;
    text-align: center;
}

.headshot-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.headshot-service-item {
    background: white;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.headshot-service-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding: 20px 25px 10px;
    line-height: 1.5;
}

.headshot-service-name .bullet {
    color: #666;
    margin-right: 5px;
}

.headshot-service-description {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    padding: 0 25px 20px;
}

.before-after-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image {
    clip-path: inset(0 50% 0 0);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
}

.slider-line {
    flex: 1;
    width: 4px;
    background: white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.slider-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    cursor: ew-resize;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.slider-button svg {
    display: block;
}

.before-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    z-index: 5;
}

/* Responsive Headshot Services Provide */
@media (max-width: 1024px) {
    .headshot-services-grid {
        gap: 30px;
    }
    
    .before-after-slider {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .headshot-services-provide-section {
        padding: 50px 20px;
    }
    
    .headshot-services-provide-title {
        font-size: 24px;
        margin-bottom: 35px;
    }
    
    .headshot-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .headshot-service-name {
        font-size: 15px;
        padding: 18px 20px 8px;
    }
    
    .headshot-service-description {
        font-size: 13px;
        padding: 0 20px 18px;
    }
    
    .before-after-slider {
        height: 280px;
    }
    
    .slider-button {
        width: 35px;
        height: 35px;
    }
    
    .slider-button svg {
        width: 26px;
        height: 26px;
    }
    
    .before-label {
        bottom: 15px;
        top: auto;
        left: 15px;
        font-size: 12px;
        padding: 5px 14px;
    }
}

@media (max-width: 480px) {
    .headshot-services-provide-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .headshot-service-name {
        font-size: 14px;
        padding: 15px 18px 8px;
    }
    
    .headshot-service-description {
        font-size: 12px;
        padding: 0 18px 15px;
    }
    
    .before-after-slider {
        height: 250px;
    }
    
    .slider-button {
        width: 32px;
        height: 32px;
    }
    
    .slider-button svg {
        width: 24px;
        height: 24px;
    }
}

/* Service Content Section */
.service-content-section {
    background: white;
    padding: 80px 20px;
}

.service-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-content-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-content-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-box h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.cta-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
}

/* Responsive Portrait Carousel */
@media (max-width: 1200px) {
    .portrait-slide {
        grid-template-columns: 250px 1fr 180px;
        gap: 20px;
        padding: 50px 30px;
    }
    
    .portrait-service-title {
        font-size: 36px;
    }
    
    .portrait-image-container {
        width: 350px;
        height: 450px;
    }
    
    .portrait-highlight-title {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .portrait-slide {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .portrait-slide-info {
        text-align: center;
        align-items: center;
    }
    
    .portrait-service-title {
        font-size: 32px;
    }
    
    .portrait-before-after {
        order: 2;
    }
    
    .portrait-service-highlight {
        order: 3;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .portrait-hero-carousel {
        min-height: auto;
    }
    
    .portrait-carousel-container {
        min-height: auto;
    }
    
    .portrait-carousel-slides {
        min-height: auto;
    }
    
    .portrait-slide {
        min-height: auto;
        padding: 30px 15px;
    }
    
    .portrait-service-title {
        font-size: 28px;
    }
    
    .portrait-service-price {
        font-size: 12px;
    }
    
    .portrait-before-after {
        flex-direction: column;
        gap: 15px;
    }
    
    .portrait-image-container {
        width: 100%;
        max-width: 400px;
        height: 450px;
    }
    
    .portrait-badges {
        justify-content: center;
    }
    
    .portrait-badge svg {
        width: 50px;
        height: 50px;
    }
    
    .portrait-highlight-title {
        font-size: 24px;
    }
    
    .portrait-highlight-badge svg {
        width: 60px;
        height: 60px;
    }
    
    .portrait-carousel-arrow {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .portrait-prev-arrow {
        left: 10px;
    }
    
    .portrait-next-arrow {
        right: 10px;
    }
    
    .portrait-carousel-counter {
        top: 15px;
        right: 15px;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .portrait-carousel-dots {
        bottom: 20px;
        gap: 6px;
    }
    
    .portrait-dot {
        width: 8px;
        height: 8px;
    }
    
    .portrait-dot-active {
        width: 10px;
        height: 10px;
    }
    
    .service-content-section {
        padding: 50px 20px;
    }
    
    .service-content-title {
        font-size: 28px;
    }
    
    .service-content-description {
        font-size: 16px;
    }
    
    .service-features {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .portrait-service-title {
        font-size: 24px;
    }
    
    .portrait-image-container {
        height: 400px;
    }
    
    .portrait-label {
        font-size: 12px;
        padding: 6px 18px;
    }
    
    .portrait-highlight-title {
        font-size: 20px;
    }
    
    .service-content-title {
        font-size: 24px;
    }
    
    .feature-box {
        padding: 20px;
    }
    
    .feature-box h3 {
        font-size: 18px;
    }
    
    .feature-box p {
        font-size: 14px;
    }
}

/* How Does It Work Section */
.how-does-it-work-section {
    background: #ffffff;
    padding: 80px 20px;
}

.how-does-it-work-container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-does-it-work-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
}

.work-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.work-step-item {
    text-align: center;
}

.work-step-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.work-step-number {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 28px;
    height: 28px;
    background: #ff9933;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
}

.work-step-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.work-step-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

.work-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.btn-try-free {
    background: #ff9933;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
    min-width: 160px;
    text-align: center;
}

.btn-try-free:hover {
    background: #ff8c1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 153, 51, 0.4);
}

.btn-get-quote {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    text-align: center;
}

.btn-get-quote:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
}

.work-description {
    max-width: 1000px;
    margin: 0 auto;
}

.work-desc-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.work-desc-text:last-child {
    margin-bottom: 0;
}

/* Responsive How Does It Work */
@media (max-width: 1024px) {
    .work-steps-grid {
        gap: 30px;
    }
    
    .work-step-icon {
        width: 90px;
        height: 90px;
    }
    
    .work-step-title {
        font-size: 15px;
    }
    
    .work-cta-buttons {
        gap: 15px;
        padding: 0 20px;
    }
    
    .btn-try-free,
    .btn-get-quote {
        padding: 13px 35px;
        font-size: 15px;
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .how-does-it-work-section {
        padding: 60px 20px;
    }
    
    .how-does-it-work-title {
        font-size: 28px;
        margin-bottom: 45px;
    }
    
    .work-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        margin-bottom: 40px;
    }
    
    .work-step-icon {
        width: 80px;
        height: 80px;
    }
    
    .work-step-number {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }
    
    .work-step-title {
        font-size: 14px;
    }
    
    .work-cta-buttons {
        margin-bottom: 35px;
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
        gap: 12px;
    }
    
    .btn-try-free,
    .btn-get-quote {
        padding: 13px 40px;
        font-size: 15px;
        width: 100%;
        max-width: 320px;
        text-align: center;
        white-space: nowrap;
    }
    
    .work-desc-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .how-does-it-work-section {
        padding: 50px 20px;
    }
    
    .how-does-it-work-title {
        font-size: 24px;
        margin-bottom: 35px;
    }
    
    .work-steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 35px;
    }
    
    .work-step-icon {
        width: 70px;
        height: 70px;
    }
    
    .work-step-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .work-step-title {
        font-size: 14px;
    }
    
    .work-cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .btn-try-free,
    .btn-get-quote {
        width: 100%;
        max-width: 300px;
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .work-desc-text {
        font-size: 13px;
        text-align: left;
    }
}

/* Headshot Pricing Section */
.headshot-pricing-section {
    background: #f8f8f8;
    padding: 80px 20px;
}

.headshot-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.headshot-pricing-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.pricing-card-header {
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.pricing-level {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0;
}

.pricing-images {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.pricing-images img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    object-fit: cover;
    border: 2px solid #e0e0e0;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 20px;
}

.price-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.price-unit {
    display: block;
    font-size: 14px;
    color: #666;
}

.btn-view-examples {
    background: transparent;
    color: #333;
    border: 2px solid #ddd;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    width: 100%;
}

.btn-view-examples:hover {
    border-color: #999;
    color: #000;
}

.services-list {
    margin-bottom: 25px;
    flex-grow: 1;
}

.services-heading {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.services-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-items li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.services-items li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.btn-order-now {
    background: linear-gradient(135deg, #ffb84d 0%, #ff9933 50%, #ff8c1a 100%);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
    width: 100%;
}

.btn-order-now:hover {
    background: linear-gradient(135deg, #ff9933 0%, #ff8c1a 50%, #ff7a00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 153, 51, 0.4);
}

/* Responsive Pricing Section */
@media (max-width: 900px) {
    .pricing-cards-grid {
        gap: 30px;
    }
    
    .pricing-card {
        padding: 25px;
    }
    
    .pricing-images img {
        width: 70px;
        height: 70px;
    }
    
    .price-value {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .headshot-pricing-section {
        padding: 60px 20px;
    }
    
    .headshot-pricing-title {
        font-size: 28px;
        margin-bottom: 45px;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .headshot-pricing-section {
        padding: 50px 15px;
    }
    
    .headshot-pricing-title {
        font-size: 24px;
        margin-bottom: 35px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .pricing-level {
        font-size: 22px;
    }
    
    .pricing-images {
        gap: 10px;
    }
    
    .pricing-images img {
        width: 60px;
        height: 60px;
    }
    
    .price-value {
        font-size: 26px;
    }
    
    .btn-view-examples,
    .btn-order-now {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .services-items li {
        font-size: 13px;
    }
}

/* Pricing Image Click Cursor */
.pricing-img-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-img-clickable:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Pricing Lightbox Modal */
.pricing-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
    overflow: hidden;
}

.pricing-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-close-btn {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: #333;
    background: white;
    border: none;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-close-btn:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}

.pricing-lightbox-content {
    position: relative;
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pricing-before-after-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background: white;
    padding: 12px 0;
    border-radius: 8px 8px 0 0;
}

.pricing-comparison-label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: center;
    flex: 1;
}

.pricing-comparison {
    display: flex;
    gap: 0;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    background: white;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.pricing-comparison-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.pricing-comparison-side img {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 150px);
    object-fit: cover;
    display: block;
}

.pricing-nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    color: #333;
    border: none;
    padding: 0;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10002;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-nav-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-50%) scale(1.15);
}

.pricing-prev-btn {
    left: 30px;
}

.pricing-next-btn {
    right: 30px;
}

.pricing-counter {
    position: fixed;
    top: 20px;
    right: 90px;
    background-color: white;
    color: #333;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    z-index: 10002;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive Pricing Lightbox */
@media (max-width: 1024px) {
    .pricing-lightbox-content {
        padding: 15px;
    }
    
    .pricing-comparison-label {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .pricing-lightbox-content {
        padding: 15px;
    }
    
    .pricing-before-after-header {
        padding: 10px 0;
    }
    
    .pricing-comparison-label {
        font-size: 15px;
    }
    
    .pricing-comparison {
        flex-direction: column;
        border-radius: 0 0 8px 8px;
    }
    
    .pricing-comparison-side {
        width: 100%;
    }
    
    .pricing-comparison-side img {
        max-height: 35vh;
        object-fit: contain;
    }
    
    .pricing-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .pricing-prev-btn {
        left: 15px;
    }
    
    .pricing-next-btn {
        right: 15px;
    }
    
    .pricing-close-btn {
        top: 15px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .pricing-counter {
        top: 15px;
        right: 65px;
        font-size: 13px;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .pricing-lightbox-content {
        padding: 10px;
    }
    
    .pricing-before-after-header {
        padding: 8px 0;
    }
    
    .pricing-comparison-label {
        font-size: 13px;
    }
    
    .pricing-comparison-side img {
        max-height: 30vh;
    }
    
    .pricing-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .pricing-prev-btn {
        left: 10px;
    }
    
    .pricing-next-btn {
        right: 10px;
    }
    
    .pricing-close-btn {
        top: 10px;
        right: 10px;
        font-size: 26px;
        width: 36px;
        height: 36px;
    }
    
    .pricing-counter {
        top: 10px;
        right: 55px;
        font-size: 12px;
        padding: 5px 12px;
    }
}

/* Bulk Services Section */
.bulk-services-section {
    background: #f8f8f8;
    padding: 80px 20px;
}

.bulk-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.bulk-services-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
}

.bulk-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.bulk-service-card {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 30px;
}

.bulk-service-icon {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bulk-service-icon svg {
    display: block;
}

.bulk-discount-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    padding: 8px 12px;
    border: 2px solid #333;
    border-radius: 6px;
    background: white;
}

.bulk-discount-percent {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

.bulk-discount-text {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.bulk-service-content {
    flex: 1;
}

.bulk-service-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.bulk-service-description strong {
    color: #333;
    font-weight: 600;
}

/* Responsive Bulk Services */
@media (max-width: 900px) {
    .bulk-services-grid {
        gap: 30px;
    }
    
    .bulk-service-card {
        padding: 35px;
        gap: 25px;
    }
    
    .bulk-discount-percent {
        font-size: 26px;
    }
    
    .bulk-discount-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .bulk-services-section {
        padding: 60px 20px;
    }
    
    .bulk-services-title {
        font-size: 28px;
        margin-bottom: 45px;
    }
    
    .bulk-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .bulk-service-card {
        max-width: 500px;
        margin: 0 auto;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .bulk-services-section {
        padding: 50px 15px;
    }
    
    .bulk-services-title {
        font-size: 24px;
        margin-bottom: 35px;
    }
    
    .bulk-service-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        gap: 20px;
    }
    
    .bulk-service-icon svg {
        width: 70px;
        height: 60px;
    }
    
    .bulk-discount-percent {
        font-size: 24px;
    }
    
    .bulk-discount-text {
        font-size: 15px;
    }
    
    .bulk-service-description {
        font-size: 14px;
    }
}

/* Editing Showcase Sections */
.editing-showcase-section {
    background: white;
    padding: 80px 20px;
}

.editing-showcase-section.editing-showcase-alt {
    background: #f8f8f8;
}

.editing-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}

.editing-showcase-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
}

.editing-showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.editing-showcase-content.editing-showcase-reverse {
    direction: rtl;
}

.editing-showcase-content.editing-showcase-reverse > * {
    direction: ltr;
}

.editing-showcase-image {
    position: relative;
}

.editing-before-after-slider {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.editing-slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
    cursor: ew-resize;
    user-select: none;
}

.editing-img-before,
.editing-img-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editing-img-after {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.editing-slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 2;
}

.editing-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 3;
}

.editing-slider-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.editing-try-free-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffb84d 0%, #ff9933 50%, #ff8c1a 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
    letter-spacing: 1px;
}

.editing-try-free-btn:hover {
    background: linear-gradient(135deg, #ff9933 0%, #ff8c1a 50%, #ff7a00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 153, 51, 0.4);
}

.editing-showcase-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.editing-info-text {
    color: #555;
    line-height: 1.8;
}

.editing-info-text p {
    margin-bottom: 20px;
    font-size: 15px;
}

.editing-info-text p:last-child {
    margin-bottom: 0;
}

.editing-pricing-info {
    background: #f5f5f5;
    padding: 15px 20px;
    border-radius: 6px;
}

.editing-level-label {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: 500;
}

.editing-price {
    font-weight: 700;
    color: #ff9933;
}

.editing-services-applied h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.editing-services-applied ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.editing-services-applied ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.editing-services-applied ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff9933;
    font-weight: bold;
    font-size: 18px;
}

/* Responsive Editing Showcase */
@media (max-width: 1024px) {
    .editing-showcase-content {
        gap: 40px;
    }
    
    .editing-slider-container {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .editing-showcase-section {
        padding: 60px 20px;
    }
    
    .editing-showcase-title {
        font-size: 28px;
        margin-bottom: 45px;
    }
    
    .editing-showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .editing-showcase-content.editing-showcase-reverse {
        direction: ltr;
    }
    
    .editing-slider-container {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .editing-showcase-section {
        padding: 50px 15px;
    }
    
    .editing-showcase-title {
        font-size: 24px;
        margin-bottom: 35px;
    }
    
    .editing-showcase-content {
        gap: 30px;
    }
    
    .editing-slider-container {
        height: 400px;
    }
    
    .editing-slider-circle {
        width: 40px;
        height: 40px;
    }
    
    .editing-slider-circle svg {
        width: 20px;
        height: 20px;
    }
    
    .editing-try-free-btn {
        padding: 14px;
        font-size: 15px;
    }
    
    .editing-info-text p {
        font-size: 14px;
    }
    
    .editing-services-applied ul li {
        font-size: 13px;
    }
}

/* Reviews Section */
.reviews-section {
    background: #f8f8f8;
    padding: 80px 20px;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-main-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.reviews-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reviews-count {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-stars {
    display: flex;
    gap: 2px;
}

.star-icon {
    font-size: 22px;
    color: #ddd;
}

.star-icon.filled {
    color: #ff9933;
}

.star-icon.half {
    background: linear-gradient(90deg, #ff9933 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-rating-text {
    font-size: 15px;
    color: #666;
}

.write-review-link {
    color: #666;
    text-decoration: underline;
    font-size: 15px;
    transition: color 0.3s ease;
}

.write-review-link:hover {
    color: #ff9933;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.review-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.review-avatar-pink {
    background: #e91e63;
}

.review-avatar-yellow {
    background: #f9a825;
}

.review-avatar-green {
    background: #66bb6a;
}

.review-avatar-teal {
    background: #26a69a;
}

.review-avatar-purple {
    background: #9575cd;
}

.review-avatar-orange {
    background: #ff9933;
}

.review-user-info {
    flex: 1;
}

.review-user-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.review-stars-small {
    display: flex;
    align-items: center;
    gap: 2px;
}

.star-small {
    font-size: 14px;
    color: #ddd;
}

.star-small.filled {
    color: #ff9933;
}

.star-small.empty {
    color: #ddd;
}

.review-rating-value {
    font-size: 13px;
    color: #666;
    margin-left: 3px;
}

.review-date {
    font-size: 13px;
    color: #999;
}

.review-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.load-more-link {
    display: block;
    text-align: center;
    color: #666;
    text-decoration: underline;
    font-size: 15px;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.load-more-link:hover {
    color: #ff9933;
}

.reviews-breadcrumb {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.reviews-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.reviews-breadcrumb a:hover {
    color: #ff9933;
    text-decoration: underline;
}

/* Responsive Reviews Section */
@media (max-width: 1024px) {
    .reviews-grid {
        gap: 25px;
    }
    
    .review-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 20px;
    }
    
    .reviews-main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .reviews-count {
        font-size: 22px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 50px 15px;
    }
    
    .reviews-main-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .reviews-count {
        font-size: 20px;
    }
    
    .star-icon {
        font-size: 20px;
    }
    
    .reviews-rating-text {
        font-size: 14px;
    }
    
    .review-card {
        padding: 18px;
    }
    
    .review-avatar {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .review-user-name {
        font-size: 15px;
    }
    
    .review-title {
        font-size: 14px;
    }
    
    .review-text {
        font-size: 13px;
    }
}

/* Examples Gallery Section */
.examples-gallery-section {
    background: white;
    padding: 80px 20px;
}

.examples-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.examples-gallery-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
}

.examples-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.example-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.example-item.active {
    box-shadow: 0 0 0 4px #ff9933;
}

.example-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.example-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.example-item:hover img {
    transform: scale(1.05);
}

/* Responsive Examples Gallery */
@media (max-width: 1200px) {
    .examples-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .examples-gallery-section {
        padding: 60px 20px;
    }
    
    .examples-gallery-title {
        font-size: 28px;
        margin-bottom: 45px;
    }
    
    .examples-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .examples-gallery-section {
        padding: 50px 15px;
    }
    
    .examples-gallery-title {
        font-size: 24px;
        margin-bottom: 35px;
    }
    
    .examples-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Example Large Display */
.example-large-display {
    display: none;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
    animation: fadeIn 0.3s ease;
}

.example-large-display.active {
    display: block;
}

.example-large-container {
    max-width: 1200px;
    margin: 0 auto;
}

.example-large-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.example-description {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 0;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .example-large-display {
        margin-top: 30px;
        padding-top: 30px;
    }
}

/* Footer Section */
.footer-section {
    background-color: #3a3a3a;
    color: #d0d0d0;
    padding: 60px 20px 30px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-left,
.footer-right {
    flex: 1;
}

.footer-heading {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 25px 0;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 25px;
    color: #b0b0b0;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d0d0d0;
}

.contact-item i {
    color: #f39c12;
    font-size: 18px;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #2b2b2b;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    background-color: #f39c12;
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
    color: #ffffff;
}

.social-link i {
    font-size: 24px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #2b2b2b;
    border: 1px solid #4a4a4a;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ffa726;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #888;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
    margin-top: 5px;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-text {
    font-size: 13px;
    color: #b0b0b0;
    line-height: 1.5;
}

.privacy-link {
    color: #b0b0b0;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #ffffff;
}

.submit-btn {
    width: fit-content;
    padding: 12px 40px;
    background: linear-gradient(135deg, #ffa726, #ff9800);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 167, 38, 0.4);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #f39c12;
    transform: translateX(8px);
}

/* Languages Section */
.footer-languages {
    padding: 30px 0;
    border-top: 1px solid #4a4a4a;
    margin-bottom: 20px;
}

.languages-label {
    font-size: 15px;
    color: #b0b0b0;
    margin-right: 15px;
    display: inline-block;
    margin-bottom: 10px;
}

.languages-list {
    display: inline;
}

.languages-list a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    margin-right: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 8px;
}

.languages-list a:hover {
    color: #f39c12;
    transform: scale(1.1);
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a4a4a;
}

.footer-copyright p {
    margin: 0;
    font-size: 13px;
    color: #888;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: #5a5a5a;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #6a6a6a;
    transform: translateY(-3px);
}

/* Responsive for Footer */
@media (max-width: 1024px) {
    .footer-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 20px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-heading {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-input,
    .form-textarea {
        padding: 10px 12px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 12px 30px;
    }
    
    .footer-languages {
        padding: 20px 0;
    }
    
    .languages-label {
        display: block;
        margin-bottom: 10px;
    }
    
    .languages-list a {
        margin-right: 12px;
        font-size: 13px;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Examples Page Styles */
.examples-page {
    padding: 60px 20px 80px;
    background-color: #ffffff;
}

.examples-container {
    max-width: 1300px;
    margin: 0 auto;
}

.examples-main-title {
    font-size: 36px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin: 0 0 20px 0;
}

.examples-description {
    font-size: 16px;
    color: #5a6c7d;
    text-align: center;
    line-height: 1.7;
    margin: 0 auto 40px;
    max-width: 900px;
}

.examples-link {
    color: #5a6c7d;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.examples-link:hover {
    color: #2c3e50;
}

/* Category Tabs */
.examples-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #5a6c7d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: #f39c12;
    color: #2c3e50;
}

.tab-btn.active {
    background-color: #2c3e50;
    border-color: #2c3e50;
    color: white;
}

/* Category Info */
.category-info {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 50px;
}

.category-title {
    font-size: 24px;
    font-weight: 400;
    color: #2c3e50;
    margin: 0;
}

.category-price {
    font-weight: 700;
    color: #2c3e50;
}

/* Examples Gallery */
.examples-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.example-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.example-card.large {
    aspect-ratio: 4/5;
}

.example-card.small {
    aspect-ratio: 1/1;
}

.example-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.example-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.example-card:hover .example-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Counter Card */
.counter-card {
    background: linear-gradient(135deg, #e8e8e8, #d4d4d4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-examples {
    text-align: center;
}

.plus-number {
    font-size: 48px;
    font-weight: 300;
    color: #7f8c8d;
}

/* Examples Actions */
.examples-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-examples-primary,
.btn-examples-secondary {
    padding: 14px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-examples-primary {
    background: linear-gradient(135deg, #ffa726, #ff9800);
    color: white;
}

.btn-examples-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 167, 38, 0.4);
}

.btn-examples-secondary {
    background-color: white;
    color: #2c3e50;
    border: 2px solid #e0e0e0;
}

.btn-examples-secondary:hover {
    background-color: #f5f5f5;
    border-color: #bdc3c7;
}

/* Responsive for Examples Page */
@media (max-width: 1024px) {
    .examples-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .examples-page {
        padding: 40px 20px 60px;
    }
    
    .examples-main-title {
        font-size: 28px;
    }
    
    .examples-description {
        font-size: 14px;
    }
    
    .examples-tabs {
        gap: 6px;
    }
    
    .tab-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .category-title {
        font-size: 20px;
    }
    
    .examples-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .example-card.large,
    .example-card.small {
        aspect-ratio: 1/1;
    }
    
    .examples-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-examples-primary,
    .btn-examples-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .examples-main-title {
        font-size: 24px;
    }
    
    .category-title {
        font-size: 18px;
    }
    
    .examples-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .example-card.large,
    .example-card.small {
        aspect-ratio: 1/1;
    }
    
    .tab-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Portfolio Details Section */
.portfolio-details-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.portfolio-details-container {
    max-width: 1100px;
    margin: 0 auto;
}

.portfolio-details-title {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin: 0 0 30px 0;
    line-height: 1.4;
}

.portfolio-subsection-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin: 50px 0 25px 0;
    line-height: 1.4;
}

.portfolio-details-text {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.8;
    margin: 0 0 25px 0;
    text-align: justify;
}

.portfolio-link {
    color: #5a6c7d;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.portfolio-link:hover {
    color: #2c3e50;
}

/* Responsive for Portfolio Details */
@media (max-width: 768px) {
    .portfolio-details-section {
        padding: 50px 20px;
    }
    
    .portfolio-details-title {
        font-size: 24px;
    }
    
    .portfolio-subsection-title {
        font-size: 20px;
        margin-top: 40px;
    }
    
    .portfolio-details-text {
        font-size: 14px;
        text-align: left;
    }
}

/* Customer Reviews Section */
.customer-reviews-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.customer-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.reviews-top-left {
    flex: 1;
}

.reviews-main-title {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.overall-rating-display {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars-rating {
    display: flex;
    gap: 3px;
}

.star-icon {
    font-size: 22px;
    color: #f39c12;
}

.star-icon.half-filled {
    position: relative;
    color: #e0e0e0;
}

.star-icon.half-filled::before {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #f39c12;
}

.rating-summary {
    font-size: 14px;
    color: #7f8c8d;
}

.write-review-btn {
    color: #5a6c7d;
    text-decoration: underline;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.write-review-btn:hover {
    color: #2c3e50;
}

/* Customer Reviews Grid */
.customer-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.customer-review-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.customer-review-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.review-header-section {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.reviewer-avatar.yellow {
    background: linear-gradient(135deg, #f9a825, #f57f17);
}

.reviewer-avatar.orange {
    background: linear-gradient(135deg, #fb8c00, #ef6c00);
}

.reviewer-avatar.green {
    background: linear-gradient(135deg, #66bb6a, #43a047);
}

.reviewer-avatar.cyan {
    background: linear-gradient(135deg, #26c6da, #00acc1);
}

.reviewer-avatar.pink {
    background: linear-gradient(135deg, #ec407a, #d81b60);
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.review-rating-date {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-star {
    font-size: 14px;
    color: #f39c12;
}

.review-star.empty {
    color: #e0e0e0;
}

.review-score {
    font-size: 13px;
    color: #5a6c7d;
    font-weight: 600;
}

.review-date {
    font-size: 13px;
    color: #7f8c8d;
}

.review-content {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0;
}

/* Load More Reviews */
.load-more-reviews {
    text-align: center;
}

.load-more-reviews-link {
    display: inline-block;
    color: #7f8c8d;
    text-decoration: underline;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 10px 20px;
}

.load-more-reviews-link:hover {
    color: #2c3e50;
}

/* Responsive for Customer Reviews */
@media (max-width: 1024px) {
    .customer-reviews-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .customer-reviews-section {
        padding: 50px 20px;
    }
    
    .reviews-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .reviews-main-title {
        font-size: 24px;
    }
    
    .overall-rating-display {
        justify-content: center;
    }
    
    .customer-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .customer-review-card {
        padding: 20px;
    }
    
    .reviewer-avatar {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
    
    .reviewer-name {
        font-size: 15px;
    }
    
    .review-content {
        font-size: 13px;
    }
}

/* Full Size Examples Section */
.fullsize-examples-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.fullsize-examples-container {
    max-width: 1400px;
    margin: 0 auto;
}

.fullsize-examples-title {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin: 0 0 50px 0;
}

.fullsize-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fullsize-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fullsize-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.fullsize-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fullsize-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fullsize-item:hover .fullsize-overlay {
    opacity: 1;
}

.overlay-label {
    color: white;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Restoration Badge */
.restoration-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffa726, #ff9800);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* Full Size Actions */
.fullsize-actions {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.btn-load-more-pictures {
    padding: 14px 50px;
    background: linear-gradient(135deg, #ffa726, #ff9800);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more-pictures:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 167, 38, 0.4);
}

/* Responsive for Full Size Examples */
@media (max-width: 1200px) {
    .fullsize-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .fullsize-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .fullsize-examples-section {
        padding: 50px 20px;
    }
    
    .fullsize-examples-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .fullsize-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .fullsize-item {
        aspect-ratio: 1/1;
    }
}

@media (max-width: 480px) {
    .fullsize-examples-title {
        font-size: 20px;
    }
    
    .fullsize-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .fullsize-item {
        aspect-ratio: 1/1;
    }
}

/* ==============================
   Pricing Page Styles
   ============================== */

.pricing-page {
    background-color: #f9f9f9;
    padding: 60px 20px 80px;
    min-height: calc(100vh - 80px);
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
}

.pricing-intro,
.pricing-info {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 25px;
}

.pricing-intro {
    margin-bottom: 20px;
}

.pricing-info {
    margin-bottom: 60px;
}

/* Pricing Packages Grid */
.pricing-packages {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 50px;
    justify-content: space-between;
}

.pricing-package {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 19%;
    min-width: 200px;
}

.pricing-package:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Package Header */
.package-header {
    padding: 15px 15px 12px;
    border-bottom: 1px solid #f0f0f0;
}

.package-name {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 12px;
}

.package-images {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-bottom: 15px;
}

.package-images img {
    width: 55px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid #f0f0f0;
}

.package-price {
    text-align: center;
    margin-bottom: 12px;
}

.price-amount {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.price-unit {
    display: block;
    font-size: 12px;
    color: #718096;
    margin-top: 2px;
}

.btn-view-examples {
    width: 100%;
    padding: 8px 15px;
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-examples:hover {
    background-color: #f7fafc;
    border-color: #cbd5e0;
    color: #2d3748;
}

/* Package Services */
.package-services {
    padding: 15px;
    flex: 1;
    overflow-y: auto;
    font-size: 13px;
}

.services-title {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.not-include-title {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 15px;
    margin-bottom: 12px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.services-list li {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    padding: 6px 0 6px 25px;
    position: relative;
}

.service-included::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 16px;
}

.service-excluded::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #f56565;
    font-weight: bold;
    font-size: 16px;
}

.service-info::before {
    content: "ⓘ";
    position: absolute;
    left: 0;
    color: #4299e1;
    font-weight: bold;
    font-size: 16px;
}

.package-note {
    font-size: 13px;
    color: #718096;
    margin-top: 15px;
    font-style: italic;
}

/* Order Now Button */
.btn-order-now {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-order-now:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

/* Responsive Adjustments for Pricing */
@media (max-width: 1200px) {
    .pricing-packages {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .pricing-package {
        width: calc(33.333% - 10px);
        min-width: 240px;
    }
    
    .pricing-main-title {
        font-size: 40px;
    }
    
    .btn-order-now {
        padding: 12px 18px;
        font-size: 15px;
    }
}

@media (max-width: 900px) {
    .pricing-packages {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .pricing-package {
        width: calc(50% - 10px);
        min-width: 280px;
    }
    
    .pricing-main-title {
        font-size: 36px;
    }
    
    .pricing-intro,
    .pricing-info {
        font-size: 16px;
    }
    
    .btn-order-now {
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .pricing-page {
        padding: 40px 15px 60px;
    }
    
    .pricing-packages {
        flex-direction: column;
        gap: 20px;
    }
    
    .pricing-package {
        width: 100%;
        min-width: unset;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-main-title {
        font-size: 32px;
    }
    
    .package-images {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .package-images img {
        width: 70px;
        height: 50px;
    }
    
    .price-amount {
        font-size: 32px;
    }
    
    .services-list {
        font-size: 14px;
    }
    
    .btn-order-now {
        width: calc(100% - 30px);
        margin: 0 15px 15px;
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* ==============================
   Additional Services Section
   ============================== */

.additional-services-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #e0e0e0;
}

.additional-services-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.additional-service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.additional-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.additional-service-card:hover .service-image-wrapper img {
    transform: scale(1.05);
}

.service-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1a1a;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    text-align: center;
}

.badge-unit {
    font-size: 12px;
    font-weight: 500;
    display: block;
    margin-top: 2px;
}

.service-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    padding: 20px 15px;
    margin: 0;
    line-height: 1.4;
}

/* Responsive - Additional Services */
@media (max-width: 1024px) {
    .additional-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .additional-services-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .additional-services-section {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .additional-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .additional-services-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .service-price-badge {
        font-size: 14px;
        padding: 8px 14px;
    }
    
    .service-card-title {
        font-size: 17px;
        padding: 18px 12px;
    }
}

/* ==============================
   Photo Editing Prices Section
   ============================== */

.photo-editing-prices-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #e0e0e0;
}

.photo-editing-prices-title {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
}

.photo-editing-intro,
.photo-editing-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 20px;
}

.photo-editing-description {
    margin-bottom: 50px;
}

.link-underline {
    color: #4a5568;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.link-underline:hover {
    color: #f39c12;
}

.retouching-prices-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
}

/* Pricing Table */
.pricing-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

.pricing-table thead {
    background-color: #f7f9fc;
}

.table-header {
    padding: 20px 15px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
    border-bottom: 2px solid #e0e0e0;
}

.table-header:nth-child(2) {
    text-align: center;
    width: 150px;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #e8e8e8;
    transition: background-color 0.2s ease;
}

.pricing-table tbody tr:hover {
    background-color: #fafafa;
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.service-name-cell {
    padding: 20px 15px;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.price-cell {
    padding: 20px 15px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
}

.description-cell {
    padding: 20px 15px;
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
}

.pricing-note {
    font-size: 14px;
    color: #718096;
    text-align: center;
    margin-top: 30px;
    font-style: italic;
}

/* Responsive - Pricing Table */
@media (max-width: 1024px) {
    .photo-editing-prices-title {
        font-size: 36px;
    }
    
    .retouching-prices-subtitle {
        font-size: 28px;
    }
    
    .pricing-table-wrapper {
        overflow-x: auto;
    }
    
    .table-header,
    .service-name-cell,
    .price-cell,
    .description-cell {
        font-size: 14px;
        padding: 15px 12px;
    }
}

@media (max-width: 768px) {
    .photo-editing-prices-section {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .photo-editing-prices-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .retouching-prices-subtitle {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .photo-editing-intro,
    .photo-editing-description {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .pricing-table-wrapper {
        border-radius: 6px;
    }
    
    .table-header {
        font-size: 13px;
        padding: 12px 10px;
    }
    
    .service-name-cell,
    .price-cell,
    .description-cell {
        font-size: 13px;
        padding: 12px 10px;
    }
    
    .price-cell {
        font-size: 16px;
    }
    
    .pricing-note {
        font-size: 13px;
        margin-top: 20px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .pricing-table {
        min-width: 550px;
    }
    
    .table-header {
        font-size: 11px;
        padding: 10px 6px;
    }
    
    .service-name-cell,
    .price-cell,
    .description-cell {
        font-size: 12px;
        padding: 10px 6px;
    }
}

/* ==============================
   5 Photo Editing Levels Section
   ============================== */

.five-levels-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #e0e0e0;
}

.five-levels-title {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
}

.five-levels-intro,
.five-levels-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 20px;
}

.five-levels-description {
    margin-bottom: 50px;
}

/* Editing Level Card */
.editing-level-card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.level-card-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 35px;
}

.level-card-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.level-card-left {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.level-card-left .image-comparison-card {
    width: 100%;
    margin-bottom: 20px;
}

.level-card-left .comparison-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.level-card-left .before-img,
.level-card-left .after-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.level-card-left .before-img img,
.level-card-left .after-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.level-card-left .after-img {
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.level-card-left .comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
}

.level-card-left .slider-line-top,
.level-card-left .slider-line-bottom {
    position: absolute;
    left: 50%;
    width: 2px;
    background: white;
    transform: translateX(-50%);
}

.level-card-left .slider-line-top {
    top: 0;
    height: calc(50% - 20px);
}

.level-card-left .slider-line-bottom {
    bottom: 0;
    height: calc(50% - 20px);
}

.level-card-left .slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.level-card-left .slider-button:hover {
    background: #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.level-card-left .slider-button svg {
    width: 20px;
    height: 20px;
}

.level-card-left .before-label,
.level-card-left .after-label {
    position: absolute;
    top: 15px;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    z-index: 5;
}

.level-card-left .before-label {
    left: 15px;
}

.level-card-left .after-label {
    right: 15px;
}

.level-card-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.btn-try-free {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-try-free:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.level-card-right {
    flex: 1;
}

.level-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.level-pricing {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 25px;
    padding: 15px;
    background-color: #f7f9fc;
    border-radius: 6px;
}

.services-applied-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.level-services-list {
    list-style: none;
    padding: 0;
}

.level-services-list li {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.level-services-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-size: 20px;
    font-weight: bold;
}

/* Responsive - 5 Levels Section */
@media (max-width: 1024px) {
    .five-levels-title {
        font-size: 36px;
    }
    
    .level-card-title {
        font-size: 26px;
    }
    
    .level-card-content {
        gap: 30px;
    }
    
    .level-card-left {
        flex: 0 0 350px;
    }
    
    .level-card-left .comparison-wrapper {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .five-levels-section {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .five-levels-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .five-levels-intro,
    .five-levels-description {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .editing-level-card {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .level-card-title {
        font-size: 22px;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .level-card-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .level-card-left {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }
    
    .level-card-left .comparison-wrapper {
        height: 400px;
    }
    
    .level-card-image {
        max-width: 100%;
        margin: 0 auto 20px;
    }
    
    .level-description {
        font-size: 15px;
    }
    
    .level-pricing {
        font-size: 16px;
        padding: 12px;
    }
    
    .services-applied-title {
        font-size: 17px;
    }
    
    .level-services-list li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pricing-main-title {
        font-size: 28px;
    }
    
    .pricing-intro,
    .pricing-info {
        font-size: 14px;
    }
    
    .package-name {
        font-size: 16px;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .btn-view-examples,
    .btn-order-now {
        font-size: 13px;
        padding: 10px 20px;
    }
    
    .btn-order-now {
        width: calc(100% - 20px);
        margin: 0 10px 15px;
        padding: 11px 16px;
        font-size: 13px;
        letter-spacing: 0.3px;
    }
    
    .level-card-title {
        font-size: 20px;
    }
    
    .level-card-left .comparison-wrapper {
        height: 350px;
    }
    
    .level-card-left .slider-button {
        width: 35px;
        height: 35px;
    }
    
    .level-card-left .slider-button svg {
        width: 16px;
        height: 16px;
    }
    
    .level-card-left .before-label,
    .level-card-left .after-label {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .additional-services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-table-wrapper {
        overflow-x: auto;
    }
    
    .pricing-table {
        font-size: 13px;
    }
}

/* ==============================
   Reliable Rates Section
   ============================== */

.reliable-rates-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #e0e0e0;
}

.reliable-rates-title {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
}

.reliable-rates-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 20px;
}

.customized-pricing-title,
.quality-question-title,
.special-offers-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 25px;
}

.text-link {
    color: #4a5568;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #f39c12;
}

.breadcrumb-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e8e8e8;
}

.breadcrumb-link {
    font-size: 14px;
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #f39c12;
}

.breadcrumb-separator {
    font-size: 14px;
    color: #cbd5e0;
}

.breadcrumb-current {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 600;
}

/* Responsive - Reliable Rates Section */
@media (max-width: 1024px) {
    .reliable-rates-title {
        font-size: 36px;
    }
    
    .customized-pricing-title,
    .quality-question-title,
    .special-offers-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .reliable-rates-section {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .reliable-rates-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .customized-pricing-title,
    .quality-question-title,
    .special-offers-title {
        font-size: 24px;
        margin-top: 35px;
        margin-bottom: 20px;
    }
    
    .reliable-rates-text {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .breadcrumb-links {
        flex-wrap: wrap;
        margin-top: 35px;
        padding-top: 25px;
    }
    
    .breadcrumb-link,
    .breadcrumb-separator,
    .breadcrumb-current {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .reliable-rates-section {
        padding: 40px 15px;
    }
    
    .reliable-rates-title {
        font-size: 24px;
    }
    
    .customized-pricing-title,
    .quality-question-title,
    .special-offers-title {
        font-size: 20px;
    }
    
    .reliable-rates-text {
        font-size: 14px;
    }
    
    .breadcrumb-link,
    .breadcrumb-separator,
    .breadcrumb-current {
        font-size: 12px;
    }
}

/* ==============================
   Blog Page Styles
   ============================== */

.blog-page {
    background-color: #f9f9f9;
    padding: 60px 20px 80px;
    min-height: calc(100vh - 80px);
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

/* Blog Featured Section */
.blog-featured-section {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.blog-featured-content {
    display: flex;
    gap: 0;
}

.blog-featured-image {
    flex: 0 0 50%;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-featured-section:hover .blog-featured-image img {
    transform: scale(1.05);
}

.blog-featured-text {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.blog-featured-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
}

.btn-view-more {
    align-self: flex-start;
    padding: 14px 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-more:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

/* Special Offers Blog Section */
.special-offers-blog-section {
    margin-top: 80px;
}

.special-offers-blog-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.special-offers-content {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 0;
}

.special-offer-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.special-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-badge {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.95), rgba(219, 39, 119, 0.95));
    padding: 25px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.offer-text {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    margin-bottom: 10px;
}

.offer-discount {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: white;
    letter-spacing: 1px;
}

.special-offer-text {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.special-offer-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.special-offer-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
}

.special-offer-description strong {
    color: #2c3e50;
    font-weight: 700;
}

.btn-get-discount {
    align-self: flex-start;
    padding: 14px 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-get-discount:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

/* Responsive - Blog Page */
@media (max-width: 1024px) {
    .blog-main-title {
        font-size: 40px;
    }
    
    .blog-featured-title,
    .special-offer-title {
        font-size: 28px;
    }
    
    .blog-featured-text,
    .special-offer-text {
        padding: 40px 35px;
    }
    
    .special-offers-blog-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .blog-page {
        padding: 40px 15px 60px;
    }
    
    .blog-main-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .blog-featured-content,
    .special-offers-content {
        flex-direction: column;
    }
    
    .blog-featured-image,
    .special-offer-image {
        flex: 1;
        min-height: 300px;
    }
    
    .blog-featured-text,
    .special-offer-text {
        padding: 30px 25px;
    }
    
    .blog-featured-title,
    .special-offer-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .blog-featured-description,
    .special-offer-description {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .special-offers-blog-section {
        margin-top: 60px;
    }
    
    .special-offers-blog-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .offer-badge {
        right: 20px;
        padding: 20px 25px;
    }
    
    .offer-text {
        font-size: 16px;
    }
    
    .offer-discount {
        font-size: 28px;
    }
    
    .btn-view-more,
    .btn-get-discount {
        width: 100%;
        text-align: center;
    }
}

/* ==============================
   Photo Editing Tips Section
   ============================== */

.photo-editing-tips-section {
    margin-top: 80px;
}

.photo-editing-tips-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    position: relative;
}

.photo-editing-tips-title::before,
.photo-editing-tips-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 25%;
    height: 2px;
    background: linear-gradient(to right, transparent, #cbd5e0, transparent);
}

.photo-editing-tips-title::before {
    left: 0;
}

.photo-editing-tips-title::after {
    right: 0;
}

.photo-editing-tips-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.photo-editing-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.photo-tip-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.photo-tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.tip-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.tip-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-tip-card:hover .tip-card-image img {
    transform: scale(1.05);
}

.file-formats-bg {
    background: linear-gradient(135deg, #e0e7ff 0%, #f3f4f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.file-formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 280px;
}

.format-icon {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 900;
    color: white;
    letter-spacing: 1px;
}

.format-cr2 {
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

.format-nef {
    background: linear-gradient(135deg, #7c2d12, #451a03);
}

.format-dng {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.format-raw {
    background: linear-gradient(135deg, #0891b2, #0e7490);
}

.format-jpeg {
    background: linear-gradient(135deg, #1e3a8a, #1e293b);
    grid-column: 2 / 3;
}

.tip-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lr-overlay .overlay-text,
.ps-overlay .overlay-text {
    font-size: 36px;
    font-weight: 900;
    color: #1e3a8a;
}

.capture-one-overlay {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    width: 120px;
    height: 120px;
}

.capture-one-overlay .overlay-number {
    font-size: 64px;
    font-weight: 900;
    color: white;
}

.on1-overlay {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    width: 110px;
    height: 110px;
}

.on1-overlay .overlay-text-on1 {
    font-size: 42px;
    font-weight: 900;
    color: white;
    text-transform: lowercase;
}

.tip-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    padding: 20px 15px;
    margin: 0;
    letter-spacing: 0.5px;
}

.more-tips-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.btn-more-tips {
    padding: 14px 50px;
    background-color: white;
    border: 2px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-more-tips:hover {
    background-color: #f7fafc;
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive - Photo Editing Tips */
@media (max-width: 1024px) {
    .photo-editing-tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .photo-editing-tips-title {
        font-size: 36px;
    }
    
    .photo-editing-tips-title::before,
    .photo-editing-tips-title::after {
        width: 20%;
    }
}

@media (max-width: 768px) {
    .photo-editing-tips-section {
        margin-top: 60px;
    }
    
    .photo-editing-tips-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .photo-editing-tips-title::before,
    .photo-editing-tips-title::after {
        display: none;
    }
    
    .photo-editing-tips-intro {
        font-size: 15px;
        margin-bottom: 35px;
        padding: 0 10px;
    }
    
    .photo-editing-tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .file-formats-grid {
        gap: 12px;
        max-width: 240px;
    }
    
    .format-icon {
        font-size: 16px;
    }
    
    .tip-overlay-icon {
        width: 80px;
        height: 80px;
    }
    
    .lr-overlay .overlay-text,
    .ps-overlay .overlay-text {
        font-size: 28px;
    }
    
    .capture-one-overlay {
        width: 100px;
        height: 100px;
    }
    
    .capture-one-overlay .overlay-number {
        font-size: 52px;
    }
    
    .on1-overlay {
        width: 90px;
        height: 90px;
    }
    
    .on1-overlay .overlay-text-on1 {
        font-size: 34px;
    }
    
    .tip-card-title {
        font-size: 15px;
        padding: 18px 12px;
    }
    
    .btn-more-tips {
        width: 100%;
        max-width: 400px;
    }
}

/* ==============================
   Create with Adobe Section
   ============================== */

.create-adobe-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #e0e0e0;
}

.create-adobe-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    position: relative;
}

.create-adobe-title::before,
.create-adobe-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 28%;
    height: 2px;
    background: linear-gradient(to right, transparent, #cbd5e0, transparent);
}

.create-adobe-title::before {
    left: 0;
}

.create-adobe-title::after {
    right: 0;
}

.create-adobe-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.create-adobe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.adobe-article-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.adobe-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.adobe-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.adobe-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.adobe-article-card:hover .adobe-card-image img {
    transform: scale(1.05);
}

.adobe-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    padding: 20px 15px;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.more-adobe-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.btn-more-adobe {
    padding: 14px 50px;
    background-color: white;
    border: 2px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-more-adobe:hover {
    background-color: #f7fafc;
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive - Create with Adobe Section */
@media (max-width: 1024px) {
    .create-adobe-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .create-adobe-title {
        font-size: 36px;
    }
    
    .create-adobe-title::before,
    .create-adobe-title::after {
        width: 23%;
    }
}

@media (max-width: 768px) {
    .create-adobe-section {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .create-adobe-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .create-adobe-title::before,
    .create-adobe-title::after {
        display: none;
    }
    
    .create-adobe-intro {
        font-size: 15px;
        margin-bottom: 35px;
        padding: 0 10px;
    }
    
    .create-adobe-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .adobe-card-title {
        font-size: 14px;
        padding: 18px 12px;
    }
    
    .btn-more-adobe {
        width: 100%;
        max-width: 400px;
    }
}

/* Photography Tips Section */
.photography-tips-section {
    margin-top: 80px;
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
}

.photography-tips-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    position: relative;
    padding: 0 40px;
}

.photography-tips-title::before,
.photography-tips-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f39c12, transparent);
}

.photography-tips-title::before {
    left: 0;
}

.photography-tips-title::after {
    right: 0;
}

.photography-tips-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.photography-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.photography-tip-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.photography-tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.photography-card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
}

.photography-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photography-tip-card:hover .photography-card-image img {
    transform: scale(1.05);
}

.photography-card-title {
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.6;
}

.more-photography-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-more-photography {
    padding: 14px 40px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-more-photography:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

@media (max-width: 1024px) {
    .photography-tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .photography-tips-title {
        font-size: 24px;
        padding: 0 20px;
    }
    
    .photography-tips-title::before,
    .photography-tips-title::after {
        width: 100px;
    }
    
    .photography-tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .photography-card-image {
        height: 220px;
    }
}

/* Photography Gear Section */
.photography-gear-section {
    margin-top: 80px;
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
}

.photography-gear-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    position: relative;
    padding: 0 40px;
}

.photography-gear-title::before,
.photography-gear-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f39c12, transparent);
}

.photography-gear-title::before {
    left: 0;
}

.photography-gear-title::after {
    right: 0;
}

.photography-gear-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.photography-gear-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.photography-gear-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.photography-gear-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gear-card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
}

.gear-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photography-gear-card:hover .gear-card-image img {
    transform: scale(1.05);
}

.gear-card-title {
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.6;
}

.more-gear-button-wrapper {
    text-align: right;
    margin-top: 40px;
}

.btn-more-gear {
    padding: 14px 40px;
    background: transparent;
    color: #2c3e50;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-more-gear:hover {
    background-color: #f7fafc;
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .photography-gear-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .photography-gear-title {
        font-size: 24px;
        padding: 0 20px;
    }
    
    .photography-gear-title::before,
    .photography-gear-title::after {
        width: 100px;
    }
    
    .photography-gear-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gear-card-image {
        height: 220px;
    }
    
    .more-gear-button-wrapper {
        text-align: center;
    }
    
    .btn-more-gear {
        width: 100%;
        max-width: 400px;
    }
}

/* Inspiration Section */
.inspiration-section {
    margin-top: 80px;
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
}

.inspiration-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    position: relative;
    padding: 0 40px;
}

.inspiration-title::before,
.inspiration-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f39c12, transparent);
}

.inspiration-title::before {
    left: 0;
}

.inspiration-title::after {
    right: 0;
}

.inspiration-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.inspiration-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.inspiration-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.inspiration-card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.inspiration-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.inspiration-card:hover .inspiration-card-image img {
    transform: scale(1.05);
}

.inspiration-card-title {
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.5px;
    text-align: center;
}

.more-inspiration-button-wrapper {
    text-align: center;
}

.btn-more-inspiration {
    padding: 14px 40px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-more-inspiration:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* Video Editing Tips Section */
.video-editing-section {
    margin-top: 80px;
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
}

.video-editing-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    position: relative;
    padding: 0 40px;
}

.video-editing-title::before,
.video-editing-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f39c12, transparent);
}

.video-editing-title::before {
    left: 0;
}

.video-editing-title::after {
    right: 0;
}

.video-editing-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.video-editing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.video-editing-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-editing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.video-editing-card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.video-editing-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-editing-card:hover .video-editing-card-image img {
    transform: scale(1.05);
}

.video-editing-card-title {
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.5px;
    text-align: center;
}

.more-video-editing-button-wrapper {
    text-align: center;
}

.btn-more-video-editing {
    padding: 14px 40px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-more-video-editing:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* Most Popular Section */
.most-popular-section {
    margin-top: 80px;
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
}

.most-popular-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    position: relative;
    padding: 0 40px;
}

.most-popular-title::before,
.most-popular-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f39c12, transparent);
}

.most-popular-title::before {
    left: 0;
}

.most-popular-title::after {
    right: 0;
}

.most-popular-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.most-popular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.most-popular-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.most-popular-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.most-popular-card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.most-popular-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.most-popular-card:hover .most-popular-card-image img {
    transform: scale(1.05);
}

.most-popular-card-title {
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.5px;
    text-align: center;
}

.more-popular-button-wrapper {
    text-align: center;
}

.btn-more-popular {
    padding: 14px 40px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-more-popular:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* Apps and Software Section */
.apps-software-section {
    margin-top: 80px;
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
}

.apps-software-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    position: relative;
    padding: 0 40px;
}

.apps-software-title::before,
.apps-software-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f39c12, transparent);
}

.apps-software-title::before {
    left: 0;
}

.apps-software-title::after {
    right: 0;
}

.apps-software-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.apps-software-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.apps-software-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.apps-software-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.apps-software-card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.apps-software-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.apps-software-card:hover .apps-software-card-image img {
    transform: scale(1.05);
}

.apps-software-card-title {
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.5px;
    text-align: center;
}

.more-apps-button-wrapper {
    text-align: center;
}

.btn-more-apps {
    padding: 14px 40px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-more-apps:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* File Formats Section */
.file-formats-section {
    margin-top: 80px;
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
}

.file-formats-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    position: relative;
    padding: 0 40px;
}

.file-formats-title::before,
.file-formats-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f39c12, transparent);
}

.file-formats-title::before {
    left: 0;
}

.file-formats-title::after {
    right: 0;
}

.file-formats-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.file-formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.file-formats-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-formats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.file-formats-card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.file-formats-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.file-formats-card:hover .file-formats-card-image img {
    transform: scale(1.05);
}

.file-formats-card-title {
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.5px;
    text-align: center;
}

.more-formats-button-wrapper {
    text-align: center;
}

.btn-more-formats {
    padding: 14px 40px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-more-formats:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* Photographer Section */
.photographer-section {
    margin-top: 80px;
    padding: 60px 0 80px;
    border-top: 1px solid #e0e0e0;
}

.photographer-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    position: relative;
    padding: 0 40px;
}

.photographer-title::before,
.photographer-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f39c12, transparent);
}

.photographer-title::before {
    left: 0;
}

.photographer-title::after {
    right: 0;
}

.photographer-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.photographer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.photographer-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.photographer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.photographer-card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.photographer-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photographer-card:hover .photographer-card-image img {
    transform: scale(1.05);
}

.photographer-card-title {
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.5px;
    text-align: center;
}

.more-photographer-button-wrapper {
    text-align: center;
}

.btn-more-photographer {
    padding: 14px 40px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-more-photographer:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* Responsive for all new sections */
@media (max-width: 1024px) {
    .inspiration-grid,
    .video-editing-grid,
    .most-popular-grid,
    .apps-software-grid,
    .file-formats-grid,
    .photographer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .inspiration-title,
    .video-editing-title,
    .most-popular-title,
    .apps-software-title,
    .file-formats-title,
    .photographer-title {
        font-size: 24px;
        padding: 0 20px;
    }
    
    .inspiration-title::before,
    .inspiration-title::after,
    .video-editing-title::before,
    .video-editing-title::after,
    .most-popular-title::before,
    .most-popular-title::after,
    .apps-software-title::before,
    .apps-software-title::after,
    .file-formats-title::before,
    .file-formats-title::after,
    .photographer-title::before,
    .photographer-title::after {
        width: 100px;
    }
    
    .inspiration-grid,
    .video-editing-grid,
    .most-popular-grid,
    .apps-software-grid,
    .file-formats-grid,
    .photographer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .inspiration-card-image,
    .video-editing-card-image,
    .most-popular-card-image,
    .apps-software-card-image,
    .file-formats-card-image,
    .photographer-card-image {
        height: 220px;
    }
}

/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ======================================== */

/* Global Responsive Utilities */
@media (max-width: 1200px) {
    .hero-carousel {
        height: 400px;
    }
    
    .services-container,
    .editing-container,
    .how-it-works-container,
    .video-container,
    .portfolio-container,
    .about-container,
    .feedback-container,
    .examples-container,
    .pricing-container,
    .blog-container {
        padding: 40px 30px;
    }
}

@media (max-width: 968px) {
    /* Typography adjustments */
    h1, .section-title, .editing-title, .how-title, 
    .video-section-title, .portfolio-title, .about-title,
    .feedback-title, .examples-main-title, .pricing-main-title,
    .blog-main-title {
        font-size: 28px !important;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 24px !important;
    }
    
    h3 {
        font-size: 20px !important;
    }
    
    p, .section-description {
        font-size: 15px !important;
        line-height: 1.6;
    }
    
    /* Container adjustments */
    .hero-carousel {
        height: 400px;
    }
    
    .carousel-content {
        padding: 30px;
    }
    
    .carousel-title {
        font-size: 32px;
    }
    
    .carousel-subtitle {
        font-size: 16px;
    }
    
    /* Features and Services Grid */
    .features-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Service cards */
    .service-card {
        flex-direction: column;
    }
    
    .service-content,
    .service-image {
        width: 100%;
    }
    
    /* Portfolio grid */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Stats section */
    .stats-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .years-column {
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Partners grid */
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    /* Examples tabs */
    .examples-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .tab-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    /* Examples gallery */
    .examples-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .example-card.large {
        grid-column: span 1;
    }
    
    /* Pricing packages */
    .pricing-packages {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-left,
    .footer-right {
        width: 100%;
    }
    
    .footer-links {
        columns: 2;
    }
}

@media (max-width: 768px) {
    /* Full mobile layout */
    body {
        font-size: 14px;
    }
    
    /* Hero section */
    .hero-carousel {
        height: 400px;
    }
    
    .carousel-content {
        right: 50%;
        transform: translate(50%, -50%);
        padding: 0 15px;
        text-align: center;
        max-width: 95%;
    }
    
    .carousel-title {
        font-size: 28px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 28px;
        text-align: center;
        letter-spacing: 1.5px;
    }
    
    .carousel-subtitle,
    .hero-subtitle {
        font-size: 13px;
        text-align: center;
        justify-content: center;
        margin-bottom: 25px;
    }
    
    .carousel-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .carousel-buttons .btn {
        width: 100%;
    }
    
    .award-badges {
        justify-content: center;
        transform: scale(0.65);
        transform-origin: center;
    }
    
    .slide-counter {
        top: -150px;
        right: 50%;
        transform: translateX(50%);
    }
    
    /* Features and grids - single column */
    .features-grid,
    .steps-grid,
    .partners-grid,
    .stats-grid,
    .countries-grid,
    .reviews-grid,
    .pricing-packages,
    .additional-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Keep 2 columns for these galleries on mobile */
    .portfolio-grid,
    .examples-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .fullsize-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .portfolio-item.large,
    .portfolio-item.medium,
    .portfolio-item.small,
    .portfolio-item.counter-box {
        height: auto;
        aspect-ratio: 1 / 1;
        grid-row: span 1;
        grid-column: span 1;
    }
    
    /* Service cards */
    .service-card {
        padding: 20px;
    }
    
    .service-image {
        margin-top: 20px;
    }
    
    /* Upload section */
    .upload-area {
        padding: 30px 20px;
    }
    
    /* Video carousel */
    .video-slide {
        height: auto;
    }
    
    .prev-video {
        left: 10px !important;
    }
    
    .next-video {
        right: 10px !important;
    }
    
    /* Testimonials */
    .testimonials-carousel {
        padding: 0;
    }
    
    .testimonial-arrow {
        display: none;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    /* Timeline */
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .timeline-year {
        text-align: left;
        border-right: none;
        border-bottom: 2px solid #f39c12;
        padding-bottom: 15px;
    }
    
    /* Reviews */
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    /* Examples page */
    .examples-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .examples-gallery {
        grid-template-columns: 1fr;
    }
    
    .example-card {
        height: 300px;
    }
    
    .category-info {
        padding: 15px;
    }
    
    .category-title {
        font-size: 18px;
    }
    
    /* Pricing page */
    .pricing-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-table {
        min-width: 600px;
    }
    
    .level-card-content {
        flex-direction: column;
    }
    
    .level-card-image {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .level-card-text {
        width: 100%;
    }
    
    /* Blog page */
    .blog-featured-content {
        flex-direction: column;
    }
    
    .blog-featured-image,
    .blog-featured-text {
        width: 100%;
    }
    
    .special-offers-content {
        flex-direction: column;
    }
    
    .special-offer-image,
    .special-offer-text {
        width: 100%;
    }
    
    .photo-editing-tips-intro,
    .create-adobe-intro,
    .photography-tips-intro,
    .photography-gear-intro,
    .inspiration-intro,
    .video-editing-intro,
    .most-popular-intro,
    .apps-software-intro,
    .file-formats-intro,
    .photographer-intro {
        font-size: 14px;
        padding: 0 10px;
    }
    
    /* Footer */
    .footer-languages {
        padding: 20px 10px;
    }
    
    .languages-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .languages-list a {
        font-size: 13px;
    }
    
    .footer-links {
        columns: 1;
    }
    
    /* Buttons */
    .btn,
    .btn-primary,
    .btn-outline,
    .btn-order-now,
    .btn-more-samples,
    .btn-view-prices,
    .btn-more-tips,
    .btn-more-adobe,
    .btn-more-photography,
    .btn-more-gear,
    .btn-more-inspiration,
    .btn-more-video-editing,
    .btn-more-popular,
    .btn-more-apps,
    .btn-more-formats,
    .btn-more-photographer {
        width: 100%;
        max-width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Form inputs */
    .form-input,
    .form-textarea {
        font-size: 14px;
    }
    
    /* Back to top button */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .hero-carousel {
        height: 320px;
    }
    
    .carousel-content {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .carousel-title,
    .hero-title {
        font-size: 22px;
        letter-spacing: 1px;
    }
    
    .carousel-subtitle,
    .hero-subtitle {
        font-size: 11px;
        margin-bottom: 20px;
    }
    
    .arrow-circle {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
    
    .award-badges {
        transform: scale(0.55);
        gap: 10px;
    }
    
    .slide-counter {
        top: -130px;
        font-size: 11px;
        padding: 5px 12px;
    }
    
    h1, .section-title {
        font-size: 22px !important;
    }
    
    h2 {
        font-size: 20px !important;
    }
    
    h3 {
        font-size: 18px !important;
    }
    
    .feature-item,
    .step-item {
        padding: 20px;
    }
    
    .service-card,
    .pricing-package {
        padding: 15px;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .example-card {
        height: 250px;
    }
    
    .tab-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Landscape mode for mobile devices */
@media (max-width: 968px) and (orientation: landscape) {
    .hero-carousel {
        height: 350px;
    }
    
    .mobile-nav-menu {
        height: calc(100vh - 60px);
    }
}

/* Additional Mobile Responsive Improvements for Portrait Retouching Page */

/* Tablet Improvements (1024px and below) */
@media (max-width: 1024px) {
    /* Hero Carousel */
    .hero-carousel {
        height: 400px;
    }
    
    .carousel-slide img {
        height: 400px;
    }
    
    /* Upload Section */
    .headshot-upload-section {
        padding: 60px 20px;
    }
    
    .headshot-upload-title {
        font-size: 28px;
    }
    
    /* Services Grid */
    .headshot-services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Pricing Cards */
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-card {
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Bulk Services */
    .bulk-services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile Improvements (768px and below) */
@media (max-width: 768px) {
    /* Hero Carousel */
    .hero-carousel {
        height: 400px;
    }
    
    .carousel-slide img {
        height: 400px;
        object-fit: cover;
    }
    
    .carousel-dots {
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    /* Upload Section */
    .headshot-upload-section {
        padding: 50px 15px;
    }
    
    .headshot-upload-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .headshot-upload-description {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .upload-area {
        padding: 50px 20px;
        border-width: 2px;
    }
    
    .upload-button {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    /* Services Section */
    .headshot-services-provide-section {
        padding: 50px 15px;
    }
    
    .headshot-services-provide-title {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 30px;
    }
    
    .headshot-service-item {
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    }
    
    .before-after-slider {
        height: 300px;
    }
    
    /* How Does It Work */
    .how-does-it-work-section {
        padding: 50px 15px;
    }
    
    .how-does-it-work-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .work-steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .work-step-icon {
        width: 75px;
        height: 75px;
    }
    
    .work-step-title {
        font-size: 13px;
    }
    
    .work-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0 15px;
    }
    
    .btn-try-free,
    .btn-get-quote {
        width: 100%;
        max-width: 320px;
        padding: 13px 35px;
        font-size: 15px;
        text-align: center;
    }
    
    /* Pricing Section */
    .headshot-pricing-section {
        padding: 50px 15px;
    }
    
    .headshot-pricing-title {
        font-size: 22px;
        line-height: 1.4;
    }
    
    .pricing-card {
        padding: 25px;
    }
    
    .pricing-images {
        gap: 8px;
    }
    
    .pricing-img-clickable {
        width: 100px;
        height: 100px;
    }
    
    .price-value {
        font-size: 32px;
    }
    
    .services-items {
        font-size: 13px;
    }
    
    /* Bulk Services */
    .bulk-services-section {
        padding: 50px 15px;
    }
    
    .bulk-services-title {
        font-size: 22px;
        line-height: 1.4;
    }
    
    .bulk-service-card {
        padding: 25px;
    }
    
    .bulk-service-icon svg {
        width: 70px;
        height: 60px;
    }
    
    /* Editing Showcase */
    .editing-showcase-section {
        padding: 50px 15px;
    }
    
    .editing-showcase-title {
        font-size: 22px;
        line-height: 1.4;
    }
    
    .editing-showcase-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .editing-showcase-content.editing-showcase-reverse {
        grid-template-columns: 1fr;
    }
    
    .editing-before-after-slider {
        height: 400px;
    }
    
    .editing-info-text p {
        font-size: 14px;
    }
    
    .editing-services-applied ul {
        font-size: 13px;
    }
    
    /* Reviews */
    .reviews-section {
        padding: 50px 15px;
    }
    
    .reviews-main-title {
        font-size: 22px;
        line-height: 1.4;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-section {
        padding: 50px 15px 30px;
    }
    
    .footer-heading {
        font-size: 20px;
    }
    
    .languages-list {
        gap: 10px;
    }
}

/* Small Mobile Improvements (480px and below) */
@media (max-width: 480px) {
    /* Hero Carousel */
    .hero-carousel {
        height: 300px;
    }
    
    .carousel-slide img {
        height: 300px;
    }
    
    .carousel-dots {
        gap: 6px;
        padding: 0 10px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    /* Upload Section */
    .headshot-upload-title {
        font-size: 20px;
    }
    
    .headshot-upload-description {
        font-size: 13px;
    }
    
    .upload-area {
        padding: 40px 15px;
    }
    
    .upload-button {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    /* Services Section */
    .headshot-services-provide-title {
        font-size: 18px;
    }
    
    .headshot-service-name {
        font-size: 13px;
    }
    
    .headshot-service-description {
        font-size: 12px;
    }
    
    .before-after-slider {
        height: 250px;
    }
    
    .slider-handle {
        width: 35px;
        height: 35px;
    }
    
    .before-label {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    /* How Does It Work */
    .how-does-it-work-title {
        font-size: 20px;
    }
    
    .work-steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .work-step-icon {
        width: 85px;
        height: 85px;
    }
    
    .work-step-title {
        font-size: 14px;
    }
    
    .btn-try-free,
    .btn-get-quote {
        padding: 14px 35px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
        display: block;
        text-align: center;
    }
    
    .work-desc-text {
        font-size: 13px;
        text-align: left;
    }
    
    /* Pricing Section */
    .headshot-pricing-title {
        font-size: 18px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .pricing-level {
        font-size: 22px;
    }
    
    .pricing-images {
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .pricing-img-clickable {
        width: 90px;
        height: 90px;
    }
    
    .price-value {
        font-size: 28px;
    }
    
    .price-unit {
        font-size: 13px;
    }
    
    .btn-view-examples,
    .btn-order-now {
        padding: 11px 28px;
        font-size: 13px;
    }
    
    .services-heading {
        font-size: 15px;
    }
    
    .services-items {
        font-size: 12px;
        padding-left: 18px;
    }
    
    .services-items li {
        padding-left: 5px;
    }
    
    /* Bulk Services */
    .bulk-services-title {
        font-size: 18px;
    }
    
    .bulk-service-card {
        padding: 20px;
    }
    
    .bulk-service-icon {
        margin-bottom: 15px;
    }
    
    .bulk-service-icon svg {
        width: 60px;
        height: 50px;
    }
    
    .bulk-discount-badge {
        width: 55px;
        height: 55px;
    }
    
    .bulk-discount-percent {
        font-size: 16px;
    }
    
    .bulk-discount-text {
        font-size: 9px;
    }
    
    .bulk-service-description {
        font-size: 12px;
    }
    
    /* Editing Showcase */
    .editing-showcase-title {
        font-size: 18px;
    }
    
    .editing-before-after-slider {
        height: 350px;
    }
    
    .editing-slider-handle {
        width: 35px;
        height: 35px;
    }
    
    .editing-try-free-btn {
        padding: 11px 30px;
        font-size: 13px;
    }
    
    .editing-info-text p {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .editing-level-label {
        font-size: 13px;
    }
    
    .editing-price {
        font-size: 15px;
    }
    
    .editing-services-applied h4 {
        font-size: 14px;
    }
    
    .editing-services-applied ul {
        font-size: 12px;
    }
    
    /* Reviews */
    .reviews-main-title {
        font-size: 18px;
    }
    
    .reviews-count {
        font-size: 18px;
    }
    
    .reviews-rating-text {
        font-size: 12px;
    }
    
    .write-review-link {
        font-size: 13px;
    }
    
    .review-card {
        padding: 15px;
    }
    
    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .review-user-name {
        font-size: 13px;
    }
    
    .review-date {
        font-size: 11px;
    }
    
    .review-title {
        font-size: 13px;
    }
    
    .review-text {
        font-size: 12px;
    }
    
    .star-icon {
        font-size: 12px;
    }
    
    .load-more-link {
        font-size: 13px;
    }
    
    /* Examples Gallery */
    .examples-gallery-title {
        font-size: 20px;
    }
    
    .examples-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-heading {
        font-size: 18px;
    }
    
    .form-input,
    .form-textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .checkbox-label {
        font-size: 11px;
    }
    
    .submit-btn {
        padding: 11px 30px;
        font-size: 14px;
    }
    
    .footer-links {
        font-size: 13px;
    }
    
    .footer-links li {
        padding: 6px 0;
    }
    
    .languages-label {
        font-size: 13px;
    }
    
    .languages-list a {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .footer-copyright p {
        font-size: 11px;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .headshot-upload-title,
    .headshot-services-provide-title,
    .how-does-it-work-title,
    .headshot-pricing-title,
    .bulk-services-title,
    .editing-showcase-title,
    .reviews-main-title,
    .examples-gallery-title {
        font-size: 16px;
        line-height: 1.3;
    }
    
    .upload-button {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .pricing-img-clickable {
        width: 80px;
        height: 80px;
    }
    
    .before-after-slider {
        height: 220px;
    }
    
    .editing-before-after-slider {
        height: 300px;
    }
    
    /* Portfolio grid - maintain 2 columns even on extra small screens */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .portfolio-item.large,
    .portfolio-item.medium,
    .portfolio-item.small,
    .portfolio-item.counter-box {
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    .more-count {
        font-size: 48px;
    }
}

/* Landscape Mode Fixes for Mobile */
@media (max-width: 968px) and (orientation: landscape) {
    .hero-carousel {
        height: 350px;
    }
    
    .carousel-slide img {
        height: 350px;
    }
    
    .before-after-slider {
        height: 280px;
    }
    
    .editing-before-after-slider {
        height: 350px;
    }
}

/* Pricing Lightbox Responsive */
@media (max-width: 768px) {
    .pricing-lightbox-content {
        width: 95%;
        max-width: 95%;
    }
    
    .pricing-comparison {
        flex-direction: column;
    }
    
    .pricing-comparison-side {
        width: 100%;
    }
    
    .pricing-before-after-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .pricing-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .pricing-close-btn {
        width: 35px;
        height: 35px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .pricing-lightbox-content {
        padding: 15px;
    }
    
    .pricing-comparison-label {
        font-size: 14px;
    }
    
    .pricing-counter {
        font-size: 13px;
    }
    
    .pricing-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .pricing-close-btn {
        width: 30px;
        height: 30px;
        font-size: 24px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .mobile-menu-toggle,
    .mobile-nav-menu,
    .carousel-dots,
    .video-dots,
    .testimonial-dots,
    .back-to-top,
    .btn,
    button {
        display: none !important;
    }
    
    .hero-carousel {
        height: auto;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}

.services-description {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
}
.services-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.services-description li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}
.services-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}
