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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.3), transparent);
    margin: 0 auto;
    max-width: 80%;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.bg-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.bg-gradient-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff0000 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bg-gradient-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #cc0000 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 5s;
}

.bg-gradient-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ff0000 0%, transparent 70%);
    bottom: 10%;
    left: 30%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* Header Wrapper */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 50;
}

/* Top Bar */
.top-bar {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.top-bar-item:hover {
    color: rgba(255, 255, 255, 1);
}

.top-bar-item i {
    color: #b41d10;
    font-size: 16px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    transition: all 0.3s;
}

.top-bar-item:hover i {
    color: #cc2315;
    transform: scale(1.1);
}

.top-bar-item span {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.top-bar-item:hover span {
    color: rgba(255, 255, 255, 1);
}

/* Top Bar Button */
.top-bar-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(20, 20, 22, 0.98);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid #b41d10;
    white-space: nowrap;
    flex-shrink: 0;
}

.top-bar-button:hover {
    background: rgba(25, 25, 27, 0.98);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(180, 29, 16, 0.3);
    border-color: #cc2315;
}

.top-bar-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.top-bar-button i {
    font-size: 16px;
    flex-shrink: 0;
}

.top-bar-phone {
    background: linear-gradient(135deg, #b41d10, #8a150a) !important;
    border: 1px solid #b41d10 !important;
}

.top-bar-phone:hover {
    background: linear-gradient(135deg, #cc2315, #a0180c) !important;
    border-color: #cc2315 !important;
    box-shadow: 0 6px 16px rgba(180, 29, 16, 0.5) !important;
}

/* Header */
.header {
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(10, 10, 11, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    position: relative;
}

.header.scrolled {
    background: rgba(10, 10, 11, 0.85);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s;
}

.brand:hover {
    opacity: 0.85;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) contrast(1);
}

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

.links {
    display: flex;
    gap: 8px;
    margin-left: auto;
    align-items: center;
}

.links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px; /* Match top-bar-button font-size */
    line-height: 1.5;
    padding: 10px 12px;
    border-radius: 12px;
    transition: all 0.2s;
    position: relative;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 6px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.links a i {
    font-size: 16px; /* Match top-bar-button i font-size */
    line-height: 1;
    flex-shrink: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    vertical-align: middle;
}

/* Chrome/Edge specific fix - visually match Firefox rendering */
/* Using JavaScript-detected class for reliable browser detection */
.chrome-edge-browser .nav .links {
    gap: 8px !important; /* Maintain proper spacing between links */
}

.chrome-edge-browser .nav .links a {
    font-size: 14px !important; /* Use same base size */
    padding: 9px 11px !important; /* Slightly reduce padding to match Firefox visual appearance */
    transform: scale(0.96) !important; /* Scale down to visually match Firefox */
    transform-origin: center !important;
}

.chrome-edge-browser .nav .links a i {
    font-size: 16px !important; /* Use same base size */
    transform: scale(0.96) !important; /* Scale down to visually match Firefox */
}

.chrome-edge-browser .nav .links a.active {
    padding: 9px 11px !important; /* Match padding for active state */
}

/* Fallback CSS detection methods */
@supports (-webkit-appearance: none) {
    @supports (not (-moz-appearance: none)) {
        .nav .links a {
            font-size: 14px !important;
            padding: 9px 11px !important;
            transform: scale(0.96) !important;
            transform-origin: center !important;
        }
        
        .nav .links a i {
            font-size: 16px !important;
            transform: scale(0.96) !important;
        }
        
        .nav .links a.active {
            padding: 9px 11px !important;
        }
    }
}

@supports (-ms-ime-align: auto) {
    .nav .links a {
        font-size: 14px !important;
        padding: 9px 11px !important;
        transform: scale(0.96) !important;
        transform-origin: center !important;
    }
    
    .nav .links a i {
        font-size: 16px !important;
        transform: scale(0.96) !important;
    }
    
    .nav .links a.active {
        padding: 9px 11px !important;
    }
}

.links a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.links a.active {
    opacity: 1;
    background: rgba(180, 29, 16, 0.15);
    color: #b41d10;
}

.links a.cta {
    padding: 12px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, #b41d10, #90170e);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(180, 29, 16, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

.links a.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(180, 29, 16, 0.5);
    background: linear-gradient(135deg, #cc2315, #a11a0f);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.nav-dropdown-link i:not(.fa-chevron-down) {
    font-size: 14px;
    flex-shrink: 0;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: all 0.2s;
}

.nav-dropdown-toggle:hover {
    opacity: 1;
}

.nav-dropdown-toggle i.fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-dropdown:hover .nav-dropdown-toggle i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Make nav-dropdown-header behave like a link on desktop for hover effect */
.nav-dropdown-header {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.98), rgba(20, 20, 22, 0.98));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
    margin-bottom: 2px;
}

.nav-dropdown-item i {
    font-size: 14px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    color: rgba(180, 29, 16, 0.7);
    transition: all 0.2s;
}

.nav-dropdown-item:hover i {
    color: #b41d10;
    transform: scale(1.1);
}

.nav-dropdown-item:last-child {
    margin-bottom: 0;
}

.nav-dropdown-item:hover {
    background: rgba(180, 29, 16, 0.15);
    color: #b41d10;
    transform: translateX(4px);
}

/* Responsive Navigation for 11-12 inch screens */
@media (max-width: 1200px) and (min-width: 769px) {
    .links {
        gap: 2px !important;
    }
    .links a {
        font-size: 12px !important;
        padding: 10px 6px !important;
        white-space: nowrap !important;
    }
    .links a i {
        font-size: 11px !important;
    }
    .links a.cta {
        padding: 8px 10px !important;
        font-size: 11px !important;
    }
    .nav-dropdown-link {
        font-size: 12px !important;
    }
}

/* Responsive Navigation for 14 inch screens (when container is constrained) */
@media (max-width: 1950px) and (min-width: 1900px) {
    .links {
        gap: 2px !important;
    }
    .links a {
        font-size: 12px !important;
        padding: 10px 6px !important;
        white-space: nowrap !important;
    }
    .links a i {
        font-size: 11px !important;
    }
    .links a.cta {
        padding: 8px 10px !important;
        font-size: 11px !important;
    }
    .nav-dropdown-link {
        font-size: 12px !important;
    }
}

/* Responsive Dropdown Styles */
@media (max-width: 968px) {
    .nav-dropdown-menu {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        transform: none !important;
        will-change: auto !important;
        background: rgba(10, 10, 11, 0.95) !important;
        backdrop-filter: blur(20px) saturate(180%) !important;
    }
    
    .header {
        position: relative !important;
        transform: none !important;
        background: transparent !important;
    }
    
    body {
        padding-top: 64px !important;
    }
    
    html {
        scroll-padding-top: 64px;
    }
    
    .top-bar {
        display: none;
    }
    
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0;
        margin-left: 20px;
        border: none;
        background: transparent;
        box-shadow: none;
        padding: 8px 0;
    }
    
    .nav-dropdown-item {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .nav-dropdown-toggle i {
        transform: rotate(0deg);
    }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    border-radius: 8px;
    transition: background 0.2s;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    margin-top: 0;
    padding: 50px 0 40px;
    position: relative;
    z-index: 1;
    background-image: url('../images/slider/slide1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

.hero h1 {
    font-size: 54px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ff0000 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
    animation: gradientShift 4s ease infinite;
    line-height: 1.2;
}

.hero p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-weight: 300;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #ff0000, #990000);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.4s;
    border: 2px solid #ff0000;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.5);
}

.cta-button-secondary {
    background: transparent;
    border: 2px solid #ff0000;
    box-shadow: none;
}

.cta-button-secondary:hover {
    background: rgba(255, 0, 0, 0.1);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
}

.hero-image {
    position: relative;
    height: 320px;
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.8), rgba(50, 0, 0, 0.4));
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    filter: brightness(0.6) contrast(1.1) saturate(0.9);
    transition: filter 0.3s ease;
}

.hero-image img:hover {
    filter: brightness(0.7) contrast(1.15) saturate(0.95);
}

.hero-image i {
    font-size: 150px;
    background: linear-gradient(135deg, #ff0000, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.5));
}

/* Services Section */
.services {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background-image: url('../images/slider/slide2-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.85) 0%, rgba(20, 0, 0, 0.75) 100%);
    z-index: 0;
}

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

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

.section-title {
    font-size: 36px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff, #ff0000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 16px;
    color: #888;
    font-weight: 300;
}

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

.service-card {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(50, 0, 0, 0.3));
    padding: 25px 22px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(255, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: all 0.6s;
}

.service-card:hover::before {
    opacity: 1;
    top: -50%;
    left: -50%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.25);
}

.service-icon {
    font-size: 42px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.4));
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.service-card p {
    color: #aaaaaa;
    line-height: 1.6;
    font-size: 13px;
}

/* Desktop Laptop Services Section */
.desktop-laptop-services {
    padding: 50px 0;
    position: relative;
    z-index: 1;
    background-image: url('../images/block-bg-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.desktop-laptop-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(20, 0, 0, 0.6) 100%);
    z-index: 0;
}

.desktop-laptop-services .container {
    position: relative;
    z-index: 1;
}

/* About Us Section */
.about-us {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-left h2 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #ffffff;
}

.about-left .info {
    font-size: 16px;
    color: #ff0000;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-left p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-left .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-left .service-list li {
    color: #aaaaaa;
    font-size: 14px;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    transition: all 0.3s;
}

.about-left .service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: bold;
    font-size: 16px;
}

.about-left .service-list li:hover {
    color: #ffffff;
    padding-left: 30px;
}

.about-right {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.6), rgba(40, 0, 0, 0.2));
    padding: 40px 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.about-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.5), transparent);
}

.about-right h2 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #ffffff;
}

.about-right .info {
    font-size: 16px;
    color: #ff0000;
    margin-bottom: 30px;
    font-weight: 600;
}

.quote-form {
    position: relative;
    z-index: 1;
}

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

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    outline: none;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: #666666;
}

.quote-form input:focus,
.quote-form textarea:focus {
    border-color: rgba(255, 0, 0, 0.5);
    background: rgba(25, 25, 25, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.quote-form input.input-full,
.quote-form textarea.input-full {
    width: 100%;
    margin-bottom: 20px;
}

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

.submit-btn {
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, #ff0000, #990000);
    color: white;
    border: 2px solid #ff0000;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #cc0000, #770000);
    border-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

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

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(20, 0, 0, 0.15) 0%, rgba(15, 15, 15, 0.08) 50%, rgba(20, 0, 0, 0.15) 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(255, 0, 0, 0.1);
}

.why-choose-item:nth-child(3),
.why-choose-item:nth-child(4) {
    border-bottom: none;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.4), rgba(255, 0, 0, 0.2));
    opacity: 0;
    transition: opacity 0.3s;
}

.why-choose-item:hover {
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.06) 0%, transparent 100%);
    border-bottom-color: rgba(255, 0, 0, 0.3);
}

.why-choose-item:hover::before {
    opacity: 1;
}

.why-choose-number {
    font-size: 28px;
    font-weight: 900;
    color: rgba(255, 0, 0, 0.25);
    min-width: 45px;
    text-align: right;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s;
    flex-shrink: 0;
}

.why-choose-item:hover .why-choose-number {
    color: rgba(255, 0, 0, 0.6);
    transform: scale(1.1);
}

.why-choose-icon {
    font-size: 36px;
    background: linear-gradient(135deg, #ff0000, #ff6666);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.3));
    min-width: 50px;
    text-align: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.12);
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.5));
}

.why-choose-content {
    flex: 1;
}

.why-choose-content h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s;
}

.why-choose-item:hover .why-choose-content h3 {
    color: #ff6666;
}

.why-choose-content p {
    color: #aaaaaa;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
    transition: color 0.3s;
}

.why-choose-item:hover .why-choose-content p {
    color: #cccccc;
}

/* Features Section */
.features {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(20, 0, 0, 0.2) 50%, transparent 100%);
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(40, 0, 0, 0.3));
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(255, 0, 0, 0.15);
    transition: all 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-card:hover {
    border-color: rgba(255, 0, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
}

.feature-icon {
    font-size: 36px;
    background: linear-gradient(135deg, #ff0000, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 40px;
}

.feature-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffffff;
}

.feature-content p {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
}

/* Appointment CTA Banner */
.appointment-cta {
    padding: 0;
    margin: 50px 0;
    position: relative;
    z-index: 1;
}

.appointment-content {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(20, 20, 20, 0.9));
    padding: 30px 40px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.appointment-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.6), transparent);
    z-index: 0;
}

.appointment-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.appointment-content p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.appointment-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.appointment-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.appointment-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.appointment-button:hover::before {
    width: 300px;
    height: 300px;
}

.appointment-button.primary {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    border: 2px solid #ff0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.35);
    position: relative;
}

.appointment-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
    background: linear-gradient(135deg, #cc0000, #990000);
}

.appointment-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 0, 0, 0.5);
    position: relative;
}

.appointment-button.secondary:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.25);
}

.appointment-button span,
.appointment-button i {
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .top-bar-content {
        gap: 20px;
    }
    
    .top-bar-left {
        gap: 20px;
    }
    
    .top-bar-button {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .appointment-content {
        padding: 30px 25px;
    }
    
    .appointment-content h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    
    .appointment-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .appointment-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .appointment-button {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* Products Section */
.products {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background-image: url('../images/block-bg-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(20, 0, 0, 0.6) 100%);
    z-index: 0;
}

.products .container {
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    justify-items: stretch;
}

.product-card {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 18px 40px rgba(255, 0, 0, 0.3);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a, #2a0000);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0.85) contrast(1.05);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    filter: brightness(0.9) contrast(1.1);
}

.product-image i {
    font-size: 80px;
    background: linear-gradient(135deg, #ff0000, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.4));
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: bold;
}

.product-info {
    padding: 18px;
}

.product-info h3 {
    font-size: 17px;
    margin-bottom: 6px;
    color: #ffffff;
}

.product-info p {
    color: #999;
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 12px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.products .product-price {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(135deg, #ff0000, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(135deg, #ff0000, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.buy-button {
    padding: 10px 24px;
    background: linear-gradient(135deg, #ff0000, #aa0000);
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
}

.buy-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

/* Recycling Section */
.recycling {
    padding: 50px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 50, 0, 0.1) 0%, rgba(20, 0, 0, 0.2) 50%, rgba(0, 50, 0, 0.1) 100%);
}

.recycling-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 35px;
    margin-top: 30px;
    align-items: start;
}

.recycling-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.recycling-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(0, 40, 0, 0.3));
    padding: 22px;
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 0, 0.15);
    transition: all 0.3s;
}

.recycling-feature:hover {
    border-color: rgba(0, 255, 0, 0.4);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.15);
}

.recycling-icon {
    font-size: 40px;
    background: linear-gradient(135deg, #00ff00, #00aa00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 50px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.3));
}

.recycling-feature h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffffff;
}

.recycling-feature p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
}

.recycling-box {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(0, 40, 0, 0.3));
    padding: 28px;
    border-radius: 18px;
    border: 2px solid rgba(0, 255, 0, 0.2);
    text-align: center;
    position: sticky;
    top: 100px;
}

.recycling-box i.fa-box-open {
    font-size: 70px;
    background: linear-gradient(135deg, #00ff00, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(0, 255, 0, 0.4));
    margin-bottom: 20px;
}

.recycling-box h3 {
    font-size: 24px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff, #00ff00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.recycling-box ul {
    list-style: none;
    text-align: left;
    margin-bottom: 10px;
}

.recycling-box ul li {
    padding: 10px 0;
    color: #ccc;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.recycling-box ul li:last-child {
    border-bottom: none;
}

.recycling-box ul li i {
    color: #00ff00;
    font-size: 12px;
}

@media (max-width: 968px) {
    .recycling-content {
        grid-template-columns: 1fr;
    }
    .recycling-box {
        position: relative;
        top: 0;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(20, 0, 0, 0.2) 0%, transparent 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(40, 0, 0, 0.3));
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.15);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(255, 0, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0000, #990000);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    font-weight: bold;
}

.testimonial-info h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 4px;
}

.testimonial-stars {
    color: #ff0000;
    font-size: 14px;
}

.testimonial-text {
    color: #aaa;
    font-size: 13px;
    line-height: 1.6;
    font-style: italic;
}

/* French Section */
.french-section {
    padding: 40px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.3) 0%, rgba(20, 0, 0, 0.1) 50%, rgba(15, 15, 15, 0.3) 100%);
}

.french-content {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.12), rgba(25, 25, 25, 0.95));
    padding: 30px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.french-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.6), transparent);
    z-index: 0;
}

.french-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.french-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.08));
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 25px;
    color: #ff6666;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
    transition: all 0.3s;
}

.french-badge:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(255, 0, 0, 0.12));
    border-color: rgba(255, 0, 0, 0.5);
    transform: translateY(-2px);
}

.french-badge i {
    font-size: 14px;
}

.french-left > div {
    flex: 1;
}

.french-left h2 {
    font-size: 28px;
    margin-bottom: 6px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

.french-left p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.french-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.french-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.french-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.french-button:hover::before {
    width: 300px;
    height: 300px;
}

.french-button.primary {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    border: 2px solid #ff0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.35);
}

.french-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
    background: linear-gradient(135deg, #cc0000, #990000);
}

.french-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 0, 0, 0.5);
}

.french-button.secondary:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.25);
}

.french-button span,
.french-button i {
    position: relative;
    z-index: 1;
}

/* Web Design Section */
.web-design-section {
    padding: 50px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
    overflow: hidden;
}

.web-design-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
}

.web-design-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.web-design-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.08));
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 30px;
    color: #ff6666;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.web-design-badge:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(255, 0, 0, 0.12));
    border-color: rgba(255, 0, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2);
}

.web-design-badge i {
    font-size: 16px;
}

.web-design-header h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #ff6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.web-design-header p {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.web-design-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.web-design-card {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.08), rgba(25, 25, 25, 0.95));
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.web-design-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.6), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.web-design-card:hover::before {
    transform: scaleX(1);
}

.web-design-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.25);
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(30, 30, 30, 0.98));
}

.web-design-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.05));
    border-radius: 18px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    transition: all 0.4s;
    position: relative;
}

.web-design-card:hover .web-design-card-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 0, 0, 0.6);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(255, 0, 0, 0.1));
}

.web-design-card-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, #ff0000, #ff6666);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.4));
    transition: all 0.4s;
}

.web-design-card:hover .web-design-card-icon i {
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.6));
}

.web-design-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 700;
    transition: color 0.3s;
}

.web-design-card:hover h3 {
    color: #ff6666;
}

.web-design-card p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s;
}

.web-design-card:hover p {
    color: #dddddd;
}

.web-design-cta {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.12), rgba(25, 25, 25, 0.95));
    padding: 50px 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    z-index: 1;
}

.web-design-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.6), transparent);
    z-index: 0;
}

.web-design-cta-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.web-design-cta-content h2,
.web-design-cta-content h3 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

.web-design-cta-content p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
    margin-bottom: 0;
}

.web-design-cta-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    align-items: center;
}

.web-design-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.web-design-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.web-design-button:hover::before {
    width: 300px;
    height: 300px;
}

.web-design-button.primary {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    border: 2px solid #ff0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.35);
}

.web-design-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
    background: linear-gradient(135deg, #cc0000, #990000);
}

.web-design-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 0, 0, 0.4);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.15);
}

.web-design-button.secondary:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.25);
}

.web-design-button:active {
    transform: translateY(0);
}

.web-design-button span,
.web-design-button i {
    position: relative;
    z-index: 1;
}

.web-design-button.tertiary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 0, 0, 0.4);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.15);
}

.web-design-button.tertiary:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.25);
}

/* Web Design Hero Section */
.web-design-hero {
    padding: 30px 0 25px;
    text-align: center;
    position: relative;
    z-index: 1;
    background-image: url('../images/slider/slide1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.web-design-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    z-index: 0;
}

.web-design-hero-content {
    position: relative;
    z-index: 1;
}

.web-design-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #b41d10);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    line-height: 1.2;
}

.web-design-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Web Design Features Section */
.web-design-features-section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
}

/* Web Design Services Section */
.web-design-services-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
}

/* Web Design Process Section */
.web-design-process-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
}

/* Web Design Projects Section */
.web-design-projects-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
}

/* Web Design Pricing Section */
.web-design-pricing-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid rgba(180, 29, 16, 0.5);
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(180, 29, 16, 0.3);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(180, 29, 16, 0.3);
    border-color: rgba(180, 29, 16, 0.5);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #b41d10, #90170e);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.pricing-price .price {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #b41d10);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pricing-price .period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: #b41d10;
    font-size: 16px;
    flex-shrink: 0;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #b41d10, #90170e);
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid rgba(180, 29, 16, 0.5);
    box-shadow: 0 8px 25px rgba(180, 29, 16, 0.3);
}

.pricing-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(180, 29, 16, 0.5);
    background: linear-gradient(135deg, #cc2315, #a11a0f);
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(180, 29, 16, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(180, 29, 16, 0.2);
}

.pricing-note p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-note i {
    color: #b41d10;
    font-size: 16px;
}

/* Technologies Section */
.web-design-technologies-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
}

.technologies-category {
    margin-bottom: 60px;
}

.technologies-category:last-of-type {
    margin-bottom: 0;
}

.category-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-title i {
    color: #b41d10;
    font-size: 24px;
}

.category-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

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

.technologies-category:first-of-type .technologies-grid {
    grid-template-columns: repeat(6, 1fr);
}

.technology-card {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    padding: 30px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.technology-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b41d10, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.technology-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(180, 29, 16, 0.3);
    border-color: rgba(180, 29, 16, 0.4);
}

.technology-card:hover::before {
    opacity: 1;
}

.technology-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.2), rgba(138, 21, 10, 0.2));
    border-radius: 16px;
    border: 1px solid rgba(180, 29, 16, 0.3);
    transition: all 0.3s ease;
}

.technology-card:hover .technology-icon {
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.3), rgba(138, 21, 10, 0.3));
    border-color: rgba(180, 29, 16, 0.5);
    transform: scale(1.1);
}

.technology-icon i {
    font-size: 32px;
    color: #b41d10;
    transition: all 0.3s ease;
}

.technology-card:hover .technology-icon i {
    color: #e53935;
    transform: scale(1.1);
}

.technology-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.technology-card:hover h3 {
    color: #b41d10;
}

.technology-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.technologies-note {
    text-align: center;
    margin-top: 50px;
    padding: 25px;
    background: rgba(180, 29, 16, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(180, 29, 16, 0.2);
}

.technologies-note p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.technologies-note i {
    color: #b41d10;
    font-size: 18px;
    flex-shrink: 0;
}

/* Web Design FAQ Section */
.web-design-faq-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(180, 29, 16, 0.2);
    border-color: rgba(180, 29, 16, 0.3);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
}

.faq-item h3 i {
    color: #b41d10;
    font-size: 20px;
    flex-shrink: 0;
}

.faq-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Web Design CTA Section */
.web-design-cta-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
}

.web-design-cta-section .web-design-cta {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.12), rgba(25, 25, 25, 0.95));
    padding: 60px 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.web-design-cta-section .web-design-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.6), transparent);
    z-index: 0;
}

.web-design-cta-section .web-design-cta-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.web-design-cta-section .web-design-cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #b41d10);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.web-design-cta-section .web-design-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

.web-design-cta-section .web-design-cta-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    align-items: center;
}

/* About Hero Section */
.about-hero {
    padding: 30px 0 25px;
    text-align: center;
    position: relative;
    z-index: 1;
    background-image: url('../images/slider/slide1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #b41d10);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    line-height: 1.2;
}

.about-hero-content .info {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 600;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* About Intro Section */
.about-intro-section {
    padding: 50px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
}

.about-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
}

/* About Services Section */
.about-services-section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
}

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

.about-services-column h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-services-column h3 i {
    color: #b41d10;
    font-size: 24px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: #b41d10;
    font-size: 14px;
    flex-shrink: 0;
}

/* About Features Section */
.about-features-section {
    padding: 0;
    position: relative;
    z-index: 1;
    background: transparent;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-feature-card {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(180, 29, 16, 0.3);
    border-color: rgba(180, 29, 16, 0.3);
}

.about-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.2), rgba(180, 29, 16, 0.05));
    border-radius: 18px;
    border: 2px solid rgba(180, 29, 16, 0.3);
    transition: all 0.3s;
}

.about-feature-card:hover .about-feature-icon {
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.3), rgba(180, 29, 16, 0.15));
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(180, 29, 16, 0.4);
}

.about-feature-icon i {
    font-size: 36px;
    color: #b41d10;
}

.about-feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.about-feature-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* About Stats Section */
.about-stats-section {
    padding: 0;
    position: relative;
    z-index: 1;
    background: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    padding: 25px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(180, 29, 16, 0.3);
    border-color: rgba(180, 29, 16, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.2), rgba(180, 29, 16, 0.05));
    border-radius: 14px;
    border: 2px solid rgba(180, 29, 16, 0.3);
    transition: all 0.3s;
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.3), rgba(180, 29, 16, 0.15));
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(180, 29, 16, 0.4);
}

.stat-icon i {
    font-size: 28px;
    color: #b41d10;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff, #b41d10);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* About Guarantee Section */
.about-guarantee-section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
}

.about-guarantee-section .container {
    max-width: 1000px;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    padding: 0;
    position: relative;
}

.guarantee-item:last-child {
    margin-bottom: 0;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.2), rgba(180, 29, 16, 0.05));
    border-radius: 50%;
    border: 2px solid rgba(180, 29, 16, 0.3);
    flex-shrink: 0;
    transition: all 0.3s;
}

.guarantee-item:hover .guarantee-icon {
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.3), rgba(180, 29, 16, 0.15));
    border-color: rgba(180, 29, 16, 0.5);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(180, 29, 16, 0.3);
}

.guarantee-icon i {
    font-size: 24px;
    color: #b41d10;
}

.guarantee-text {
    flex: 1;
    padding-top: 5px;
}

.guarantee-text h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.3;
}

.guarantee-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
    font-weight: 600;
    line-height: 1.5;
}

.guarantee-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

.guarantee-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin: 50px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Latest Projects Section */
.latest-projects {
    padding: 50px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
}

.projects-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.projects-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.08));
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 30px;
    color: #ff6666;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.projects-badge:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(255, 0, 0, 0.12));
    border-color: rgba(255, 0, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2);
}

.projects-badge i {
    font-size: 16px;
}

.projects-header h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #ff6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.projects-header p {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.project-card {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.08), rgba(25, 25, 25, 0.95));
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.6), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
    z-index: 2;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.25);
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(30, 30, 30, 0.98));
}

.project-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(50, 50, 50, 0.8));
    position: relative;
    overflow: hidden;
    filter: brightness(0.85) contrast(1.1);
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 1;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 0, 0, 0.1) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 0, 0, 0.1) 50%, transparent 52%);
    background-size: 20px 20px;
    opacity: 0.3;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s;
    backdrop-filter: blur(2px);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    border: 2px solid #ff0000;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.35);
}

.project-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
    background: linear-gradient(135deg, #cc0000, #990000);
}

.project-content {
    padding: 30px;
}

.project-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.project-tags span {
    padding: 5px 14px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(255, 0, 0, 0.05));
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 15px;
    font-size: 12px;
    color: #ff6666;
    font-weight: 600;
    transition: all 0.3s;
}

.project-card:hover .project-tags span {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.25), rgba(255, 0, 0, 0.1));
    border-color: rgba(255, 0, 0, 0.5);
}

.project-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 700;
    transition: color 0.3s;
}

.project-card:hover .project-content h3 {
    color: #ff6666;
}

.project-content p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.project-card:hover .project-content p {
    color: #dddddd;
}

.project-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.project-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #aaaaaa;
    transition: color 0.3s;
}

.project-card:hover .project-features span {
    color: #cccccc;
}

.project-features i {
    color: #ff6666;
    font-size: 12px;
}

/* Track Repair CTA Section */
.track-repair-cta {
    padding: 25px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(20, 0, 0, 0.08) 0%, rgba(25, 25, 25, 0.03) 100%);
}

.track-repair-content {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.08), rgba(25, 25, 25, 0.95));
    padding: 18px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.track-repair-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, rgba(255, 0, 0, 0.6), transparent);
    z-index: 0;
}

.track-repair-badge {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(255, 0, 0, 0.25);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.track-repair-badge:hover {
    transform: scale(1.05);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

.track-repair-badge i {
    font-size: 20px;
    color: #ff6666;
    transition: all 0.3s;
}

.track-repair-badge:hover i {
    color: #ff0000;
    transform: rotate(5deg);
}

.track-repair-info {
    flex: 1;
    position: relative;
    z-index: 1;
    min-width: 0;
}

.track-repair-info h3 {
    font-size: 18px;
    margin-bottom: 2px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
}

.track-repair-info p {
    font-size: 12px;
    color: #aaaaaa;
    margin: 0;
    line-height: 1.3;
}

.track-repair-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.25);
    flex-shrink: 0;
    white-space: nowrap;
}

.track-repair-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.35);
    background: linear-gradient(135deg, #cc0000, #990000);
}

.track-repair-button:hover i {
    transform: translateX(3px);
}

.track-repair-button:active {
    transform: translateY(0);
}

.track-repair-button i {
    font-size: 12px;
    transition: transform 0.3s;
}

@media (max-width: 768px) {
    .french-section {
        padding: 50px 0;
    }
    
    .french-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
        gap: 25px;
    }
    
    .french-left {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .french-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .french-left h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .french-left p {
        font-size: 13px;
    }
    
    .french-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .french-button {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .web-design-section {
        padding: 60px 0;
    }
    
    .web-design-header {
        margin-bottom: 40px;
    }
    
    .web-design-badge {
        font-size: 12px;
        padding: 8px 20px;
        margin-bottom: 15px;
    }
    
    .web-design-header h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .web-design-header p {
        font-size: 15px;
    }
    
    .web-design-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .web-design-card {
        padding: 30px 25px;
    }
    
    .web-design-card[style*="grid-column: span 3"] {
        grid-column: span 1 !important;
        flex-direction: column !important;
        gap: 25px !important;
        padding: 25px 20px !important;
    }
    
    .web-design-card[style*="grid-column: span 3"] > div:first-child {
        width: 80px !important;
        height: 80px !important;
        margin: 0 auto !important;
    }
    
    .web-design-card[style*="grid-column: span 3"] > div:first-child .web-design-card-icon {
        width: 80px !important;
        height: 80px !important;
    }
    
    .web-design-card[style*="grid-column: span 3"] > div:first-child .web-design-card-icon i {
        font-size: 36px !important;
    }
    
    .web-design-card[style*="grid-column: span 3"] h3 {
        font-size: 24px !important;
        text-align: center !important;
    }
    
    .web-design-card[style*="grid-column: span 3"] p {
        text-align: center !important;
        font-size: 14px !important;
    }
    
    .web-design-card[style*="grid-column: span 3"] > div:last-child > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .web-design-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .web-design-card-icon i {
        font-size: 28px;
    }
    
    .web-design-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .web-design-card p {
        font-size: 13px;
    }
    
    .web-design-card[style*="grid-column: span 3"] {
        grid-column: span 1 !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding: 20px 15px !important;
    }
    
    .web-design-card[style*="grid-column: span 3"] > div:first-child {
        width: 70px !important;
        height: 70px !important;
        margin: 0 auto !important;
    }
    
    .web-design-card[style*="grid-column: span 3"] > div:first-child .web-design-card-icon {
        width: 70px !important;
        height: 70px !important;
    }
    
    .web-design-card[style*="grid-column: span 3"] > div:first-child .web-design-card-icon i {
        font-size: 32px !important;
    }
    
    .web-design-card[style*="grid-column: span 3"] h3 {
        font-size: 22px !important;
        text-align: center !important;
        margin-bottom: 12px !important;
    }
    
    .web-design-card[style*="grid-column: span 3"] p {
        text-align: center !important;
        font-size: 13px !important;
        margin-bottom: 20px !important;
    }
    
    .web-design-card[style*="grid-column: span 3"] > div:last-child > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 15px !important;
    }
    
    .web-design-card[style*="grid-column: span 3"] > div:last-child > div[style*="margin-top: 30px"] {
        margin-top: 20px !important;
    }
    
    .web-design-card[style*="grid-column: span 3"] a {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .web-design-cta {
        flex-direction: column;
        text-align: center;
        padding: 35px 30px;
        gap: 25px;
    }
    
    .web-design-cta-content h2,
    .web-design-cta-content h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .web-design-cta-content p {
        font-size: 14px;
    }
    
    .web-design-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .web-design-button {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .latest-projects {
        padding: 60px 0;
    }
    
    .projects-header {
        margin-bottom: 40px;
    }
    
    .projects-badge {
        font-size: 12px;
        padding: 8px 20px;
        margin-bottom: 15px;
    }
    
    .projects-header h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .projects-header p {
        font-size: 15px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-card {
        border-radius: 15px;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-content {
        padding: 25px 20px;
    }
    
    .project-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .project-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .project-features {
        gap: 10px;
    }
    
    .project-features span {
        font-size: 12px;
    }
    
    .project-link {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .track-repair-cta {
        padding: 20px 0;
    }
    
    .track-repair-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .track-repair-content::before {
        width: 100%;
        height: 2px;
        top: 0;
        left: 0;
        background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.6), transparent);
    }
    
    .track-repair-badge {
        width: 44px;
        height: 44px;
        margin: 0 auto;
    }
    
    .track-repair-badge i {
        font-size: 18px;
    }
    
    .track-repair-info h3 {
        font-size: 17px;
        margin-bottom: 4px;
    }
    
    .track-repair-info p {
        font-size: 11px;
    }
    
    .track-repair-button {
        width: 100%;
        padding: 11px 20px;
        font-size: 12px;
    }
    
    .about-us {
        padding: 60px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-left h2,
    .about-right h2 {
        font-size: 32px;
    }
    
    .about-left p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .about-left .service-list li {
        font-size: 13px;
        padding: 6px 0;
        padding-left: 28px;
    }
    
    .about-left .service-list li::before {
        left: 0;
        width: 20px;
        text-align: left;
    }
    
    .about-right {
        padding: 30px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quote-form input,
    .quote-form textarea {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .submit-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .why-choose-us {
        padding: 60px 0;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .why-choose-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 24px 20px;
        border-bottom: 2px solid rgba(255, 0, 0, 0.1);
    }
    
    .why-choose-item:nth-child(3),
    .why-choose-item:nth-child(4) {
        border-bottom: 2px solid rgba(255, 0, 0, 0.1);
    }
    
    .why-choose-item:last-child {
        border-bottom: none;
    }
    
    .why-choose-number {
        font-size: 24px;
        min-width: auto;
        text-align: center;
    }
    
    .why-choose-icon {
        font-size: 32px;
        min-width: auto;
    }
    
    .why-choose-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .why-choose-content p {
        font-size: 13px;
    }
    
    /* Web Design Hero Responsive */
    .web-design-hero-content h1 {
        font-size: 32px;
    }
    
    .web-design-hero-content p {
        font-size: 16px;
    }
    
    /* Web Design Features Section Responsive */
    .web-design-features-section {
        padding: 50px 0;
    }
    
    /* Web Design Services Section Responsive */
    .web-design-services-section {
        padding: 60px 0;
    }
    
    /* Web Design Process Section Responsive */
    .web-design-process-section {
        padding: 60px 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .process-step {
        padding: 30px 25px;
    }
    
    .step-number {
        font-size: 48px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .step-icon i {
        font-size: 28px;
    }
    
    .step-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    /* Web Design Projects Section Responsive */
    .web-design-projects-section {
        padding: 60px 0;
    }
    
    /* Web Design Pricing Section Responsive */
    .web-design-pricing-section {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-header h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .pricing-price .price {
        font-size: 40px;
    }
    
    /* Technologies Section Mobile */
    .web-design-technologies-section {
        padding: 60px 0;
    }
    
    .technologies-category {
        margin-bottom: 40px;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    .category-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .technologies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .technology-card {
        padding: 25px 20px;
    }
    
    .technology-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .technology-icon i {
        font-size: 28px;
    }
    
    .technology-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .technology-card p {
        font-size: 13px;
    }
    
    .technologies-note {
        margin-top: 40px;
        padding: 20px;
    }
    
    .technologies-note p {
        font-size: 14px;
        flex-direction: column;
        text-align: center;
    }
    
    .technologies-category:first-of-type .technologies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .technologies-category:first-of-type .technologies-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-features li {
        font-size: 14px;
        padding: 10px 0;
    }
    
    /* Web Design FAQ Section Responsive */
    .web-design-faq-section {
        padding: 60px 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    .faq-item h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .faq-item p {
        font-size: 14px;
    }
    
    /* Web Design CTA Section Responsive */
    .web-design-cta-section {
        padding: 60px 0;
    }
    
    .web-design-cta-section .web-design-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }
    
    .web-design-cta-section .web-design-cta-content {
        width: 100%;
    }
    
    .web-design-cta-section .web-design-cta-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .web-design-cta-section .web-design-cta-content p {
        font-size: 16px;
    }
    
    .web-design-cta-section .web-design-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .web-design-cta-section .web-design-button {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }
    
    /* About Hero Responsive */
    .about-hero-content h1 {
        font-size: 32px;
    }
    
    .about-hero-content .info {
        font-size: 16px;
    }
    
    /* About Intro Section Responsive */
    .about-intro-section {
        padding: 40px 0;
    }
    
    .about-intro-content p {
        font-size: 16px;
        line-height: 1.7;
    }
    
    /* About Services Section Responsive */
    .about-services-section {
        padding: 50px 0;
    }
    
    .about-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-services-column h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .service-list li {
        font-size: 14px;
        padding: 10px 0;
    }
    
    /* About Features Section Responsive */
    .about-features-section {
        padding: 60px 0;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-feature-card {
        padding: 30px 25px;
    }
    
    .about-feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .about-feature-icon i {
        font-size: 32px;
    }
    
    .about-feature-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .about-feature-card p {
        font-size: 14px;
    }
    
    /* About Stats Section Responsive */
    .about-stats-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 25px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .stat-icon i {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .stat-text {
        font-size: 13px;
    }
    
    /* About Guarantee Section Responsive */
    .about-guarantee-section {
        padding: 50px 0;
    }
    
    .guarantee-item {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .guarantee-icon {
        width: 55px;
        height: 55px;
        margin: 0 auto;
    }
    
    .guarantee-icon i {
        font-size: 22px;
    }
    
    .guarantee-text {
        padding-top: 0;
    }
    
    .guarantee-text h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .guarantee-subtitle {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .guarantee-text p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .guarantee-divider {
        margin: 40px 0;
    }
}

/* CTA Banner */
.cta-banner {
    padding: 60px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-banner-content {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(25, 25, 25, 0.8));
    padding: 60px 40px;
    border-radius: 25px;
    border: 2px solid rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-banner-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
}

.cta-banner h2 {
    font-size: 38px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-banner .cta-buttons {
    justify-content: center;
}

/* Values Section */
.values-section {
    padding: 40px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.2) 0%, rgba(20, 0, 0, 0.08) 50%, rgba(15, 15, 15, 0.2) 100%);
}

.values-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.6), rgba(40, 0, 0, 0.2));
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.15);
    padding: 40px 50px;
    position: relative;
    overflow: hidden;
}

.values-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.6), transparent);
    z-index: 0;
}

.value-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0 30px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.value-item:first-child {
    padding-left: 0;
}

.value-item:last-child {
    padding-right: 0;
}

.value-item:hover {
    transform: translateY(-3px);
}

.value-item i {
    font-size: 32px;
    background: linear-gradient(135deg, #ff0000, #ff6666);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.4));
    flex-shrink: 0;
    margin-top: 5px;
    transition: all 0.3s;
}

.value-item:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.6));
}

.value-item div {
    flex: 1;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s;
}

.value-item:hover h3 {
    color: #ff6666;
}

.value-item p {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s;
}

.value-item:hover p {
    color: #cccccc;
}

.value-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(255, 0, 0, 0.3), transparent);
    flex-shrink: 0;
    opacity: 0.5;
}

/* Call Today Overlay */
.call-today-overlay {
    padding: 0;
    margin: 50px 0 -60px;
    position: relative;
    z-index: 10;
}

.call-today-card {
    background: rgba(20, 20, 22, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 35px 45px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 30px;
}

.call-today-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #b41d10, #cc2315);
    z-index: 0;
}

.call-card-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.2), rgba(180, 29, 16, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(180, 29, 16, 0.3);
    position: relative;
    z-index: 1;
}

.call-card-icon i {
    font-size: 28px;
    color: #b41d10;
}

.call-card-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.call-today-card h2 {
    font-size: 18px;
    margin: 0 0 8px 0;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.call-number {
    font-size: 28px;
    color: #ffffff;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.call-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #b41d10, #90170e);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(180, 29, 16, 0.4);
    position: relative;
    transition: all 0.3s;
    z-index: 1;
    min-width: 120px;
}

.call-button:hover {
    transform: translateX(3px);
    box-shadow: 0 6px 20px rgba(180, 29, 16, 0.5);
    background: linear-gradient(135deg, #cc2315, #a11a0f);
}

.call-button i {
    font-size: 14px;
    transition: transform 0.3s;
}

.call-button:hover i {
    transform: translateX(3px);
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(15, 15, 17, 0.98), rgba(10, 10, 11, 0.98));
    padding: 80px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.footer-main {
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
    min-width: 280px;
    max-width: 320px;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    max-width: 280px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    flex: 1;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(180, 29, 16, 0.3);
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #b41d10, transparent);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-column ul li i {
    color: #b41d10;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
}

.footer-column ul li span {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-column ul li a:hover {
    color: #b41d10;
    transform: translateX(3px);
}

.footer-column ul li a[href^="tel:"],
.footer-column ul li a[href^="mailto:"] {
    color: #b41d10;
    font-weight: 600;
}

.footer-column ul li a[href^="tel:"]:hover,
.footer-column ul li a[href^="mailto:"]:hover {
    color: #cc2315;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

/* Contact Page */
.contact-hero {
    padding: 30px 0 25px;
    text-align: center;
    position: relative;
    z-index: 1;
    background-image: url('../images/slider/slide1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.2), rgba(180, 29, 16, 0.1));
    border: 1px solid rgba(180, 29, 16, 0.3);
    border-radius: 50px;
    color: #b41d10;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease-out;
}

.hero-badge i {
    font-size: 16px;
}

.contact-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #b41d10);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    line-height: 1.2;
}

.contact-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-quick-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.quick-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.quick-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(180, 29, 16, 0.5);
}

.quick-action-btn.phone {
    background: linear-gradient(135deg, #b41d10, #90170e);
    border-color: rgba(180, 29, 16, 0.5);
}

.quick-action-btn.phone:hover {
    background: linear-gradient(135deg, #cc2315, #a11a0f);
    box-shadow: 0 8px 30px rgba(180, 29, 16, 0.5);
}

.quick-action-btn.email {
    border-color: rgba(180, 29, 16, 0.3);
}

.quick-action-btn.email:hover {
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.1), rgba(180, 29, 16, 0.05));
    border-color: rgba(180, 29, 16, 0.5);
    color: #b41d10;
}

.quick-action-btn.directions {
    border-color: rgba(180, 29, 16, 0.3);
}

.quick-action-btn.directions:hover {
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.1), rgba(180, 29, 16, 0.05));
    border-color: rgba(180, 29, 16, 0.5);
    color: #b41d10;
}

.quick-action-btn i {
    font-size: 16px;
}

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

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

/* Contact Features Section */
.contact-features-section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

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

.contact-features-section .feature-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(40, 0, 0, 0.3));
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(255, 0, 0, 0.15);
    transition: all 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.contact-features-section .feature-card:hover {
    border-color: rgba(255, 0, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
}

.contact-features-section .feature-icon {
    font-size: 36px;
    background: linear-gradient(135deg, #ff0000, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 40px;
    width: auto;
    height: auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0;
    background-color: transparent;
}

.contact-features-section .feature-icon::before {
    display: none;
}

.contact-features-section .feature-card:hover .feature-icon {
    transform: none;
    box-shadow: none;
}

.contact-features-section .feature-card:hover .feature-icon::before {
    display: none;
}

.contact-features-section .feature-icon i {
    font-size: 36px;
    color: transparent;
    background: linear-gradient(135deg, #ff0000, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: none;
    filter: none;
}

.contact-features-section .feature-card:hover .feature-icon i {
    transform: none;
    filter: none;
}

.contact-features-section .feature-content {
    flex: 1;
}

.contact-features-section .feature-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 700;
}

.contact-features-section .feature-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.contact-section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.form-header {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(180, 29, 16, 0.2);
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-header h2 i {
    color: #b41d10;
    font-size: 28px;
}

.form-header p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

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

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

.form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: rgba(15, 15, 17, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b41d10;
    background: rgba(15, 15, 17, 0.95);
    box-shadow: 0 0 0 3px rgba(180, 29, 16, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1c;
    color: #ffffff;
}

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

.submit-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, #b41d10, #90170e);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(180, 29, 16, 0.4);
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(180, 29, 16, 0.5);
    background: linear-gradient(135deg, #cc2315, #a11a0f);
}

.submit-btn i {
    font-size: 16px;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Message Styles */
.form-message {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    animation: slideDown 0.3s ease-out;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.form-message i {
    margin-right: 8px;
    font-size: 16px;
}

.form-message ul {
    margin-top: 10px;
    padding-left: 20px;
}

.form-message ul li {
    margin-top: 5px;
}

.form-message a {
    color: inherit;
    text-decoration: underline;
}

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

/* Honeypot field for spam prevention */
.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}

/* Field error messages */
.field-error {
    color: #f87171;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.contact-info-wrapper {
    position: sticky;
    top: 120px;
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-main-info {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-title {
    font-size: 26px;
    margin: 0 0 25px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

.contact-quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.contact-quick-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(180, 29, 16, 0.5);
}

.contact-quick-btn.email-btn:hover {
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.1), rgba(180, 29, 16, 0.05));
    border-color: rgba(180, 29, 16, 0.5);
    color: #b41d10;
}

.contact-quick-btn.map-btn:hover {
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.1), rgba(180, 29, 16, 0.05));
    border-color: rgba(180, 29, 16, 0.5);
    color: #b41d10;
}

.contact-quick-btn.phone-btn {
    background: linear-gradient(135deg, #b41d10, #90170e);
    border-color: rgba(180, 29, 16, 0.5);
    color: #ffffff;
}

.contact-quick-btn.phone-btn:hover {
    background: linear-gradient(135deg, #cc2315, #a11a0f);
    box-shadow: 0 8px 30px rgba(180, 29, 16, 0.5);
}

.contact-quick-btn i {
    font-size: 20px;
}

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

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-item i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(180, 29, 16, 0.1);
    border-radius: 10px;
    color: #b41d10;
    font-size: 18px;
    margin-top: 2px;
}

.contact-detail-item strong {
    display: block;
    font-size: 12px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.contact-detail-item a {
    color: #b41d10;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-detail-item a:hover {
    color: #cc2315;
}

.contact-location-info {
    margin-top: 35px;
}

.location-info-title {
    font-size: 18px;
    margin: 0 0 20px;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(180, 29, 16, 0.3);
}

.location-info-title i {
    color: #b41d10;
    font-size: 20px;
}

.location-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.location-detail-item {
    background: rgba(15, 15, 17, 0.6);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.location-detail-item:hover {
    background: rgba(20, 20, 22, 0.8);
    border-color: rgba(180, 29, 16, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(180, 29, 16, 0.2);
}

.location-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(180, 29, 16, 0.15);
    border-radius: 10px;
    border: 1px solid rgba(180, 29, 16, 0.25);
}

.location-icon i {
    font-size: 18px;
    color: #b41d10;
}

.location-content h4 {
    font-size: 14px;
    margin: 0 0 6px;
    color: #ffffff;
    font-weight: 700;
}

.location-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-wrapper {
        position: static;
    }
    
    .contact-hero-content h1 {
        font-size: 40px;
    }
    
    .contact-hero-content p {
        font-size: 18px;
    }
    
    .hero-quick-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quick-action-btn {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-wrapper,
    .contact-info-card {
        padding: 35px 25px;
    }
    
    .form-header h2,
    .contact-info-title {
        font-size: 26px;
    }
    
}

/* Map Section */
.map-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

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

.map-title {
    font-size: 42px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #b41d10);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.map-title i {
    color: #b41d10;
    -webkit-text-fill-color: #b41d10;
}

.map-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    background: rgba(10, 10, 11, 0.5);
}

.map-iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    filter: invert(1) hue-rotate(180deg) brightness(0.85) contrast(1.1);
    opacity: 0.9;
}

.map-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 11, 0.2);
    pointer-events: none;
    border-radius: 20px;
    z-index: 1;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 50px;
    }
    
    .contact-hero-content h1 {
        font-size: 32px;
    }
    
    .contact-hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .contact-features-section {
        padding: 40px 0;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-form-wrapper,
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .form-header h2,
    .contact-info-title {
        font-size: 22px;
    }
    
    .form-header p {
        font-size: 14px;
    }
    
    .contact-info-card {
        padding: 25px;
    }
    
    .contact-info-title {
        font-size: 22px;
    }
    
    .contact-quick-links {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .contact-quick-btn {
        flex-direction: row;
        justify-content: center;
        padding: 14px;
    }
    
    .location-details-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .contact-detail-item {
        gap: 12px;
    }
    
    .location-detail-item {
        padding: 16px;
    }
    
    .map-section {
        padding: 50px 0;
    }
    
    .map-header {
        margin-bottom: 30px;
    }
    
    .map-title {
        font-size: 28px;
        flex-wrap: wrap;
    }
    
    .map-subtitle {
        font-size: 16px;
    }
    
    .map-iframe {
        height: 350px;
    }
    
    .contact-info-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b41d10, #90170e);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 24px rgba(180, 29, 16, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 40;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #cc2315, #a11a0f);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(180, 29, 16, 0.5);
}

.back-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .values-section {
        padding: 50px 0;
    }
    
    .values-compact {
        flex-direction: column;
        gap: 0;
        padding: 35px 30px;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 0;
        gap: 15px;
    }
    
    .value-item:first-child {
        padding-left: 0;
        padding-top: 0;
    }
    
    .value-item:last-child {
        padding-right: 0;
        padding-bottom: 0;
    }
    
    .value-item i {
        font-size: 36px;
        margin-top: 0;
    }
    
    .value-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.3), transparent);
        margin: 15px 0;
    }
    
    .value-item h3 {
        font-size: 19px;
        margin-bottom: 8px;
    }
    
    .value-item p {
        font-size: 13px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero h1 { font-size: 42px; }
    .hero p { font-size: 16px; }
    .section-title { font-size: 34px; }
    .hero-image { height: 300px; }
    
    .nav { height: 64px; padding: 0 20px; gap: 16px; }
    .links { 
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(25, 25, 27, 0.98), rgba(20, 20, 22, 0.98));
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }
    
    .links.active {
        display: flex;
    }
    
    .links a {
        width: 100%;
        padding: 14px 16px;
        justify-content: flex-start;
        border-radius: 8px;
    }
    
    .links .nav-dropdown {
        width: 100%;
    }
    
    .links .nav-dropdown-header {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .links .nav-dropdown-link {
        flex: 1;
        width: auto;
    }
    
    .links .nav-dropdown-toggle {
        padding: 8px;
        width: auto;
        min-width: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .links .nav-dropdown-toggle i.fa-chevron-down {
        margin-left: 0;
    }
    
    .links .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        margin-top: 8px;
        padding: 8px 0;
        border-radius: 8px;
        display: none;
    }
    
    .links .nav-dropdown-menu.active {
        display: block;
    }
    
    .links .nav-dropdown-toggle.active i.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .menu-toggle { display: flex; }
    
    .header-wrapper {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        transform: none !important;
        will-change: auto !important;
        background: rgba(10, 10, 11, 0.95) !important;
        backdrop-filter: blur(20px) saturate(180%) !important;
    }
    
    .header {
        position: relative !important;
        transform: none !important;
        background: transparent !important;
    }
    
    body {
        padding-top: 64px !important;
    }
    
    html {
        scroll-padding-top: 64px;
    }
    
    .top-bar {
        display: none;
    }
    
    .top-bar-item {
        justify-content: center;
        font-size: 13px;
        gap: 10px;
    }
    
    .top-bar-item i {
        font-size: 15px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }
    
    .footer-brand {
        min-width: auto;
        align-items: center;
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4 {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column ul {
        align-items: center;
    }
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .services-grid .service-card {
        padding: 20px !important;
    }
    
    /* Fix for service cards with inline flex styles */
    .services-grid .service-card[style*="display: flex"],
    .services-grid .service-card[style*="display:flex"] {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        gap: 15px !important;
    }
    
    .services-grid .service-card[style*="display: flex"] > div:first-child,
    .services-grid .service-card[style*="display:flex"] > div:first-child {
        margin: 0 auto !important;
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
    }
    
    .services-grid .service-card[style*="display: flex"] > div:last-child,
    .services-grid .service-card[style*="display:flex"] > div:last-child {
        text-align: center !important;
        flex: 1 !important;
    }
    
    .services-grid .service-card[style*="display: flex"] h3,
    .services-grid .service-card[style*="display:flex"] h3 {
        text-align: center !important;
    }
    
    .services-grid .service-card[style*="display: flex"] p,
    .services-grid .service-card[style*="display:flex"] p {
        text-align: center !important;
    }
    
    .cta-buttons { flex-direction: column; }
    .hero-text { text-align: center; }
    
    .top-bar {
        display: none;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Fix container overflow on mobile */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Fix inline max-width styles */
    div[style*="max-width: 1400px"],
    div[style*="max-width: 1200px"] {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }
    
    /* Prevent horizontal overflow */
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    section {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    footer {
        padding: 50px 0 20px;
    }
    
    .footer-main {
        gap: 30px;
        align-items: center;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .footer-description {
        max-width: 100%;
        font-size: 13px;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4 {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column ul {
        align-items: center;
    }
    
    .footer-column ul li {
        justify-content: center;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 11px;
    }
    
    .footer-bottom p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 10px;
        line-height: 1.6;
    }
    
    .call-today-card {
        padding: 25px 20px;
        max-width: 100%;
        margin: 0 20px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .call-card-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        margin: 0 auto;
    }
}

/* Recycling Page */
.recycling-hero {
    padding: 30px 0 25px;
    text-align: center;
    position: relative;
    z-index: 1;
    background-image: url('../images/slider/slide1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.recycling-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    z-index: 0;
}

.recycling-hero-content {
    position: relative;
    z-index: 1;
}

.recycling-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #b41d10);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    line-height: 1.2;
}

.recycling-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Recycling Info Bar */
.recycling-info-bar {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.recycling-info-grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 968px) {
    .recycling-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.recycling-info-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.recycling-cta-text {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.recycling-cta-text i {
    color: #b41d10;
    font-size: 20px;
}

.recycling-accept-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
}

/* Why Recycle Section */
.recycling-why-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

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

.section-header-recycling h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #b41d10);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header-recycling p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.why-recycle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-recycle-card {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.98), rgba(0, 40, 0, 0.4));
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.why-recycle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ff00, #00aa00, #00ff00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-recycle-card:hover::before {
    transform: scaleX(1);
}

.why-recycle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 255, 0, 0.15);
    border-color: rgba(0, 255, 0, 0.4);
}

.why-recycle-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.15), rgba(0, 170, 0, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(0, 255, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.why-recycle-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.3), rgba(0, 170, 0, 0.1));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.why-recycle-card:hover .why-recycle-icon {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.3), rgba(0, 170, 0, 0.15));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(0, 255, 0, 0.4);
    border-color: rgba(0, 255, 0, 0.5);
}

.why-recycle-card:hover .why-recycle-icon::after {
    opacity: 1;
}

.why-recycle-icon i {
    font-size: 32px;
    color: #00ff00;
    filter: drop-shadow(0 0 12px rgba(0, 255, 0, 0.6));
    transition: all 0.4s;
}

.why-recycle-card:hover .why-recycle-icon i {
    filter: drop-shadow(0 0 16px rgba(0, 255, 0, 0.8));
    transform: scale(1.1);
}

.why-recycle-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: all 0.3s;
}

.why-recycle-card:hover h3 {
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.why-recycle-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin: 0;
    transition: color 0.3s;
}

.why-recycle-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* What We Accept Section */
.recycling-what-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 17, 0.5), rgba(10, 10, 11, 0.5));
}

.what-we-accept {
    max-width: 1200px;
    margin: 0 auto;
}

.what-we-accept h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.what-we-accept h2 i {
    color: #b41d10;
    font-size: 32px;
}

.what-we-accept > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.7;
}

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

.accept-category {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(0, 40, 0, 0.3));
    backdrop-filter: blur(20px);
    padding: 30px 25px;
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 0, 0.15);
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.accept-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 255, 0, 0.15);
    border-color: rgba(0, 255, 0, 0.4);
}

.accept-category h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 255, 0, 0.2);
}

.accept-category h3 i {
    color: #00ff00;
    font-size: 20px;
    filter: drop-shadow(0 0 6px rgba(0, 255, 0, 0.4));
}

.accept-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accept-category ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.accept-category ul li i {
    color: #00ff00;
    font-size: 12px;
    flex-shrink: 0;
}

/* Process Steps Section */
.recycling-process-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

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

.process-step {
    position: relative;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(180, 29, 16, 0.3);
    border-color: rgba(180, 29, 16, 0.3);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 72px;
    font-weight: 900;
    color: rgba(180, 29, 16, 0.08);
    line-height: 1;
    transition: all 0.3s;
}

.process-step:hover .step-number {
    color: rgba(180, 29, 16, 0.15);
    transform: scale(1.1);
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.2), rgba(180, 29, 16, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(180, 29, 16, 0.3);
    transition: all 0.3s;
}

.process-step:hover .step-icon {
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.3), rgba(180, 29, 16, 0.15));
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(180, 29, 16, 0.4);
}

.step-icon i {
    font-size: 32px;
    color: #b41d10;
    filter: drop-shadow(0 0 8px rgba(180, 29, 16, 0.5));
}

/* Green styling for recycling process steps */
.recycling-process-section .process-step {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(0, 40, 0, 0.3));
    border: 1px solid rgba(0, 255, 0, 0.15);
}

.recycling-process-section .process-step:hover {
    box-shadow: 0 20px 60px rgba(0, 255, 0, 0.15);
    border-color: rgba(0, 255, 0, 0.4);
}

.recycling-process-section .step-number {
    color: rgba(0, 255, 0, 0.08);
}

.recycling-process-section .process-step:hover .step-number {
    color: rgba(0, 255, 0, 0.15);
}

.recycling-process-section .step-icon {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.2), rgba(0, 170, 0, 0.05));
    border: 2px solid rgba(0, 255, 0, 0.3);
}

.recycling-process-section .process-step:hover .step-icon {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.3), rgba(0, 170, 0, 0.15));
    box-shadow: 0 8px 24px rgba(0, 255, 0, 0.4);
}

.recycling-process-section .step-icon i {
    color: #00ff00;
    filter: drop-shadow(0 0 8px rgba(0, 255, 0, 0.5));
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #ffffff;
    font-weight: 700;
}

.step-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Benefits Section */
.recycling-benefits-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 17, 0.5), rgba(10, 10, 11, 0.5));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(0, 40, 0, 0.3));
    backdrop-filter: blur(20px);
    padding: 35px 28px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 0, 0.15);
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 255, 0, 0.15);
    border-color: rgba(0, 255, 0, 0.4);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.2), rgba(0, 170, 0, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(0, 255, 0, 0.3);
    transition: all 0.3s;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.3), rgba(0, 170, 0, 0.15));
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 255, 0, 0.4);
}

.benefit-icon i {
    font-size: 32px;
    color: #00ff00;
    filter: drop-shadow(0 0 8px rgba(0, 255, 0, 0.5));
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #ffffff;
    font-weight: 700;
}

.benefit-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Recycling Areas Section */
.recycling-areas-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 17, 0.5), rgba(10, 10, 11, 0.5));
}

.areas-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.area-item {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.area-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(180, 29, 16, 0.1), transparent);
    transition: left 0.5s;
}

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

.area-item:hover {
    transform: translateY(-4px);
    border-color: rgba(180, 29, 16, 0.4);
    box-shadow: 0 12px 35px rgba(180, 29, 16, 0.3);
    background: linear-gradient(135deg, rgba(30, 30, 32, 0.95), rgba(25, 25, 27, 0.95));
}

.area-item i {
    color: #b41d10;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.area-item:hover i {
    transform: scale(1.2);
    color: #ff3333;
}

.area-item span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
}

.area-item:hover span {
    color: #ffffff;
    font-weight: 600;
}

/* Recycling CTA Section */
.recycling-cta-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.recycling-cta-card {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    padding: 60px 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    line-height: 1.7;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #b41d10, #90170e);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(180, 29, 16, 0.4);
    border: 1px solid rgba(180, 29, 16, 0.5);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(180, 29, 16, 0.5);
    background: linear-gradient(135deg, #cc2315, #a11a0f);
}

.cta-button.secondary {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.1), rgba(180, 29, 16, 0.05));
    border-color: rgba(180, 29, 16, 0.5);
    color: #b41d10;
}

.cta-button i {
    font-size: 16px;
}

@media (max-width: 968px) {
    .why-recycle-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .accept-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .accept-category {
        padding: 28px 22px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .recycling-cta-card {
        padding: 40px 30px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .recycling-hero-content h1 {
        font-size: 32px;
    }
    
    .recycling-hero-content p {
        font-size: 16px;
    }
    
    .recycling-info-bar {
        padding: 30px 0;
    }
    
    .recycling-info-bar .services-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .recycling-info-bar .service-card[style*="display: flex"] {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        gap: 15px !important;
        padding: 20px 15px !important;
    }
    
    .recycling-info-bar .service-card[style*="display: flex"] > div:first-child {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        margin: 0 auto !important;
    }
    
    .recycling-info-bar .service-card[style*="display: flex"] > div:last-child {
        text-align: center !important;
    }
    
    .recycling-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .recycling-info-grid .service-card {
        padding: 20px !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
        align-items: center !important;
    }
    
    .recycling-info-grid .service-card > div:first-child {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        margin: 0 auto !important;
        flex-shrink: 0 !important;
    }
    
    .recycling-info-grid .service-card > div:last-child {
        flex: 1 !important;
        text-align: center !important;
    }
    
    .recycling-info-grid .service-card h3 {
        font-size: 16px !important;
        text-align: center !important;
    }
    
    .recycling-info-grid .service-card p {
        font-size: 13px !important;
        text-align: center !important;
    }
    
    .recycling-cta-text {
        font-size: 16px;
        flex-direction: column;
        gap: 8px;
    }
    
    .recycling-accept-text {
        font-size: 14px;
    }
    
    .section-header-recycling h2 {
        font-size: 28px;
    }
    
    .section-header-recycling p {
        font-size: 16px;
    }
    
    .why-recycle-grid,
    .benefits-grid,
    .accept-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .recycling-why-section,
    .recycling-what-section,
    .recycling-process-section,
    .recycling-benefits-section,
    .recycling-areas-section,
    .recycling-cta-section {
        padding: 50px 0;
    }
    
    .areas-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .area-item {
        padding: 18px 20px;
    }
    
    .area-item span {
        font-size: 14px;
    }
    
    .why-recycle-card,
    .benefit-card,
    .accept-category,
    .process-step {
        padding: 30px 20px;
    }
    
    .recycling-cta-card {
        padding: 35px 25px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-button {
        justify-content: center;
    }
}

/* Pickup Page */
.pickup-hero {
    padding: 40px 0 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    background-image: url('../images/slider/slide1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.pickup-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    z-index: 0;
}

.pickup-hero-content {
    position: relative;
    z-index: 1;
}

.pickup-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #b41d10);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    line-height: 1.2;
}

.pickup-hero-content h1 span {
    color: #b41d10;
    -webkit-text-fill-color: #b41d10;
}

.pickup-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.pickup-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.pickup-highlight i {
    color: #b41d10;
    font-size: 18px;
}

.pickup-highlight span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
}

/* Pickup Info Section */
.pickup-info-section {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.pickup-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pickup-info-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(40, 0, 0, 0.3));
    padding: 25px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 0, 0, 0.15);
    transition: all 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.pickup-info-card:hover {
    border-color: rgba(255, 0, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.2);
}

.pickup-info-icon {
    font-size: 28px;
    background: linear-gradient(135deg, #ff0000, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 35px;
    width: auto;
    height: auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
}

.pickup-info-card:hover .pickup-info-icon {
    transform: none;
    box-shadow: none;
}

.pickup-info-icon i {
    font-size: 28px;
    color: transparent;
    background: linear-gradient(135deg, #ff0000, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: none;
    filter: none;
}

.pickup-info-card:hover .pickup-info-icon i {
    transform: none;
    filter: none;
}

.pickup-info-content {
    flex: 1;
}

.pickup-info-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 700;
}

.pickup-info-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Pickup Form Section */
.pickup-form-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 17, 0.5), rgba(10, 10, 11, 0.5));
}

.pickup-form-container {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.pickup-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #b41d10, #90170e);
    border-radius: 24px 24px 0 0;
}

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

.pickup-form-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
}

.pickup-requirement {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 193, 7, 0.3);
    font-size: 15px;
}

.pickup-requirement i {
    font-size: 18px;
}

.pickup-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: left;
}

.pickup-message.success-message {
    background: rgba(209, 242, 235, 0.1);
    color: #0e7c7b;
    border: 2px solid rgba(125, 206, 175, 0.3);
}

.pickup-message.error-message {
    background: rgba(250, 219, 216, 0.1);
    color: #c0392b;
    border: 2px solid rgba(241, 148, 138, 0.3);
}

.pickup-message i {
    font-size: 20px;
    flex-shrink: 0;
}

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

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

.pickup-form-group.full-width {
    grid-column: 1 / -1;
}

.pickup-form-label {
    display: block;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 16px;
}

.pickup-form-label .required {
    color: #b41d10;
    margin-left: 3px;
}

.pickup-form-input,
.pickup-form-select,
.pickup-form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
    background: rgba(15, 15, 17, 0.5);
    color: #ffffff;
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.pickup-form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b41d10' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    padding-right: 45px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pickup-form-select option {
    background: rgba(15, 15, 17, 0.95);
    color: #ffffff;
    padding: 10px;
}

.pickup-form-input::placeholder,
.pickup-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.address-autocomplete-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.address-autocomplete-hint i,
.quantity-hint i {
    color: #b41d10;
    font-size: 14px;
}

.quantity-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Google Places Autocomplete Styling */
.pac-container {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.98), rgba(20, 20, 22, 0.98));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-top: 5px;
    padding: 10px 0;
}

.pac-item {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.pac-item:hover {
    background: rgba(180, 29, 16, 0.1);
}

.pac-item-selected {
    background: rgba(180, 29, 16, 0.2);
}

.pac-item-query {
    color: #ffffff;
    font-size: 15px;
}

.pac-icon {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEyIDJMMyA3bDkgNSA5LTUtOS01em0wIDJsNi41IDMuNUwxMiAxMSA1LjUgNy41IDEyIDJ6bTAgMTBsLTkgNSA5IDUgOS01LTktNXoiIGZpbGw9IiNiNDFkMTAiLz48L3N2Zz4=');
    background-size: 15px 15px;
    width: 15px;
    height: 15px;
    margin-right: 10px;
}

.pac-matched {
    color: #b41d10;
    font-weight: 600;
}

.pickup-form-input:focus,
.pickup-form-select:focus,
.pickup-form-textarea:focus {
    outline: none;
    border-color: #b41d10;
    box-shadow: 0 0 0 3px rgba(180, 29, 16, 0.2);
    background: rgba(15, 15, 17, 0.7);
}

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

.pickup-form-submit {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.pickup-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #b41d10, #90170e);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(180, 29, 16, 0.4);
    position: relative;
    overflow: hidden;
}

.pickup-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(180, 29, 16, 0.5);
    background: linear-gradient(135deg, #cc2315, #a11a0f);
}

.pickup-submit-btn:active {
    transform: translateY(-1px);
}

.pickup-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.pickup-submit-btn i {
    font-size: 18px;
}

.pickup-submit-note {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media (max-width: 968px) {
    .pickup-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pickup-form-container {
        padding: 40px 30px;
    }
    
    .pickup-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pickup-hero-content h1 {
        font-size: 32px;
    }
    
    .pickup-hero-content p {
        font-size: 16px;
    }
    
    .pickup-highlight {
        flex-direction: column;
        gap: 12px;
    }
    
    .pickup-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pickup-info-card {
        padding: 22px 18px;
        flex-direction: column;
        text-align: center;
    }
    
    .pickup-info-icon {
        margin: 0 auto 12px;
    }
    
    .pickup-info-icon i {
        font-size: 24px;
    }
    
    .pickup-info-card h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .pickup-info-card p {
        font-size: 12px;
    }
    
    .pickup-form-section {
        padding: 50px 0;
    }
    
    .pickup-form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .pickup-form-header h2 {
        font-size: 28px;
    }
    
    .pickup-submit-btn {
        padding: 16px 40px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
    
    .call-card-icon i {
        font-size: 24px;
    }
    
    .call-today-card h2 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .call-number {
        font-size: 24px;
    }
    
    .call-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* Web Design Page */
.webdesign-hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    background-image: url('../images/slider/slide1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.webdesign-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    z-index: 0;
}

.webdesign-hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.2), rgba(180, 29, 16, 0.1));
    border: 1px solid rgba(180, 29, 16, 0.3);
    border-radius: 50px;
    color: #b41d10;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-badge i {
    font-size: 16px;
}

.webdesign-hero-content h1 {
    font-size: 64px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff, #b41d10);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    line-height: 1.2;
}

.webdesign-hero-content h1 span {
    color: #b41d10;
    -webkit-text-fill-color: #b41d10;
}

.webdesign-hero-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #b41d10);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Web Design Services Section */
.webdesign-services-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.section-header-webdesign h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #b41d10);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header-webdesign p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.webdesign-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.webdesign-service-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(40, 0, 0, 0.3));
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.15);
    transition: all 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.webdesign-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.webdesign-service-card:hover::before {
    opacity: 1;
}

.webdesign-service-card:hover {
    border-color: rgba(255, 0, 0, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.25);
}

.webdesign-service-icon {
    font-size: 40px;
    background: linear-gradient(135deg, #ff0000, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 45px;
    width: auto;
    height: auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
    position: relative;
    z-index: 1;
}

.webdesign-service-card:hover .webdesign-service-icon {
    transform: scale(1.1);
}

.webdesign-service-icon i {
    font-size: 40px;
    color: transparent;
    background: linear-gradient(135deg, #ff0000, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s;
}

.webdesign-service-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.webdesign-service-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 700;
}

.webdesign-service-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Web Design Process Section */
.webdesign-process-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 17, 0.5), rgba(10, 10, 11, 0.5));
}

.webdesign-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.webdesign-process-step {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.webdesign-process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #b41d10, #90170e);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.webdesign-process-step:hover::before {
    transform: scaleX(1);
}

.webdesign-process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(180, 29, 16, 0.3);
    border-color: rgba(180, 29, 16, 0.3);
}

.process-step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 72px;
    font-weight: 900;
    color: rgba(180, 29, 16, 0.08);
    line-height: 1;
    transition: all 0.3s;
}

.webdesign-process-step:hover .process-step-number {
    color: rgba(180, 29, 16, 0.15);
    transform: scale(1.1);
}

.process-step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.2), rgba(180, 29, 16, 0.05));
    border-radius: 18px;
    border: 2px solid rgba(180, 29, 16, 0.3);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.webdesign-process-step:hover .process-step-icon {
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.3), rgba(180, 29, 16, 0.15));
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(180, 29, 16, 0.4);
}

.process-step-icon i {
    font-size: 36px;
    color: #b41d10;
}

.webdesign-process-step h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.webdesign-process-step p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Web Design Features Section */
.webdesign-features-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.webdesign-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.webdesign-feature-item {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.webdesign-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(180, 29, 16, 0.3);
    border-color: rgba(180, 29, 16, 0.3);
}

.webdesign-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.2), rgba(180, 29, 16, 0.05));
    border-radius: 18px;
    border: 2px solid rgba(180, 29, 16, 0.3);
    transition: all 0.3s;
}

.webdesign-feature-item:hover .webdesign-feature-icon {
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.3), rgba(180, 29, 16, 0.15));
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 24px rgba(180, 29, 16, 0.4);
}

.webdesign-feature-icon i {
    font-size: 36px;
    color: #b41d10;
}

.webdesign-feature-item h4 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #ffffff;
    font-weight: 700;
}

.webdesign-feature-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Web Design Technologies Section */
.webdesign-technologies-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 17, 0.5), rgba(10, 10, 11, 0.5));
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
}

.brands-card {
    max-width: 1400px;
    margin: 50px auto 0;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 12px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    transition: all 0.3s ease;
    filter: grayscale(100%) opacity(0.5);
}

.brand-item:hover {
    transform: translateY(-8px) scale(1.05);
    filter: grayscale(0%) opacity(1);
}

.brand-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0.95) contrast(1.05);
    opacity: 0.9;
}

@media (max-width: 968px) {
    .brands-card {
        padding: 10px 20px;
    }
    
    .brands-grid {
        gap: 2px;
    }
    
    .brand-item {
        padding: 5px 8px;
    }
}

@media (max-width: 768px) {
    .brands-section {
        padding: 60px 0;
    }
    
    .brands-card {
        margin-top: 40px;
        padding: 10px 15px;
    }
    
    .brands-grid {
        gap: 2px;
    }
    
    .brand-item {
        padding: 5px 6px;
        flex: 0 0 calc(25% - 1.5px);
    }
    
    .brand-item img {
        max-width: 80px;
    }
}

@media (max-width: 480px) {
    .brands-card {
        padding: 8px 10px;
    }
    
    .brands-grid {
        gap: 2px;
    }
    
    .brand-item {
        padding: 4px 5px;
        flex: 0 0 calc(33.333% - 1.5px);
    }
    
    .brand-item img {
        max-width: 60px;
    }
    
    .about-left .service-list li {
        padding-left: 30px;
        font-size: 12px;
        line-height: 1.7;
    }
    
    .about-left .service-list li::before {
        font-size: 14px;
    }
}

/* Categories Filter */
.categories-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 40px auto 50px;
    max-width: 1200px;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.category-btn:hover {
    color: #ffffff;
    border-color: rgba(180, 29, 16, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(180, 29, 16, 0.2);
}

.category-btn.active {
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.2), rgba(180, 29, 16, 0.1));
    border-color: rgba(180, 29, 16, 0.5);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(180, 29, 16, 0.3);
}

.category-btn i {
    font-size: 16px;
}

.product-card {
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
    max-width: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    .categories-filter {
        gap: 10px;
        margin: 30px auto 40px;
    }
    
    .category-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .category-btn i {
        font-size: 14px;
    }
}

/* Product Page Styles */
.breadcrumbs-section {
    padding: 20px 0;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
    position: relative;
    z-index: 1;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumbs a:hover {
    color: #b41d10;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.breadcrumb-current {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.product-details-section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
}

.product-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    filter: brightness(0.9) contrast(1.05);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #b41d10, #90170e);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(180, 29, 16, 0.4);
}

.product-thumbnails {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.thumbnail-item {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
}

.thumbnail-item:hover {
    border-color: rgba(180, 29, 16, 0.5);
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: #b41d10;
    box-shadow: 0 0 20px rgba(180, 29, 16, 0.4);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-header h1 {
    font-size: 42px;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stars {
    display: flex;
    gap: 3px;
    color: #ffc107;
}

.rating-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.product-price-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product-price {
    font-size: 48px;
    font-weight: 800;
    color: #b41d10;
    background: linear-gradient(135deg, #b41d10, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-old-price {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.product-discount {
    background: linear-gradient(135deg, #b41d10, #90170e);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.product-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 16px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.product-features li i {
    color: #b41d10;
    font-size: 14px;
}

.product-options {
    padding: 25px;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-quantity label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 15px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.quantity-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.quantity-btn:hover {
    background: rgba(180, 29, 16, 0.2);
    color: #b41d10;
}

.quantity-controls input {
    width: 60px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.add-to-cart-btn,
.buy-now-btn {
    flex: 1;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #b41d10, #90170e);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(180, 29, 16, 0.4);
}

.add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(180, 29, 16, 0.5);
}

.buy-now-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: #ffffff;
    border: 2px solid rgba(180, 29, 16, 0.5);
}

.buy-now-btn:hover {
    background: rgba(180, 29, 16, 0.2);
    border-color: #b41d10;
    transform: translateY(-3px);
}

.wishlist-btn {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 20px;
}

.wishlist-btn:hover {
    border-color: #b41d10;
    color: #b41d10;
    background: rgba(180, 29, 16, 0.1);
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.meta-item i {
    font-size: 24px;
    color: #b41d10;
    width: 40px;
    text-align: center;
}

.meta-item strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 4px;
}

.meta-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Product Tabs */
.product-tabs-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
}

.product-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 30px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
    top: 2px;
}

.tab-btn:hover {
    color: #ffffff;
}

.tab-btn.active {
    color: #b41d10;
    border-bottom-color: #b41d10;
}

.tabs-content {
    min-height: 300px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-panel h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.tab-panel h4 {
    font-size: 20px;
    color: #ffffff;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.tab-panel p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.tab-panel ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tab-panel ul li {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.tab-panel ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #b41d10;
    font-weight: bold;
    font-size: 20px;
}

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

.spec-group {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-group h4 {
    font-size: 18px;
    color: #b41d10;
    margin-bottom: 20px;
    font-weight: 700;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.spec-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.reviews-summary {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-number {
    font-size: 48px;
    font-weight: 800;
    color: #b41d10;
}

.rating-stars {
    display: flex;
    gap: 5px;
    color: #ffc107;
    font-size: 24px;
}

.rating-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.reviewer-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 16px;
}

.review-rating {
    display: flex;
    gap: 3px;
    color: #ffc107;
    font-size: 14px;
}

.review-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-left: auto;
}

.review-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 15px;
}

.shipping-info {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shipping-info h4 {
    margin-top: 0;
}

.shipping-info ul {
    margin-top: 15px;
}

.related-products-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
}

/* New Product Design - Clean 2 Column Layout */
.product-main-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.product-images-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-main-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.product-main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    filter: brightness(0.9) contrast(1.05);
}

.product-thumbnails-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
}

.thumbnail:hover {
    border-color: rgba(180, 29, 16, 0.5);
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: #b41d10;
    box-shadow: 0 0 15px rgba(180, 29, 16, 0.4);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05);
    transition: filter 0.3s ease;
}

.thumbnail:hover img {
    filter: brightness(0.95) contrast(1.1);
}

.product-info-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-header-info h1 {
    font-size: 36px;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.product-rating-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.rating-stars {
    display: flex;
    gap: 3px;
    color: #ffc107;
    font-size: 16px;
}

.rating-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.product-pricing-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 42px;
    font-weight: 800;
    color: #b41d10;
    background: linear-gradient(135deg, #b41d10, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-details {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.original-price {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.discount-badge {
    background: linear-gradient(135deg, #b41d10, #90170e);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.product-description-info {
    padding: 20px;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.product-description-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

.product-benefits-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.benefit i {
    color: #b41d10;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.product-purchase-section {
    padding: 25px;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quantity-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-section label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 15px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.qty-button {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.qty-button:hover {
    background: rgba(180, 29, 16, 0.2);
    color: #b41d10;
}

.quantity-controls input {
    width: 60px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
}

.purchase-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.purchase-btn {
    flex: 1;
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background: linear-gradient(135deg, #b41d10, #90170e);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(180, 29, 16, 0.4);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(180, 29, 16, 0.5);
}

.secondary-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: #ffffff;
    border: 2px solid rgba(180, 29, 16, 0.5);
}

.secondary-btn:hover {
    background: rgba(180, 29, 16, 0.2);
    border-color: #b41d10;
    transform: translateY(-3px);
}

.wishlist-btn {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
}

.wishlist-btn:hover {
    border-color: #b41d10;
    color: #b41d10;
    background: rgba(180, 29, 16, 0.1);
}

/* Specifications Section */
.product-specifications-container {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-specifications-container h2 {
    font-size: 28px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(180, 29, 16, 0.3);
}

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

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.spec-item:hover {
    border-color: rgba(180, 29, 16, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.spec-item .spec-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.spec-item .spec-value {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-align: right;
}

/* Related Products Section */
.related-products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
}

.related-products-container h2 {
    font-size: 28px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-product-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    text-decoration: none;
}

.related-product-card:hover {
    border-color: rgba(180, 29, 16, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(180, 29, 16, 0.3);
}

.related-product-image {
    width: 100%;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20, 20, 22, 0.95), rgba(15, 15, 17, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    filter: brightness(0.9) contrast(1.05);
}

.related-product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.related-product-info h3 {
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}

.related-product-price {
    font-size: 20px;
    color: #b41d10;
    font-weight: 800;
}

@media (max-width: 1200px) {
    .product-main-container {
        gap: 40px;
    }
    
    .specifications-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .product-main-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-header-info h1 {
        font-size: 28px;
    }
    
    .current-price {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .purchase-buttons {
        flex-direction: column;
    }
    
    .purchase-btn {
        width: 100%;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-specifications-container {
        padding: 25px;
    }
    
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .spec-item .spec-value {
        text-align: left;
    }
}

.webdesign-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.webdesign-tech-item {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    padding: 35px 25px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.webdesign-tech-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(180, 29, 16, 0.4);
    box-shadow: 0 15px 45px rgba(180, 29, 16, 0.3);
    background: linear-gradient(135deg, rgba(30, 30, 32, 0.95), rgba(25, 25, 27, 0.95));
}

.webdesign-tech-item i {
    font-size: 56px;
    color: #b41d10;
    transition: all 0.3s;
}

.webdesign-tech-item:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #ff3333;
}

.webdesign-tech-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.webdesign-tech-item:hover span {
    color: #ffffff;
    font-weight: 700;
}

/* Web Design CTA Section */
.webdesign-cta-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.webdesign-cta-card {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    backdrop-filter: blur(20px);
    padding: 70px 60px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.webdesign-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #b41d10, #90170e);
    border-radius: 24px 24px 0 0;
}

.webdesign-cta-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.webdesign-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.webdesign-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.webdesign-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #b41d10, #90170e);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(180, 29, 16, 0.4);
    border: 1px solid rgba(180, 29, 16, 0.5);
}

.webdesign-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(180, 29, 16, 0.5);
    background: linear-gradient(135deg, #cc2315, #a11a0f);
}

.webdesign-cta-btn.secondary {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.webdesign-cta-btn.secondary:hover {
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.1), rgba(180, 29, 16, 0.05));
    border-color: rgba(180, 29, 16, 0.5);
    color: #b41d10;
}

.webdesign-cta-btn i {
    font-size: 16px;
}

@media (max-width: 968px) {
    .webdesign-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .webdesign-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .webdesign-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .webdesign-tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .webdesign-hero-content h1 {
        font-size: 36px;
    }
    
    .webdesign-hero-content p {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .section-header-webdesign h2 {
        font-size: 32px;
    }
    
    .section-header-webdesign p {
        font-size: 16px;
    }
    
    .webdesign-services-section,
    .webdesign-process-section,
    .webdesign-features-section,
    .webdesign-technologies-section,
    .webdesign-cta-section {
        padding: 60px 0;
    }
    
    .webdesign-services-grid,
    .webdesign-process-grid,
    .webdesign-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .webdesign-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .webdesign-cta-card {
        padding: 50px 35px;
    }
    
    .webdesign-cta-content h2 {
        font-size: 28px;
    }
    
    .webdesign-cta-content p {
        font-size: 16px;
    }
    
    .webdesign-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .webdesign-cta-btn {
        justify-content: center;
    }
}

/* Product1.html - Redesigned Top Section */
.product-breadcrumb-new {
    padding: 20px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
}

.breadcrumb-nav-new {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb-nav-new a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-nav-new a:hover {
    color: #b41d10;
}

.breadcrumb-nav-new i.fa-chevron-right {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.breadcrumb-current-new {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.product-main-new {
    padding: 60px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
}

.product-layout-new {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-image-section-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-main-image-new {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
}

.product-main-image-new img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
    filter: brightness(0.9) contrast(1.05);
}

.product-badge-new {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #b41d10, #90170e);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(180, 29, 16, 0.4);
}

.product-thumbnails-new {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.thumb-new {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
}

.thumb-new:hover {
    border-color: rgba(180, 29, 16, 0.5);
    transform: scale(1.05);
}

.thumb-new.active {
    border-color: #b41d10;
    box-shadow: 0 0 20px rgba(180, 29, 16, 0.4);
}

.thumb-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05);
    transition: filter 0.3s ease;
}

.thumb-new:hover img {
    filter: brightness(0.95) contrast(1.1);
}

.product-info-section-new {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-header-new {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-title-new {
    font-size: 42px;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.product-subtitle-new {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 18px;
    line-height: 1.6;
}

.product-rating-new {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars-new {
    display: flex;
    gap: 3px;
    color: #ffc107;
    font-size: 18px;
}

.rating-text-new {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.product-pricing-new {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.pricing-left-new {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 200px;
}

.price-main-new {
    font-size: 44px;
    font-weight: 800;
    color: #b41d10;
    background: linear-gradient(135deg, #b41d10, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-info-new {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.price-original-new {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.discount-new {
    background: linear-gradient(135deg, #b41d10, #90170e);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.stock-status-new {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4caf50;
    font-weight: 600;
    font-size: 15px;
    margin-top: 8px;
}

.stock-status-new i {
    font-size: 18px;
}

.quick-specs-inline-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    flex: 1.5;
    min-width: 400px;
}

.quick-spec-item-inline-new {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.quick-spec-item-inline-new:hover {
    border-color: rgba(180, 29, 16, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.quick-spec-item-inline-new i {
    font-size: 22px;
    color: #b41d10;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.quick-spec-details-inline-new {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.quick-spec-label-inline-new {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
}

.quick-spec-value-inline-new {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.product-description-new {
    padding: 25px;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-description-new p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

.quick-specs-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-spec-item-new {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.quick-spec-item-new:hover {
    border-color: rgba(180, 29, 16, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.quick-spec-item-new i {
    font-size: 26px;
    color: #b41d10;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.quick-spec-details-new {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.quick-spec-label-new {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
}

.quick-spec-value-new {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.product-benefits-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.benefit-item-new:hover {
    border-color: rgba(180, 29, 16, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.benefit-item-new i {
    font-size: 28px;
    color: #b41d10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(180, 29, 16, 0.15);
    border-radius: 12px;
    flex-shrink: 0;
}

.benefit-text-new {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.benefit-text-new strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.benefit-text-new span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.4;
}

.product-actions-new {
    padding: 25px;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quantity-section-new {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-section-new label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 15px;
}

.quantity-controls-new {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.qty-btn-new {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #ffffff;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.qty-btn-new:hover {
    background: rgba(180, 29, 16, 0.2);
    color: #b41d10;
}

.quantity-controls-new input {
    width: 65px;
    height: 42px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.action-buttons-new {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-inquire-new {
    flex: 1;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    background: linear-gradient(135deg, #b41d10, #90170e);
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(180, 29, 16, 0.4);
    border: none;
    cursor: pointer;
}

.btn-inquire-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(180, 29, 16, 0.5);
}

.btn-wishlist-new {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 20px;
}

.btn-wishlist-new:hover {
    border-color: #b41d10;
    color: #b41d10;
    background: rgba(180, 29, 16, 0.1);
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .product-layout-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-title-new {
        font-size: 32px;
    }
    
    .price-main-new {
        font-size: 36px;
    }
    
    .quick-specs-new {
        grid-template-columns: 1fr;
    }
    
    .action-buttons-new {
        flex-direction: column;
    }
    
    .btn-inquire-new {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .product-title-new {
        font-size: 28px;
    }
    
    .product-subtitle-new {
        font-size: 16px;
    }
}

.product-tabs {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.4) 0%, rgba(20, 0, 0, 0.15) 50%, rgba(15, 15, 15, 0.4) 100%);
}

.tabs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    gap: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 18px 35px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
    top: 2px;
}

.tab-btn:hover {
    color: #ffffff;
}

.tab-btn.active {
    color: #b41d10;
    border-bottom-color: #b41d10;
}

.tabs-content {
    min-height: 300px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.description-content,
.warranty-content,
.reviews-content {
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}

.description-content h3,
.warranty-content h3,
.reviews-content h3 {
    font-size: 22px;
    color: #b41d10;
    margin-bottom: 25px;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(180, 29, 16, 0.3);
}

.description-content h4,
.warranty-content h4 {
    font-size: 18px;
    color: #ffffff;
    margin: 30px 0 18px 0;
    font-weight: 600;
}

.description-content p,
.warranty-content p,
.review-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}

.description-content ul,
.warranty-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.description-content ul li,
.warranty-content ul li {
    color: rgba(255, 255, 255, 0.85);
    padding: 12px 0 12px 30px;
    position: relative;
    line-height: 1.7;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.description-content ul li:last-child,
.warranty-content ul li:last-child {
    border-bottom: none;
}

.description-content ul li::before,
.warranty-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #b41d10;
    font-size: 14px;
}

.description-content a,
.warranty-content a {
    color: #b41d10;
    text-decoration: none;
    transition: color 0.3s;
}

.description-content a:hover,
.warranty-content a:hover {
    color: #ff4444;
    text-decoration: underline;
}

.warranty-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: none;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
}

.warranty-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(180, 29, 16, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.warranty-icon i {
    font-size: 24px;
    color: #b41d10;
}

.warranty-info h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
}

.warranty-info p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
    font-size: 16px;
}

.reviews-summary {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(180, 29, 16, 0.3);
    background: none;
    padding: 0 0 30px 0;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.rating-number {
    font-size: 48px;
    font-weight: 800;
    color: #b41d10;
}

.reviews-rating .rating-stars {
    display: flex;
    gap: 6px;
    color: #ffc107;
    font-size: 24px;
}

.rating-count {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.review-item {
    padding: 25px 0;
    background: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.reviewer-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 17px;
}

.review-rating {
    display: flex;
    gap: 4px;
    color: #ffc107;
    font-size: 15px;
}

.review-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-left: auto;
}

.review-content {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 16px;
}

.review-content p {
    margin: 0;
}

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

.spec-group {
    padding: 0;
    border: none;
    background: none;
}

.spec-group h3 {
    font-size: 22px;
    color: #b41d10;
    margin-bottom: 25px;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(180, 29, 16, 0.3);
}

.spec-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row i {
    color: #b41d10;
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.spec-name {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    flex: 1;
}

.spec-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    text-align: right;
}

@media (max-width: 968px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-hero-title {
        font-size: 38px;
    }
    
    .product-price-main {
        font-size: 40px;
    }
    
    .specs-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-buttons-new {
        flex-direction: column;
    }
    
    .btn-primary-new {
        width: 100%;
    }
    
    .specifications-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-hero-title {
        font-size: 32px;
    }
    
    .product-hero-subtitle {
        font-size: 18px;
    }
    
    .product-price-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        text-align: left;
    }
}

/* Laptop Service Cards */
.laptop-service-card {
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    transition: all 0.4s;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.laptop-service-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(180, 29, 16, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: all 0.6s;
}

.laptop-service-card:hover::before {
    opacity: 1;
    top: -50%;
    left: -50%;
}

.laptop-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(180, 29, 16, 0.5);
    box-shadow: 0 20px 40px rgba(180, 29, 16, 0.25);
}

.laptop-service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.laptop-service-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.2), rgba(180, 29, 16, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(180, 29, 16, 0.3);
    flex-shrink: 0;
}

.laptop-service-icon i {
    font-size: 32px;
    color: #b41d10;
    filter: drop-shadow(0 0 10px rgba(180, 29, 16, 0.4));
}

.laptop-service-title-section {
    flex: 1;
}

.laptop-service-title-section h3 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.laptop-service-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.laptop-service-badges .service-badge {
    background: linear-gradient(135deg, rgba(180, 29, 16, 0.2), rgba(180, 29, 16, 0.1));
    color: #b41d10;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(180, 29, 16, 0.3);
    white-space: nowrap;
}

.laptop-service-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.laptop-service-image {
    width: 350px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    filter: brightness(0.6) contrast(1.1) saturate(0.9);
    transition: filter 0.3s ease;
}

.laptop-service-image:hover {
    filter: brightness(0.7) contrast(1.15) saturate(0.95);
}

/* Dark mode filters for all content images */
img[src*="img-service"],
img[src*="laptop-"],
img[src*="pc-"],
img[src*="computer-"],
img[src*="network-"],
img[src*="virus-"],
img[src*="printer-"],
img[src*="screen-"],
img[src*="projects/"],
img[src*="hero"],
img[src*="levelupcoach"],
img[src*="karatezanshin"] {
    filter: brightness(0.6) contrast(1.1) saturate(0.9);
    transition: filter 0.3s ease;
}

img[src*="img-service"]:hover,
img[src*="laptop-"]:hover,
img[src*="pc-"]:hover,
img[src*="computer-"]:hover,
img[src*="network-"]:hover,
img[src*="virus-"]:hover,
img[src*="printer-"]:hover,
img[src*="screen-"]:hover,
img[src*="projects/"]:hover,
img[src*="hero"]:hover,
img[src*="levelupcoach"]:hover,
img[src*="karatezanshin"]:hover {
    filter: brightness(0.7) contrast(1.15) saturate(0.95);
}

/* Exclude logos, icons, product thumbnails, and cart images from dark mode filters */
img[src*="logo"],
img[src*="favicon"],
img[src*="icon"],
img[src*="Dell-"],
img[src*="HP-"],
img[src*="Optiplex"],
.logo-img,
.footer-logo {
    filter: none !important;
}

.laptop-service-text {
    flex: 1;
}

.laptop-service-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 15px;
}

.laptop-service-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .laptop-service-content {
        flex-direction: column;
    }
    
    .laptop-service-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .laptop-services-container {
        padding: 0 10px !important;
        gap: 25px !important;
    }
    
    .laptop-service-card {
        padding: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .laptop-service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .laptop-service-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    
    .laptop-service-icon i {
        font-size: 28px;
    }
    
    .laptop-service-title-section h3 {
        font-size: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .laptop-service-text p {
        font-size: 14px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .laptop-sidebar {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .laptop-service-list {
        width: 100% !important;
    }
    
    .laptop-service-list li {
        width: 100% !important;
    }
    
    .laptop-service-list a {
        width: 100% !important;
        box-sizing: border-box !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 12px 15px !important;
    }
    
    .laptop-sidebar-btn {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 15px !important;
    }
    
    .laptop-contact-box,
    .laptop-question-box {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
    }
    
    .laptop-contact-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }
    
    .laptop-question-form input,
    .laptop-question-form textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .about-services-grid[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin-top: 15px !important;
    }
    
    .about-services-column {
        width: 100% !important;
    }
    
    .about-services-column ul {
        width: 100% !important;
    }
    
    .about-services-column li {
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: 13px !important;
    }
}

/* Laptop Sidebar */
.laptop-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.laptop-service-list li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.laptop-service-list li:last-child {
    border-bottom: none;
}

.laptop-service-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.laptop-service-list li a i {
    color: #b41d10;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.laptop-service-list li.active a,
.laptop-service-list li a:hover {
    background: rgba(180, 29, 16, 0.15);
    color: #ffffff;
}

/* Shop sidebar category buttons */
.category-btn-sidebar:hover {
    color: #ffffff !important;
    padding-left: 5px;
    background: rgba(180, 29, 16, 0.1) !important;
}

.category-btn-sidebar.active {
    color: #ffffff !important;
    font-weight: 600;
    background: rgba(180, 29, 16, 0.15) !important;
}

.laptop-sidebar-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #b41d10, #8a150a);
    color: white;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}

.laptop-sidebar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(180, 29, 16, 0.4);
}

.laptop-sidebar-btn i {
    margin-right: 8px;
}

.laptop-contact-box {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.laptop-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.laptop-contact-row:last-child {
    margin-bottom: 0;
}

.laptop-contact-row i {
    color: #b41d10;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.laptop-question-box {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(25, 25, 27, 0.95), rgba(20, 20, 22, 0.95));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.laptop-question-form input,
.laptop-question-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
}

.laptop-question-form input::placeholder,
.laptop-question-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.laptop-question-form input:focus,
.laptop-question-form textarea:focus {
    outline: none;
    border-color: #b41d10;
    background: rgba(255, 255, 255, 0.08);
}

.laptop-question-form textarea {
    min-height: 100px;
    resize: vertical;
}

.laptop-question-form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #b41d10, #8a150a);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.laptop-question-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(180, 29, 16, 0.4);
}

@media (max-width: 992px) {
    .laptop-services-container {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        gap: 30px !important;
    }
    
    .laptop-sidebar {
        position: static !important;
        margin-bottom: 40px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .laptop-service-content {
        flex-direction: column;
    }
    
    .laptop-service-image {
        width: 100% !important;
    }
    
    .cart-wrapper {
        grid-template-columns: 1fr !important;
    }
    
    .checkout-wrapper {
        grid-template-columns: 1fr !important;
    }
    
    .order-summary-wrapper {
        position: static !important;
    }
    
    .laptop-service-list {
        width: 100% !important;
    }
    
    .laptop-sidebar-btn {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .laptop-contact-box,
    .laptop-question-box {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .laptop-service-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .about-services-grid[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

/* Cart and Checkout Mobile Responsive */
@media (max-width: 768px) {
    .cart-item {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .cart-item-image {
        width: 100% !important;
        height: 200px !important;
    }
    
    .cart-summary {
        grid-template-columns: 1fr !important;
    }
    
    .checkout-form-wrapper .checkout-form > div[style*="grid"] {
        grid-template-columns: 1fr !important;
    }
}
