.page-hidden { display:none; }
.site-page, .site-home { contain: content; }
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
    background-size: 200% 200%;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 94px; /* Fixed height to prevent jumping */
    animation: headerGradient 8s ease-in-out infinite;
}

@keyframes headerGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Header when scrolled */
.header.header-scrolled {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(59, 130, 246, 0.95) 50%, rgba(30, 58, 138, 0.95) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 12px 0; /* Keep same padding to prevent jumping */
    transform: translateY(-2px);
    animation: none; /* Stop gradient animation when scrolled */
}

.header.header-scrolled .logo-image {
    height: 85px; /* Keep same height to prevent jumping */
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 85px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: transparent;
    filter: brightness(1.2) contrast(1.1);
}

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

/* Right Section Container */
.header-right-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Navigation Menu */
.navigation {
    display: flex;
    align-items: center; /* vertically center menu with button */
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-menu li {
    flex: 0 0 auto;
    text-align: left;
}

.nav-menu li a {
    color: #ffffff; /* White text */
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 15px 10px; /* nudge text down to align with button */
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    line-height: 1.2;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

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

.nav-menu li a:hover::before {
    left: 100%;
}

.nav-menu li a:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(245, 158, 11, 0.2));
    color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Dropdown (Services) */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: "\f107"; /* fa-chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.8rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    padding: 10px 0;
    margin-top: 10px;
    background: #1e3a8a; /* match header blue */
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.2s ease;
    z-index: 1001;
}

.nav-menu .dropdown-menu .dropdown-item {
    display: block;
    padding: 10px 18px;
    color: #000000; /* user preference: black text */
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav-menu .dropdown-menu .dropdown-item:hover {
    background: linear-gradient(45deg, #f59e0b, #fbbf24); /* orange-yellow */
    color: #ffffff;
}

/* Open on hover for desktop */
@media (hover: hover) and (pointer: fine) {
    .dropdown:hover > .dropdown-menu {
        display: block; /* ensure visible despite Bootstrap default */
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Services dropdown clickable link */
.dropdown .dropdown-toggle {
    cursor: pointer;
    text-decoration: none;
    color: #ffffff;
}

.dropdown .dropdown-toggle:hover {
    color: #ffffff;
}


/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}


/* Buy Now Button */
.buy-now-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9e0 100%);
    color: #dc2626; /* Red text */
    border: 2px solid transparent;
    padding: 12px 24px; /* match nav item height for straight alignment */
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    line-height: 1.2;
    vertical-align: middle;
    text-decoration: none; /* ensure no underline when used as <a> */
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

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

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

.buy-now-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    border-color: #f59e0b;
}

/* Order Form Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #f8f9e0;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: #f8f9e0;
    color: #000000;
    padding: 20px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e7efc2;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: #000000;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #1A361A;
}

.order-form {
    padding: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background-color: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1A361A;
    box-shadow: 0 0 0 2px rgba(26, 54, 26, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    cursor: pointer;
}

.checkbox-label span {
    user-select: none;
}

.submit-btn {
    background: #f8f9e0;
    color: #000000;
    border: 2px solid #1A361A;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #1e3a8a;
    color: #ffffff;
    border-color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

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

/* Portfolio Section Styles */
.portfolio-section {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.portfolio-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #1b2e1b;
    margin-bottom: 20px;
    font-family: 'Times New Roman', serif;
}

.portfolio-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f8f9e0;
    color: #1b2e1b;
    border: 2px solid #1b2e1b;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #1b2e1b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 46, 27, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 46, 27, 0.8) 0%, rgba(27, 46, 27, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay i {
    color: white;
    font-size: 2rem;
}

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

.portfolio-modal-content {
    position: relative;
    margin: 2% auto;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
}

.portfolio-modal img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
}

.portfolio-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 3001;
    transition: color 0.3s ease;
}

.portfolio-modal-close:hover {
    color: #ffcc00;
}

/* Responsive Portfolio */
@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-container {
        padding: 0 15px;
    }
    
    .portfolio-title {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .portfolio-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 15px;
        margin-top: 30px;
    }
    
    .portfolio-item img {
        height: 200px;
    }
    
    .portfolio-filters {
        gap: 8px;
        margin-bottom: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 20px;
    }
    
    /* Portfolio Modal for mobile */
    .portfolio-modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 85vh;
    }
    
    .portfolio-modal img {
        max-height: 70vh;
        border-radius: 8px;
    }
    
    .portfolio-modal-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    
    /* Pagination for mobile */
    .pagination-container {
        margin-top: 30px;
        padding: 15px 10px;
        gap: 8px;
    }
    
    .pagination-btn {
        padding: 8px 12px;
        font-size: 13px;
        min-width: 36px;
    }
    
    .pagination-btn.page-number {
        min-width: 32px;
        padding: 8px 10px;
    }
    
    .pagination-info {
        font-size: 12px;
        padding: 8px 12px;
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    .portfolio-section {
        padding: 50px 0;
    }
    
    .portfolio-container {
        padding: 0 10px;
    }
    
    .portfolio-title {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }
    
    .portfolio-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 12px;
        margin-top: 25px;
    }
    
    .portfolio-item img {
        height: 180px;
    }
    
    .portfolio-filters {
        gap: 6px;
        margin-bottom: 25px;
    }
    
    .filter-btn {
        padding: 8px 14px;
        font-size: 12px;
        border-radius: 18px;
    }
    
    /* Portfolio Modal for small mobile */
    .portfolio-modal-content {
        margin: 10% auto;
        width: 98%;
        max-height: 80vh;
    }
    
    .portfolio-modal img {
        max-height: 65vh;
    }
    
    .portfolio-modal-close {
        top: 5px;
        right: 10px;
        font-size: 25px;
    }
    
    /* Pagination for small mobile */
    .pagination-container {
        gap: 5px;
        justify-content: space-between;
        margin-top: 25px;
    }
    
    .pagination-btn {
        padding: 6px 8px;
        font-size: 12px;
        min-width: 30px;
    }
    
    .pagination-btn.page-number {
        min-width: 28px;
        padding: 6px 8px;
    }
    
    .pagination-info {
        font-size: 11px;
        padding: 6px 10px;
        margin-left: 5px;
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 360px) {
    .portfolio-title {
        font-size: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .portfolio-item img {
        height: 160px;
    }
    
    .filter-btn {
        padding: 7px 12px;
        font-size: 11px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        min-height: 80px;
        padding: 8px 0;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }
    
    .logo-section {
        flex: 0 0 auto;
    }
    
    .logo-image {
        height: 60px;
        max-width: 200px;
    }
    
    .header-right-section {
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    .navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        padding: 20px 15px;
    }
    
    .navigation.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .nav-menu li {
        text-align: center;
    }
    
    .nav-menu li a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-menu li a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        margin: 10px 0 0 0;
        border-radius: 8px;
        padding: 10px 0;
    }
    
    .dropdown-menu .dropdown-item {
        color: #ffffff;
        padding: 12px 30px;
        border-radius: 0;
        background: none;
    }
    
    .dropdown-menu .dropdown-item:hover {
        background: rgba(245, 158, 11, 0.3);
        color: #ffffff;
    }
    
    .buy-now-btn {
        padding: 10px 20px;
        font-size: 14px;
        order: 1;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 90vh;
    }
    
    .order-form {
        padding: 20px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .header.header-scrolled {
        min-height: 70px;
        padding: 8px 0;
    }
    
    .header.header-scrolled .logo-image {
        height: 55px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-menu li a {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .buy-now-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Banner Styles */
.banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.banner-slide {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bannerSlideIn 1.2s ease-out;
}

@keyframes bannerSlideIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

#bannerCarousel {
    height: 100vh;
}

.carousel-inner {
    height: 100vh;
}

.carousel-item {
    height: 100vh;
}

.carousel-indicators {
    bottom: 30px;
    z-index: 10;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #ffffff;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: #ff8c00;
    border-color: #ff8c00;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1440px;
    height: 100%;
    z-index: 2;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.banner-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1200px;
}

.banner-text {
    color: #ffffff;
}

.banner-headline {
    font-size: 2.5rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.5s ease-out 0.3s both;
}

.banner-headline .text-cream {
    color: #F0F0E0; /* Light cream color */
}

.banner-headline .text-orange {
    color: #F5B041; /* Golden orange color */
}

.banner-company {
    font-size: 2.8rem;
    font-weight: 600;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0;
    animation: fadeInUp 1.5s ease-out 0.6s both;
}

.banner-company .text-cream {
    color: #F0F0E0; /* Light cream color */
}

.banner-company .text-orange {
    color: #F5B041; /* Golden orange color */
}

.banner-company .text-white {
    color: #ffffff; /* White color */
}

.banner-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0 30px 0;
}

.cta-button {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.5s ease-out 0.9s both;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.5);
}

.banner-services {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.banner-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    min-width: 300px;
}

.banner-img {
    width: 300px;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    background: transparent;
    display: block;
    max-width: 100%;
    height: auto;
}

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


.banner-services .service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.banner-services .service-item i {
    color: #10b981;
    font-size: 1.2rem;
}

/* Text Animations */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shakeLeftRight {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

.banner-headline,
.banner-company {
    animation: floatUpDown 3s ease-in-out infinite;
}

.banner-company {
    animation-delay: 0.5s;
}

.cta-button {
    animation: shakeLeftRight 2s ease-in-out infinite;
    animation-delay: 1s;
}

/* Services Section */
.services-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

/* Page switch containers */
.site-home, .site-page { width: 100%; }

/* Photo Editing page styles (lightweight, reuse existing tokens) */
.pe-container { max-width: 1440px; margin: 0 auto; padding: 0 20px; }
.pe-top-slider { background:#ffffff; padding: 16px 0 0; }
/* skeleton placeholder to avoid blank waiting */
.pe-skeleton { height: 260px; border-radius: 4px; background: linear-gradient(90deg, #f1f1f1 25%, #e6e6e6 37%, #f1f1f1 63%); background-size: 400% 100%; animation: peShimmer 1.2s infinite; margin-bottom: 10px; }
@keyframes peShimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }
.is-hidden { display:none; }
/* Multi-item slider */
.pe-multi-slider { position: relative; display:flex; align-items: center; gap: 10px; }
.pe-viewport { overflow: hidden; width: 100%; }
.pe-viewport { min-height: 260px; }
.pe-track { display:flex; gap: 16px; transition: transform 320ms ease; will-change: transform; transform: translate3d(0,0,0); }
.pe-track img { height: 260px; width: calc((100% - 32px) / 3); object-fit: cover; border-radius: 4px; flex: 0 0 auto; }
.pe-track img { background-color: #f1f1f1; }
.pe-nav { position: relative; background: rgba(0,0,0,0.15); border:none; width:42px; height:42px; border-radius: 8px; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.pe-nav::before { content:''; width: 12px; height: 12px; border-right: 4px solid rgba(255,255,255,0.85); border-bottom: 4px solid rgba(255,255,255,0.85); transform: rotate(-45deg); display:block; }
.pe-prev::before { transform: rotate(135deg); }
.pe-next::before { transform: rotate(-45deg); }
.pe-nav:hover { background: rgba(0,0,0,0.28); }

@media (max-width: 992px){
    .pe-track img { width: calc((100% - 16px) / 2); height: 220px; }
}
@media (max-width: 600px){
    .pe-track img { width: 100%; height: 200px; }
    .pe-nav { display:none; }
}
.pe-title { font-size: 3rem; font-weight: 700; text-align: center; margin: 60px 0 20px; font-family: 'Times New Roman', serif; }
.pe-lead { font-size: 1.1rem; color: #333; margin: 0 auto 12px; max-width: 1000px; }
.pe-text { font-size: 1.05rem; color: #333; margin: 0 auto 12px; max-width: 1000px; }
.pe-cta { display:flex; justify-content:center; margin: 24px 0 40px; }
.pe-section-title { font-size: 2.2rem; text-align:center; color:#fff; background: linear-gradient(180deg,#062b0f,#0f3a1a); padding: 16px 24px; border-radius: 6px; margin: 20px 0 24px; font-family: 'Times New Roman', serif; }
.pe-section-title.alt { background: #f5fbdb; color:#0b0b0b; border: 1px solid #e7efc2; }
.pe-card { background: #eaf3e8; padding: 24px; border-radius: 6px; }
.pe-card ul { margin: 0; padding-left: 22px; }
.pe-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin: 10px 0 8px; }

.showcase-label {
    background: #ff8c00;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* How steps */
.pe-how { padding: 40px 0 10px; background: #ffffff; }
.pe-steps { display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; align-items: center; text-align: center; margin-bottom: 16px; }
.pe-step-icon { margin: 0 auto 12px; display:flex; align-items:center; justify-content:center; background: transparent; border: none; width: 160px; height: 160px; }
.pe-step-img { max-width: 140px; max-height: 140px; object-fit: contain; display: block; }
.pe-step-title { font-weight: 600; color: #333; }
.pe-how-text { color: #333; font-size: 16px; line-height: 1.7; margin-top: 12px; }

@media (max-width: 992px){
    .pe-steps { grid-template-columns: 2fr 2fr; }
}
@media (max-width: 600px){
    .pe-steps { grid-template-columns: 1fr; }
    .pe-step-icon { width: 120px; height: 120px; }
    .pe-step-img { max-width: 100px; max-height: 100px; }
}

@media (max-width: 992px){
    .pe-grid { grid-template-columns: 1fr; }
    .pe-title { font-size: 2.2rem; }
}

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

.services-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000;
    background-color: transparent;
    padding: 20px 0;
    margin: 0 auto 60px;
    display: block;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: stretch;
    max-width: 1440px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

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

.service-card-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.before-after-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-grow: 1;
    margin-top: auto;
    line-height: 0;
}

.before-after-image {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Hover labels: "Before" (left) and "After" (right) */
.before-after-image::before,
.before-after-image::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 16px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    pointer-events: none; /* don't block dragging */
    z-index: 4;
}

.before-after-image::before {
    content: 'Before';
    left: 16px;
}

.before-after-image::after {
    content: 'After';
    right: 16px;
}

.before-after-image:hover::before,
.before-after-image:hover::after {
    opacity: 1;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.before-image {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.after-image {
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #ffffff;
    transform: translateX(-50%);
    z-index: 2;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 3;
    cursor: grab;
}

.slider-handle:active {
    cursor: grabbing;
}

.slider-arrow {
    font-size: 18px;
    font-weight: bold;
    color: #1e3a8a;
    user-select: none;
}

.slider-arrow.left {
    margin-right: 2px;
}

.slider-arrow.right {
    margin-left: 2px;
}

/* Services Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-container {
        padding: 0 15px;
    }
    
    .services-title {
        font-size: 1.8rem;
        padding: 15px 20px;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        align-items: stretch;
    }
    
    .service-card {
        padding: 25px 20px;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
    }
    
    .service-card-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }
    
    .service-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .before-after-container {
        height: 220px;
        margin-top: 15px;
    }
    
    /* Improve slider handle for mobile */
    .slider-handle {
        width: 35px;
        height: 35px;
    }
    
    .slider-arrow {
        font-size: 16px;
    }
    
    .slider-line {
        width: 3px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }
    
    .services-container {
        padding: 0 10px;
    }
    
    .services-title {
        font-size: 1.5rem;
        padding: 12px 15px;
        margin-bottom: 25px;
    }
    
    .services-grid {
        gap: 20px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .before-after-container {
        height: 180px;
        margin-top: 10px;
    }
    
    /* Smaller slider handle for very small screens */
    .slider-handle {
        width: 30px;
        height: 30px;
    }
    
    .slider-arrow {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .services-title {
        font-size: 1.3rem;
        padding: 10px 12px;
    }
    
    .service-card {
        padding: 15px 12px;
    }
    
    .service-card-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .before-after-container {
        height: 160px;
    }
    
    .slider-handle {
        width: 28px;
        height: 28px;
    }
    
    .slider-arrow {
        font-size: 12px;
    }
}

/* Pricing Section Styles */
.pricing-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.pricing-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Arial', sans-serif;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background-color: #eef6e9; /* light green */
    border-radius: 8px;
    padding: 30px 25px 28px;
    border: 1px solid #d9e8d4;
    border-top: 6px solid #2c4431; /* dark green line on top */
    box-shadow: none;
}

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

.pricing-header {
    text-align: center;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #dfe9db;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.pricing-thumbs { display:flex; gap: 12px; margin-top: 12px; }
.pricing-thumbs img { width: 86px; height: 56px; object-fit: cover; border-radius: 4px; }

.pricing-photo {
    display: inline-block;
    background-color: #ff8c00;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    margin: 0;
    width: fit-content;
}

.pricing-name {
    font-size: 2.1rem;
    font-weight: 700;
    color: #1b2e1b;
    margin: 0;
    font-family: 'Times New Roman', serif;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 0;
}
.feature-item::before {
    content: '✓';
    color: #10b981;
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
}

.checkmark { display: none; }

.cross {
    color: #ef4444;
    font-size: 1.2rem;
    font-weight: bold;
    min-width: 20px;
}

.feature-item span:last-child {
    color: #1f1f1f;
    font-size: 1.05rem;
    line-height: 1.6;
}

.feature-item.excluded::before {
    display: none;
}

.feature-item.excluded span:last-child {
    color: #999999;
    text-decoration: line-through;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-container {
        padding: 0 15px;
    }
    
    .pricing-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
        line-height: 1.2;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .pricing-card {
        padding: 25px 20px;
        margin: 0 auto;
        max-width: 400px;
        width: 100%;
    }
    
    .pricing-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .pricing-photo {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 8px;
    }
    
    .pricing-name {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .pricing-features {
        gap: 14px;
    }
    
    .feature-item {
        gap: 10px;
        padding: 5px 0;
    }
    
    .feature-item span:last-child {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .feature-item::before {
        font-size: 18px;
    }
    
    .cross {
        font-size: 1.1rem;
        min-width: 18px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 50px 0;
    }
    
    .pricing-container {
        padding: 0 10px;
    }
    
    .pricing-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .pricing-grid {
        gap: 20px;
        margin-top: 25px;
    }
    
    .pricing-card {
        padding: 20px 15px;
        max-width: 100%;
    }
    
    .pricing-header {
        margin-bottom: 18px;
        padding-bottom: 12px;
    }
    
    .pricing-photo {
        font-size: 0.75rem;
        padding: 5px 14px;
        margin-bottom: 6px;
    }
    
    .pricing-name {
        font-size: 1.3rem;
    }
    
    .pricing-features {
        gap: 12px;
    }
    
    .feature-item {
        gap: 8px;
        padding: 4px 0;
    }
    
    .feature-item span:last-child {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .feature-item::before {
        font-size: 16px;
    }
    
    .cross {
        font-size: 1rem;
        min-width: 16px;
    }
}

@media (max-width: 360px) {
    .pricing-title {
        font-size: 1.3rem;
    }
    
    .pricing-card {
        padding: 18px 12px;
    }
    
    .pricing-name {
        font-size: 1.2rem;
    }
    
    .feature-item span:last-child {
        font-size: 0.9rem;
    }
}

/* Gallery Section Styles */
.pe-gallery {
    padding: 80px 0;
    background-color: #ffffff;
}

.pe-gallery .pe-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000;
    font-family: 'Times New Roman', serif;
    /* Match pale banner style like the Prices heading */
    background: #f5fbdb;
    border: 1px solid #e7efc2;
    padding: 16px 24px;
    border-radius: 6px;
    margin: 20px 0 24px;
    display: block;
    width: 100%;
}

/* Remove spacing reserved for old filter buttons */
.gallery-nav { display:none; }

/* Progressive image reveal */
.progressive-img {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(8px);
    transition: opacity 360ms ease, transform 360ms ease, filter 520ms ease;
    background-color: #f2f4f0; /* subtle placeholder tone */
}
.progressive-img.is-loaded {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

.gallery-filter {
    background: transparent;
    border: 2px solid #1b2e1b;
    color: #1b2e1b;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 16px;
}

.gallery-filter:hover,
.gallery-filter.active {
    background-color: #1b2e1b;
    color: white;
}

.gallery-main {
    margin-bottom: 30px;
}

.gallery-main-image {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-main-image img {
    width: 100%;
    height: 500px; /* fixed height to avoid layout shift */
    object-fit: cover;
    display: block;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(27, 46, 27, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav-btn:hover {
    background: rgba(27, 46, 27, 1);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.gallery-thumbnails {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.thumbnails-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.thumbnails-container::-webkit-scrollbar {
    display: none;
}

.thumbnail {
    flex: 0 0 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumbnail:hover {
    transform: scale(1.05);
    border-color: #f59e0b;
}

.thumbnail.active {
    border-color: #1b2e1b;
    transform: scale(1.05);
}

.thumbnails-nav-btn {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    background: #1b2e1b;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnails-nav-btn:hover {
    background: #f59e0b;
    transform: translateY(-50%) scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pe-gallery .pe-section-title {
        font-size: 2rem;
    }
    
    .gallery-nav {
        gap: 10px;
    }
    
    .gallery-filter {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .gallery-main-image img {
        height: 300px;
    }
    
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .thumbnail {
        flex: 0 0 100px;
        height: 60px;
    }
    
    .thumbnails-nav-btn {
        right: -15px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Video Section Styles */
.video-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.video-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.video-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 20px;
    font-family: 'Times New Roman', serif;
}

.video-description {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

/* Responsive Video */
@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .video-description {
        font-size: 1rem;
        padding: 0 20px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
    background-size: 200% 200%;
    position: relative;
    overflow: hidden;
    padding: 60px 0 40px;
    width: 100%;
    min-height: 300px;
    animation: footerGradient 10s ease-in-out infinite;
}

@keyframes footerGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 20%, rgba(255, 255, 255, 0.03) 40%, transparent 60%);
    pointer-events: none;
    animation: footerShimmer 3s ease-in-out infinite;
}

@keyframes footerShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-column {
    color: #ffffff;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    transition: width 0.6s ease;
}

.footer-column:hover .footer-title::after {
    width: 100%;
}

.contact-info, .service-links, .footer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item, .service-item, .footer-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-radius: 4px;
    animation: fadeInUp 1s ease-out;
}

.contact-item:hover, .service-item:hover, .footer-list li:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
    padding-left: 10px;
}

.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list a { color: #ffffff; text-decoration: none; }
.footer-list a:hover { color: #f59e0b; }

.footer-list.with-icons i { color: #10b981; }
.footer-list.with-icons span { color: #ffffff; }

.contact-item i, .service-item i {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    flex-shrink: 0;
}

.contact-item span, .service-item span {
    color: #ffffff;
    transition: color 0.3s ease;
}

.service-item span:hover {
    color: #f59e0b;
    cursor: pointer;
}


/* Social Media Section */
.social-media-section {
    display: flex;
    justify-content: flex-start;
    padding-top: 20px;
    margin-top: 20px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon.whatsapp {
    background-color: #25d366;
    color: white;
}


.social-icon.facebook {
    background-color: #1877f2;
    color: white;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Newsletter */
.newsletter { margin-top: 20px; }
.newsletter-title { color: #ffffff; font-weight: 700; margin: 18px 0 10px; font-size: 16px; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input { 
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #ffffff;
    padding: 10px 12px;
    border-radius: 6px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.7); }
.newsletter-submit {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    color: #ffffff;
    border: none;
    padding: 10px 14px;
    border-radius: 24px;
    font-weight: 700;
    cursor: pointer;
    width: fit-content;
}
.newsletter-submit:hover { opacity: 0.95; transform: translateY(-1px); }

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content { 
        grid-template-columns: 1fr 1fr; 
        gap: 25px; 
        margin-bottom: 25px; 
    }
    
    .footer-title {
        font-size: 15px;
        margin-bottom: 18px;
        letter-spacing: 0.5px;
    }
    
    .contact-item, .service-item, .footer-list li {
        font-size: 13px;
        padding: 6px 0;
        gap: 8px;
    }
    
    .contact-item i, .service-item i {
        width: 14px;
        height: 14px;
        font-size: 12px;
    }
    
    .social-media-section {
        justify-content: center;
        margin-top: 20px;
        padding-top: 15px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .newsletter {
        margin-top: 15px;
    }
    
    .newsletter-title {
        font-size: 14px;
        margin: 15px 0 8px;
    }
    
    .newsletter-form input {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .newsletter-submit {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 25px;
    }
    
    .footer-container {
        padding: 0 10px;
    }
    
    .footer-content { 
        grid-template-columns: 1fr; 
        gap: 20px; 
        margin-bottom: 20px; 
    }
    
    .footer-title {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .contact-info, .service-links {
        gap: 10px;
    }
    
    .contact-item, .service-item, .footer-list li {
        font-size: 12px;
        padding: 5px 0;
        gap: 6px;
    }
    
    .contact-item i, .service-item i {
        width: 12px;
        height: 12px;
        font-size: 11px;
    }
    
    .social-media-section {
        margin-top: 15px;
        padding-top: 12px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .newsletter {
        margin-top: 12px;
    }
    
    .newsletter-title {
        font-size: 13px;
        margin: 12px 0 6px;
    }
    
    .newsletter-form input {
        padding: 6px 8px;
        font-size: 12px;
    }
    
    .newsletter-submit {
        padding: 6px 10px;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .footer {
        padding: 35px 0 20px;
    }
    
    .footer-content {
        gap: 18px;
        margin-bottom: 18px;
    }
    
    .footer-title {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .contact-item, .service-item, .footer-list li {
        font-size: 11px;
        padding: 4px 0;
    }
    
    .contact-item i, .service-item i {
        width: 11px;
        height: 11px;
        font-size: 10px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
    
    .social-icons {
        gap: 10px;
    }
}

/* Banner Responsive */
@media (max-width: 768px) {
    .banner {
        height: 85vh;
        min-height: 600px;
    }
    
    .banner-content {
        padding: 0 15px;
        justify-content: center;
        text-align: center;
    }
    
    .banner-center {
        margin-bottom: 30px;
        order: 1;
    }
    
    .banner-bottom {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        order: 2;
        width: 100%;
    }
    
    .banner-services {
        order: 1;
        width: 100%;
        max-width: 400px;
    }
    
    .banner-image {
        order: 2;
        min-height: auto;
        min-width: auto;
    }
    
    .banner-img {
        width: 280px;
        height: 180px;
        max-width: 90vw;
    }
    
    .banner-headline {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .banner-company {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .banner-cta {
        justify-content: center;
        margin: 30px 0 20px 0;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .banner-services .service-item {
        font-size: 1rem;
        padding: 8px 0;
        text-align: center;
    }
    
    .banner-services .service-item i {
        margin-right: 8px;
    }
    
    /* Carousel controls for mobile */
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
    
    .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 90vh;
        min-height: 550px;
    }
    
    .banner-content {
        padding: 0 10px;
    }
    
    .banner-center {
        margin-bottom: 25px;
    }
    
    .banner-bottom {
        gap: 20px;
    }
    
    .banner-img {
        width: 240px;
        height: 150px;
    }
    
    .banner-headline {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .banner-company {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .banner-cta {
        margin: 25px 0 15px 0;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }
    
    .banner-services .service-item {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .banner-services .service-item i {
        font-size: 1rem;
        margin-right: 6px;
    }
    
    /* Smaller carousel controls for very small screens */
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
}

@media (max-width: 360px) {
    .banner {
        height: 95vh;
        min-height: 500px;
    }
    
    .banner-headline {
        font-size: 1.1rem;
    }
    
    .banner-company {
        font-size: 1.4rem;
    }
    
    .banner-img {
        width: 200px;
        height: 130px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .banner-services .service-item {
        font-size: 0.85rem;
    }
}

/* Lazy Loading Optimization */
.portfolio-item img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item img:not(.lazy) {
    opacity: 1;
}

/* Performance optimizations */
.portfolio-grid {
    will-change: transform;
    contain: layout style paint;
}

.portfolio-item {
    contain: layout style paint;
    will-change: transform;
}

/* Mobile touch optimizations */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    input, textarea, [contenteditable] {
        -webkit-user-select: text;
        -khtml-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }
    
    /* Improve touch targets */
    .filter-btn, .pagination-btn, .slider-handle, .cta-button, .buy-now-btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    /* Smooth scrolling for mobile */
    html {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Prevent zoom on input focus */
    input[type="text"], 
    input[type="email"], 
    input[type="tel"], 
    input[type="url"], 
    textarea {
        font-size: 16px;
    }
}

/* Loading state */
.portfolio-item img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.portfolio-item img:not(.lazy) {
    background: none;
    animation: none;
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.pagination-btn {
    background: #fff;
    border: 2px solid #e0e0e0;
    color: #333;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 44px;
    justify-content: center;
}

.pagination-btn:hover:not(.disabled) {
    background: #4CAF50;
    border-color: #4CAF50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.pagination-btn.active {
    background: #4CAF50;
    border-color: #4CAF50;
    color: white;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
}

.pagination-btn.disabled {
    background: #f5f5f5;
    border-color: #e0e0e0;
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination-btn.page-number {
    min-width: 40px;
    padding: 10px 12px;
}

.pagination-dots {
    color: #666;
    font-weight: bold;
    padding: 10px 5px;
    display: flex;
    align-items: center;
}

.pagination-info {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    color: #666;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    margin-left: 15px;
    white-space: nowrap;
}

/* Responsive pagination */
@media (max-width: 768px) {
    .pagination-container {
        gap: 8px;
        margin-top: 30px;
        padding: 15px 10px;
    }
    
    .pagination-btn {
        padding: 8px 12px;
        font-size: 13px;
        min-width: 36px;
    }
    
    .pagination-btn.page-number {
        min-width: 32px;
        padding: 8px 10px;
    }
    
    .pagination-info {
        font-size: 12px;
        padding: 8px 12px;
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    .pagination-container {
        gap: 5px;
        justify-content: space-between;
    }
    
    .pagination-btn {
        padding: 6px 8px;
        font-size: 12px;
        min-width: 30px;
    }
    
    .pagination-btn.page-number {
        min-width: 28px;
        padding: 6px 8px;
    }
    
    .pagination-info {
        font-size: 11px;
        padding: 6px 10px;
        margin-left: 5px;
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}