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

:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #ffffff;
    --text-dark: #333333;
    --text-light: #ffffff;
    --border-color: #333333;
    --shadow: rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: #ffffff;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    scroll-behavior: auto;
}

/* Cursor effect only on desktop */
@media (min-width: 769px) and (pointer: fine) {
    * {
        cursor: none !important;
    }
}

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

.pricing .container {
    max-width: 1600px;
}

/* Header */
.header {
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: -1;
}

.header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header.scrolled .navbar {
    padding: 0.5rem 0;
}

.navbar {
    padding: 1rem 0;
    position: relative;
    z-index: 1;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-text::after {
    transform: scaleX(1);
}

.logo-sub {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ff0000;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-left: 2px solid #ff0000;
    padding-left: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.1), transparent);
    transition: width 0.3s ease;
    border-radius: 8px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

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

.nav-menu a:hover {
    color: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
    width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    list-style: none;
    margin: 0;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.dropdown-menu:has(li:nth-child(3)) {
    grid-template-columns: repeat(3, 1fr);
}

.dropdown-menu:not(:has(li:nth-child(4))) {
    grid-template-columns: 1fr;
    width: 200px;
}

.dropdown-menu:not(:has(li:nth-child(4))) li {
    position: relative;
    padding-left: 1.5rem;
}

.dropdown-menu:not(:has(li:nth-child(4))) li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #ff0000;
    font-size: 1rem;
}

.dropdown-menu:not(:has(li:nth-child(4))) a {
    padding: 0.5rem 1rem;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
    border-radius: 8px;
    gap: 0.5rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.dropdown-menu a i {
    font-size: 2rem;
    color: #ff0000;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
}

.dropdown-menu a:hover {
    color: #ff0000;
}

.dropdown-menu a:hover i {
    color: #ff0000;
    transform: none;
}

.dropdown-menu:not(:has(li:nth-child(4))) a:hover {
    background: none;
    border-color: transparent;
    transform: none;
    box-shadow: none;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    background: #cccccc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    overflow: visible;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 150;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 26, 0.75) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: 3;
}

.hero-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 200;
    text-align: center;
    padding: 2rem;
    width: 100%;
}

.hero-services {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 2rem;
    z-index: 100;
}

.hero-services .why-item {
    background: linear-gradient(145deg, #f5f5f5 0%, #ffffff 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.hero-services .why-item h3 {
    color: #1a1a1a;
}

.hero-services .why-item p {
    color: #666666;
}

.hero-services .why-item i {
    color: #ff0000;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.hero-services .why-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: linear-gradient(145deg, #ffffff 0%, #f5f5f5 100%);
    border-color: #ff0000;
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.animated-fade-in {
    animation: floatUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out;
}

.interactive-text {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
    white-space: nowrap;
    display: inline-block;
    letter-spacing: 2px;
}

.interactive-text .word-line-1,
.interactive-text .word-line-2 {
    display: inline;
    white-space: nowrap;
}

.interactive-text .word-line-2 {
    margin-top: 0;
}

.interactive-text .word-line-1::after {
    content: " ";
}

.interactive-text .char {
    display: inline-block;
    transition: color 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
    cursor: default;
    position: relative;
    color: #ffffff;
}

.interactive-text .char.hovered {
    color: #ff0000;
    transform: scale(1.2) translateY(-10px);
    text-shadow: 0 10px 20px rgba(255, 0, 0, 0.5);
}

.interactive-text .char.space {
    width: 0.3em;
}

.hero-subtitle {
    font-size: 1.7rem;
    font-weight: 600;
    color: #cccccc;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
    letter-spacing: 0.5px;
}

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

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Why Us Section */
.why-us {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    z-index: 0;
    overflow: visible;
}

.why-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
}

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

.why-item {
    background: linear-gradient(145deg, #f5f5f5 0%, #ffffff 100%);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 35;
}

.why-item:hover {
    transform: translateY(-5px);
    border-color: #ff0000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-item i {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 1rem;
}

.why-item h3 {
    color: #000000;
    margin-bottom: 1rem;
}

.why-item p {
    color: #666666;
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    position: relative;
    padding: 10rem 0 4rem;
    background: #ffffff;
    z-index: 0;
    overflow: visible;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1rem;
}

.discount-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: visible;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    z-index: 35;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06), 0 3px 10px rgba(0, 0, 0, 0.04);
}

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

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 0, 0, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-18px) scale(1.03);
    border-color: #000000;
    border-width: 3px;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.12),
        0 10px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card.featured {
    border: 3px solid #1a1a1a;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.06);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    animation: featured-pulse 3s ease-in-out infinite;
}

@keyframes featured-pulse {
    0%, 100% {
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.15),
            0 8px 20px rgba(0, 0, 0, 0.1),
            0 5px 15px rgba(0, 0, 0, 0.06);
    }
    50% {
        box-shadow: 
            0 20px 50px rgba(0, 0, 0, 0.2),
            0 12px 30px rgba(0, 0, 0, 0.15),
            0 8px 20px rgba(0, 0, 0, 0.08);
    }
}

.pricing-card.featured::after {
    background: radial-gradient(circle at 50% 0%, rgba(0, 0, 0, 0.08) 0%, transparent 60%);
}

.pricing-card.featured:hover {
    transform: translateY(-20px) scale(1.04);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.25),
        0 18px 45px rgba(0, 0, 0, 0.18),
        0 12px 25px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: #000000;
}

.pricing-card-wrapper {
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    padding: 0.4rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.65rem;
    z-index: 100;
    white-space: nowrap;
    box-shadow: 
        0 6px 20px rgba(255, 0, 0, 0.5),
        0 3px 12px rgba(255, 0, 0, 0.3),
        0 1px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    animation: pulse-badge 2.5s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(255, 0, 0, 0.5),
            0 4px 15px rgba(255, 0, 0, 0.3),
            0 2px 8px rgba(0, 0, 0, 0.2);
        transform: translateY(0) scale(1);
    }
    50% {
        box-shadow: 
            0 12px 35px rgba(255, 0, 0, 0.7),
            0 6px 20px rgba(255, 0, 0, 0.5),
            0 3px 12px rgba(0, 0, 0, 0.3);
        transform: translateY(-2px) scale(1.02);
    }
}

.popular-label {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    z-index: 1000;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pricing-card h3 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
}

.current-price {
    font-size: 2rem;
    color: #ff0000;
    font-weight: bold;
    display: block;
}

.old-price {
    font-size: 1.2rem;
    color: #666;
    text-decoration: line-through;
    display: block;
    margin-top: 0.5rem;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    color: #666666;
}

.features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.btn-secondary {
    background: transparent;
    color: #ff0000;
    border: 2px solid #ff0000;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-secondary:hover {
    background: #ff0000;
    color: #ffffff;
}

.price-note {
    text-align: center;
    color: #666666;
    font-size: 0.9rem;
}

/* References Section */
.references {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    z-index: 50;
}

.references h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1rem;
}

.subtitle {
    text-align: center;
    color: #666666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.references-slider {
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 20;
    background: transparent;
}

.references-slider {
    cursor: grab;
}

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

.references-slider * {
    cursor: inherit;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid #e0e0e0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.2rem;
    color: #333;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.08);
}

.slider-arrow:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: #ff0000;
    color: #ff0000;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 
        0 8px 20px rgba(255, 0, 0, 0.2),
        0 4px 10px rgba(255, 0, 0, 0.15);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.references-grid {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

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

.dot.active {
    background: #ff0000;
    width: 30px;
    border-radius: 6px;
}

.reference-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 35;
    min-width: calc(25% - 1.5rem);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.05),
        0 4px 16px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

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

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

.reference-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #ff0000;
    box-shadow: 
        0 12px 40px rgba(255, 0, 0, 0.15),
        0 6px 20px rgba(255, 0, 0, 0.1),
        0 3px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.reference-item img {
    width: 320px;
    height: 200px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.reference-item:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.reference-item i {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 1rem;
}

.reference-item h4 {
    color: #000000;
}

/* Testimonials Section */
.testimonials {
    padding: 2rem 0 4rem;
    background: #ffffff;
    position: relative;
    z-index: 0;
    overflow: visible;
}

.testimonials-row {
    margin-top: 1rem;
}

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

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-color);
    min-width: 50px;
}

.contact-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cccccc;
}

.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-media a {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 3rem 0 1.5rem;
    position: relative;
    z-index: 20;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-services-section {
    grid-column: span 2;
}

.footer-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

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

.footer-logo-text {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
}

.footer-logo-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover .footer-logo-text::after {
    transform: scaleX(1);
}

.footer-logo-sub {
    font-size: 1rem;
    font-weight: 700;
    color: #ff0000;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-left: 2px solid #ff0000;
    padding-left: 0.5rem;
    animation: pulseFooter 2s ease-in-out infinite;
}

@keyframes pulseFooter {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.footer-social-icons {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: #ff0000;
    transform: translateY(-3px);
}

.footer-section .contact-info {
    margin-top: 0;
}

.footer-section h3 {
    color: #ff0000;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #ff0000, transparent);
    transition: all 0.3s ease;
}

.footer-section h4:hover::after {
    width: 100px;
    background: linear-gradient(90deg, #ff0000, rgba(255, 0, 0, 0.3), transparent);
}

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: #ff0000;
    border-color: #ff0000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.footer-links li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #ff0000;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-links li:hover::before {
    color: #fff;
    transform: translateX(3px);
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ff0000;
    padding-left: 3px;
}

.contact-info {
    color: #ccc;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.contact-info i {
    color: #ff0000;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.footer-bottom p {
    color: #888;
    font-size: 0.8rem;
    margin: 0;
    padding: 0.3rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-services {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
        bottom: 20px;
    }

    .hero-services .why-item {
        padding: 1.5rem;
    }

    .hero-services .why-item i {
        font-size: 2rem;
    }

    .hero-services .why-item h3 {
        font-size: 1rem;
    }

    .hero-services .why-item p {
        font-size: 0.85rem;
    }

    .logo-text {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .logo-sub {
        font-size: 0.75rem;
        padding-left: 0.3rem;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        background: #ffffff;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

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

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

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 4rem 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .has-dropdown {
        position: static !important;
    }

    .nav-menu > li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        width: 100%;
    }

    .dropdown-menu {
        position: static !important;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        background: rgba(0, 0, 0, 0.5);
        margin-top: 0.5rem;
        padding: 1rem 0;
        grid-template-columns: 1fr !important;
        width: 100%;
        display: block;
        left: 0 !important;
        box-shadow: none;
        border-radius: 8px;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .dropdown-menu:not(:has(li:nth-child(4))) {
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    .dropdown-menu:not(:has(li:nth-child(4))) li::before {
        content: none !important;
        display: none !important;
    }

    .dropdown-menu:not(:has(li:nth-child(4))) li {
        padding-left: 0 !important;
    }

    .dropdown-menu li {
        padding: 0.5rem 0;
        margin: 0;
        list-style: none;
        position: relative;
    }

    .dropdown-menu li::before,
    .dropdown-menu:not(:has(li:nth-child(4))) li::before {
        content: none !important;
        display: none !important;
    }

    .dropdown-menu li {
        padding-left: 0 !important;
        text-align: center;
    }

    .dropdown-menu a {
        padding: 0.8rem 2rem !important;
        font-size: 1rem;
        display: block;
        text-align: center;
        width: 100%;
        margin: 0 auto;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .dropdown-menu a i {
        display: none;
    }

    .has-dropdown .dropdown-menu {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        left: 0 !important;
        transform: none !important;
    }

    .has-dropdown .dropdown-menu li {
        padding: 0.5rem 0;
        margin: 0;
    }

    .has-dropdown .dropdown-menu li a {
        padding: 0.8rem 2rem !important;
        margin: 0 auto;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .btn-primary {
        display: none;
    }

    .hero {
        min-height: 500px;
    }

    .interactive-text {
        font-size: 1.8rem;
        letter-spacing: 1px;
        line-height: 1.3;
    }

    .interactive-text .word-line-1 {
        display: block;
        line-height: 1.3;
        white-space: nowrap;
        text-align: center;
    }

    .interactive-text .word-line-2 {
        display: block;
        line-height: 1.3;
        white-space: nowrap;
        text-align: center;
        margin-top: 0.3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

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

    .contact-content {
        flex-direction: column;
    }

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

    .testimonials h2,
    .contact h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-services-section {
        grid-column: span 1;
    }

    .footer-services-grid {
        grid-template-columns: 1fr;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
    }

    .footer-logo-text {
        font-size: 1.8rem;
    }

    .footer-logo-sub {
        font-size: 0.85rem;
    }

    .footer-social-icons {
        justify-content: center;
        gap: 0.8rem;
    }

    .footer-social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .social-links {
        justify-content: center;
    }

    /* Fix 4-column grids on mobile */
    .why-grid,
    .pricing-grid,
    .values-grid,
    .team-grid,
    .contact-info-cards,
    .references-grid,
    .logo-grid,
    .process-steps,
    .benefits-grid,
    .wave-cards,
    .sliding-cards,
    .stack-cards,
    .reveal-cards,
    .evolving-cards,
    .masonry-grid {
        grid-template-columns: 1fr !important;
    }

    /* Fix hero services for mobile */
    .hero {
        min-height: 50vh;
        padding-bottom: 1rem;
        overflow: visible;
        z-index: 1;
        position: relative;
    }

    .hero-content {
        z-index: 1000 !important;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 2rem 1rem;
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .hero-content h1 {
        z-index: 1001;
        position: relative;
    }

    .hero-subtitle {
        margin: 0;
        order: 2;
        z-index: 1001;
        position: relative;
    }

    .hero-content .btn-primary.btn-large {
        order: 3 !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        font-size: 1.1rem !important;
        padding: 1rem 2rem !important;
        z-index: 1001 !important;
        position: relative !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: #ffffff !important;
        color: #000000 !important;
        border: none !important;
        border-radius: 5px !important;
        cursor: pointer !important;
        font-weight: bold !important;
        text-decoration: none !important;
        text-align: center;
        transition: all 0.3s ease !important;
    }

    .hero-content .btn-primary.btn-large:hover {
        background: #cccccc !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2) !important;
    }

    .hero-services {
        position: relative !important;
        bottom: auto !important;
        margin-top: 4rem;
        z-index: 1;
        padding: 0 1rem;
    }

    .hero-services .why-item {
        z-index: 1;
        margin-bottom: 1.5rem;
        opacity: 1 !important;
        transform: none !important;
    }

    /* Fix table overflow on mobile */
    .pricing-card,
    .contact-info-card,
    .service-card-page,
    .faq-item,
    .benefit-item {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Fix overflow issues */
    .footer-content,
    .contact-content {
        overflow-x: hidden;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #25D366;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 0 50px 50px 0;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float i {
    font-size: 28px;
}

.whatsapp-float .whatsapp-text {
    white-space: nowrap;
    transition: opacity 0.5s ease, max-width 0.5s ease;
    overflow: hidden;
}

.whatsapp-float.collapsed .whatsapp-text {
    opacity: 0;
    max-width: 0;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        left: 0;
        padding: 12px 15px;
        font-size: 0.9rem;
        gap: 8px;
        border-radius: 0 40px 40px 0;
    }

    .whatsapp-float i {
        font-size: 28px;
    }

    .whatsapp-float .whatsapp-text {
        display: none;
    }
}

/* 3D References Slider */
.references-3d-slider {
    --slide-width: min(25vw, 300px);
    --slide-aspect: 2 / 3;
    width: calc(3 * var(--slide-width));
    height: 500px;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.slider--btn {
    --size: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    opacity: 0.8;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 60;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

.slider--btn svg {
    width: 24px;
    height: 24px;
    stroke: #333;
    transition: all 0.3s ease;
}

.slider--btn:hover {
    opacity: 1;
    background: rgba(255, 0, 0, 0.1);
    border-color: #ff0000;
    transform: scale(1.1);
}

.slider--btn:hover svg {
    stroke: #ff0000;
}

.slider--btn__prev {
    position: absolute;
    left: -60px;
}

.slider--btn__next {
    position: absolute;
    right: -60px;
}

.slides__wrapper {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.slides__wrapper > * {
    grid-area: 1 / -1;
}

.slides {
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: grid;
    place-items: center;
}

.slides > * {
    grid-area: 1 / -1;
}

.slide {
    --slide-tx: 0px;
    --slide-ty: 0vh;
    width: var(--slide-width);
    height: auto;
    aspect-ratio: var(--slide-aspect);
    user-select: none;
    perspective: 800px;
    transform: perspective(1000px) translate3d(var(--slide-tx), var(--slide-ty), var(--slide-tz, 0)) rotateY(var(--slide-rotY)) scale(var(--slide-scale));
    transition: transform 800ms ease;
}

.slide[data-current] {
    --slide-scale: 1.15;
    --slide-tz: 0px;
    --slide-tx: 0px;
    --slide-rotY: 0;
    pointer-events: auto;
    z-index: 20;
}

.slide[data-next] {
    --slide-tx: calc(1 * var(--slide-width) * 1.07);
    --slide-rotY: -45deg;
    z-index: 10;
}

.slide[data-previous] {
    --slide-tx: calc(-1 * var(--slide-width) * 1.07);
    --slide-rotY: 45deg;
    z-index: 10;
}

.slide:not([data-current]):not([data-next]):not([data-previous]) {
    --slide-scale: 0.8;
    opacity: 0;
    pointer-events: none;
}

.slide--image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 800ms ease;
    filter: grayscale(100%) brightness(0.7);
}

.slide[data-current] .slide--image {
    filter: grayscale(0%) brightness(1);
}

.slide--image__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 15px;
}

.slide--image__wrapper img {
    transition: filter 0.4s ease;
}

.slide[data-current] .slide--image__wrapper img {
    filter: grayscale(0%) brightness(1);
}


.slide__inner {
    --rotX: 0;
    --rotY: 0;
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: rotateX(var(--rotX)) rotateY(var(--rotY));
}


@media (max-width: 768px) {
    .references-3d-slider {
        --slide-width: 200px;
    }
    
    .slider--btn__prev {
        left: -35px;
    }
    
    .slider--btn__next {
        right: -35px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 2rem 0 4rem;
    background: #ffffff;
    position: relative;
    z-index: 0;
    overflow: visible;
}

.testimonials-row {
    margin-top: 1rem;
}

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

.testimonials-col-sm-12 {
    width: 100%;
}

.shadow-effect {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e0e0e0;
    box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);
}

#customers-testimonials .shadow-effect p {
    font-family: inherit;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 300;
    color: #333;
}

.testimonial-name {
    margin: -17px auto 0;
    display: table;
    width: auto;
    background: #ff0000;
    padding: 9px 35px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgba(0,0,0,0.12), 0 5px 7px rgba(0,0,0,0.05);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#customers-testimonials .item {
    text-align: center;
    padding: 50px;
    margin-bottom: 80px;
    opacity: .2;
    transform: scale3d(0.8, 0.8, 1);
    transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    transform: scale3d(1.0, 1.0, 1);
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d;
    max-width: 90px;
    margin: 0 auto 17px;
    border-radius: 50%;
    display: none;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
    background: #ff0000;
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#customers-testimonials.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
    background: #ff0000;
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
}

/* Page Hero */
.page-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero-bg.jpg') center/cover;
    opacity: 0.1;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.page-hero-content h1 .char {
    display: inline-block;
    transition: color 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
    cursor: default;
    position: relative;
    color: #ffffff;
}

.page-hero-content h1 .char:hover {
    color: #ff0000;
    transform: scale(1.2) translateY(-10px);
    text-shadow: 0 10px 20px rgba(255, 0, 0, 0.5);
}

.page-hero-content p {
    font-size: 1.3rem;
    color: #cccccc;
}

/* About Story */
.about-story {
    padding: 6rem 0;
    background: #ffffff;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.story-text h3 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-text p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-stat-card {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.story-stat-card h3 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.story-stat-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Values */
.values {
    padding: 6rem 0;
    background: #f8f8f8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: #666666;
    line-height: 1.7;
}

/* Team */
.team {
    padding: 6rem 0;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: #f8f8f8;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.15);
}

.member-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image i {
    font-size: 3rem;
    color: #ffffff;
}

.team-member h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-member p {
    color: #666666;
    line-height: 1.7;
}

/* Services Page */
.services-page {
    padding: 6rem 0;
    background: #f8f8f8;
}

.service-card-page {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-page:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.15);
}

.service-icon-page {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card-page:hover .service-icon-page {
    transform: scale(1.15) rotate(10deg);
}

.service-icon-page i {
    font-size: 3rem;
    color: #ffffff;
}

.service-card-page h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-card-page > p {
    color: #666666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    flex-grow: 1;
}

.service-features-page {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
}

.service-features-page li {
    color: #333333;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.btn-service-page {
    background: #ff0000;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
}

.btn-service-page:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

/* Process */
.process {
    padding: 6rem 0;
    background: #ffffff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

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

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
}

.process-step h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-step p {
    color: #666666;
    line-height: 1.7;
}

/* Responsive for Pages */
@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .story-stat-card h3 {
        font-size: 2.5rem;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 6rem 0;
    background: #f8f8f8;
}

.contact-page-content {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info-card p {
    color: #666666;
    line-height: 1.7;
}

.contact-info-card a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #ff0000;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0000;
}

/* Contact Form Submit Button */
.btn-contact-submit {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #ffffff;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

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

.btn-contact-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-contact-submit span,
.btn-contact-submit i {
    position: relative;
    z-index: 1;
}

.btn-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

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

.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 450px;
}

/* References Page Styles */
.references-page {
    padding: 6rem 0;
    background: #f8f8f8;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.reference-item-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.reference-item-card:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.15);
}

.reference-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-icon i {
    font-size: 3rem;
    color: #ffffff;
}

.reference-item-card h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.reference-item-card > p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.reference-features {
    list-style: none;
    text-align: left;
}

.reference-features li {
    color: #333333;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-info-cards,
    .references-grid {
        grid-template-columns: 1fr;
    }
}

/* Quote Form Styles */
.quote-form-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.quote-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.quote-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-form-header h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 900;
}

.quote-form-header p {
    font-size: 1.2rem;
    color: #666666;
}

.quote-form {
    background: #ffffff;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.section-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.form-section h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.section-description {
    text-align: center;
    color: #666666;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    color: #333333;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: #ff0000;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #ffffff;
    color: #333333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-checkbox {
    position: relative;
}

.service-checkbox input[type="checkbox"] {
    display: none;
}

.service-checkbox label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    text-align: center;
    height: 100%;
    margin: 0;
}

.service-checkbox label:hover {
    border-color: #ff0000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.15);
}

.service-checkbox input[type="checkbox"]:checked + label {
    border-color: #ff0000;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05) 0%, rgba(255, 0, 0, 0.15) 100%);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-checkbox input[type="checkbox"]:checked + label .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.service-info h4 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-info p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
}

.contact-preference {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.preference-option {
    position: relative;
}

.preference-option input[type="radio"] {
    display: none;
}

.preference-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2.5rem;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    min-width: 140px;
    margin: 0;
}

.preference-option label i {
    font-size: 2rem;
    color: #ff0000;
}

.preference-option label span {
    font-size: 1rem;
    color: #333333;
    font-weight: 600;
}

.preference-option input[type="radio"]:checked + label {
    border-color: #ff0000;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05) 0%, rgba(255, 0, 0, 0.15) 100%);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.15);
}

.form-submit {
    text-align: center;
    margin-top: 3rem;
}

.btn-submit-quote {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #ffffff;
    border: none;
    padding: 1.5rem 4rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit-quote::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;
}

.btn-submit-quote:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit-quote span,
.btn-submit-quote i {
    position: relative;
    z-index: 1;
}

.btn-submit-quote:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

.form-note {
    margin-top: 1.5rem;
    color: #666666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: #ff0000;
}

@media (max-width: 768px) {
    .quote-form {
        padding: 2rem 1.5rem;
    }

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

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

    .contact-preference {
        flex-direction: column;
        align-items: stretch;
    }

    .preference-option label {
        min-width: 100%;
    }

    .quote-form-header h2 {
        font-size: 2rem;
    }

    .quote-form-header p {
        font-size: 1rem;
    }
}

/* FAQ / SSS Styles */
.sss {
    padding: 6rem 0;
    background: #ffffff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff0000;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.1);
}

.faq-item.active {
    border-color: #ff0000;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.15);
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #ffffff;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05) 0%, rgba(255, 0, 0, 0.1) 100%);
}

.faq-question h3 {
    font-size: 1.3rem;
    color: #000000;
    font-weight: 700;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    font-size: 1.2rem;
    color: #ff0000;
    transition: all 0.3s ease;
    min-width: 24px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

.faq-answer strong {
    color: #ff0000;
    font-weight: 700;
}

.faq-answer a {
    color: #ff0000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #cc0000;
}

/* FAQ CTA Section */
.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 20px;
}

.faq-cta h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 900;
}

.faq-cta p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.faq-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-faq-cta {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.btn-faq-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

.btn-faq-secondary {
    background: transparent;
    color: #ffffff;
    padding: 1.2rem 3rem;
    border: 3px solid #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-faq-secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer p {
        font-size: 1rem;
        padding: 0 1.5rem 1.5rem;
    }

    .faq-cta {
        padding: 2rem 1.5rem;
    }

    .faq-cta h3 {
        font-size: 1.5rem;
    }

    .faq-cta p {
        font-size: 1rem;
    }

    .faq-cta-buttons {
        flex-direction: column;
    }

    .btn-faq-cta,
    .btn-faq-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Featured Service Card */
.featured-service-card {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 4rem 3rem;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

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

.featured-service-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

.featured-service-icon i {
    font-size: 4rem;
    color: #ffffff;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #ff0000;
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.featured-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.featured-content p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-service-page-large {
    background: #ff0000;
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.btn-service-page-large:hover {
    background: #cc0000;
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(255, 0, 0, 0.4);
}

.animated-card {
    animation: fadeInUp 0.6s ease-out;
}

.animated-card:nth-child(1) { animation-delay: 0.1s; }
.animated-card:nth-child(2) { animation-delay: 0.2s; }
.animated-card:nth-child(3) { animation-delay: 0.3s; }
.animated-card:nth-child(4) { animation-delay: 0.4s; }
.animated-card:nth-child(5) { animation-delay: 0.5s; }
.animated-card:nth-child(6) { animation-delay: 0.6s; }

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

@media (max-width: 768px) {
    .featured-service-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }

    .featured-service-icon {
        width: 120px;
        height: 120px;
    }

    .featured-service-icon i {
        font-size: 3rem;
    }

    .featured-content h2 {
        font-size: 2rem;
    }
}

/* Contact 3D Tilt Cards */
.contact-3d-section {
    margin-bottom: 5rem;
}

.contact-3d-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.tilt-card {
    position: relative;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.tilt-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: #ff0000;
    box-shadow: 0 25px 60px rgba(255, 0, 0, 0.2);
}

.tilt-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05) 0%, rgba(255, 0, 0, 0.15) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tilt-card:hover .tilt-card-bg {
    opacity: 1;
}

.tilt-icon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.tilt-card:hover .tilt-icon-circle {
    transform: scale(1.1) rotate(360deg);
}

.tilt-icon-circle i {
    font-size: 2.5rem;
    color: #ffffff;
}

.tilt-card h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.tilt-card p {
    color: #666666;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.tilt-card a {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.tilt-card a:hover {
    color: #cc0000;
}

@media (max-width: 768px) {
    .contact-3d-cards {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Animations */
.contact-icon-wrapper {
    position: relative;
    display: inline-block;
}

.icon-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #ff0000;
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.bounce-card {
    animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.contact-number,
.contact-address,
.contact-hours {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Flip Card Animation */
.flip-card {
    perspective: 1000px;
    height: 400px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-color: #ff0000;
    color: #ffffff;
}

.flip-card-back ul {
    list-style: none;
}

.flip-card-back li {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

/* Evolving Cards for Logo Design */
.service-benefits-evolving {
    margin-top: 4rem;
}

.service-benefits-evolving h3 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.evolving-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.evolving-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.evolving-card:hover {
    border-color: #ff0000;
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.15);
}

.evolving-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.evolving-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.evolving-card h4 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.evolving-card p {
    color: #666666;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.evolving-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    animation: slideProgress 3s infinite;
}

@keyframes slideProgress {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

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

/* Wave Cards for SEO */
.seo-wave-container {
    margin-top: 4rem;
}

.seo-wave-container h3 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.wave-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.wave-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wave-card:hover {
    border-color: #ff0000;
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.15);
}

.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.05) 0%, rgba(255, 0, 0, 0.1) 100%);
    clip-path: polygon(0 80%, 100% 60%, 100% 100%, 0 100%);
    animation: wave 3s ease-in-out infinite;
}

.wave-card:hover .wave-bg {
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.15) 0%, rgba(255, 0, 0, 0.3) 100%);
}

@keyframes wave {
    0%, 100% {
        clip-path: polygon(0 80%, 100% 60%, 100% 100%, 0 100%);
    }
    50% {
        clip-path: polygon(0 70%, 100% 50%, 100% 100%, 0 100%);
    }
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.benefit-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.wave-card h4 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.wave-card p {
    color: #666666;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

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

/* Sliding Cards for Google Ads */
.sliding-container {
    margin-top: 4rem;
}

.sliding-container h3 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.sliding-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.slide-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.slide-card:hover {
    border-color: #ff0000;
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.15);
}

.slide-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.slide-card h4 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.slide-card p {
    color: #666666;
    line-height: 1.7;
}

.slide-bar {
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    transition: left 0.5s ease;
}

.slide-card:hover .slide-bar {
    left: 0;
}

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

/* Stack Cards for Social Media */
.stack-container {
    margin-top: 4rem;
}

.stack-container h3 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.stack-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stack-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stack-card:hover {
    border-color: #ff0000;
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.2);
}

.stack-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 0, 0, 0.1);
    line-height: 1;
}

.stack-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.stack-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.stack-card h4 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.stack-card p {
    color: #666666;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

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

/* Reveal Cards for Google Maps */
.reveal-container {
    margin-top: 4rem;
}

.reveal-container h3 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.reveal-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.reveal-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.reveal-card:hover {
    border-color: #ff0000;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.2);
}

.reveal-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, rgba(255, 0, 0, 0.05) 100%);
    transition: left 0.5s ease;
}

.reveal-card:hover .reveal-overlay {
    left: 0;
}

.reveal-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.reveal-card:hover .reveal-icon {
    transform: scale(1.15);
}

.reveal-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.reveal-card h4 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.reveal-card p {
    color: #666666;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

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

/* Service Detail Big Icon */
.service-detail-big {
    padding: 6rem 0;
    background: #ffffff;
}

.service-big-icon-section {
    text-align: center;
    margin-bottom: 5rem;
}

.big-service-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: floatGlow 3s ease-in-out infinite;
}

.big-service-icon i {
    font-size: 5rem;
    color: #ffffff;
    z-index: 1;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite;
}

@keyframes floatGlow {
    0%, 100% {
        transform: translateY(0px);
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
    }
    50% {
        transform: translateY(-15px);
        box-shadow: 0 0 60px rgba(255, 0, 0, 0.6);
    }
}

@keyframes glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.lead-text {
    font-size: 1.3rem;
    color: #666666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.service-benefits {
    margin-top: 4rem;
}

.service-benefits h3 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.benefit-item {
    background: #f8f8f8;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.benefit-item h4 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-item p {
    color: #666666;
    line-height: 1.7;
}

/* Masonry Grid for Web Design */
.web-design-masonry {
    padding: 6rem 0;
    background: #f8f8f8;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.masonry-item {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.masonry-item:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.2);
}

.masonry-item.large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 400px;
}

.masonry-item.medium {
    grid-column: span 2;
    min-height: 300px;
}

.masonry-item.small {
    grid-column: span 2;
    min-height: 250px;
}

.masonry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.masonry-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.masonry-item h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.masonry-item p {
    color: #666666;
    line-height: 1.8;
    font-size: 1.1rem;
}

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

    .masonry-item.large,
    .masonry-item.medium,
    .masonry-item.small {
        grid-column: span 1;
        grid-row: span auto;
    }
}

/* SEO Content Section */
.web-tasarim {
    padding: 6rem 0;
    background: #ffffff;
}

.web-tasarim h1 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 1.3;
}

.web-tasarim h2 {
    font-size: 2rem;
    color: #000000;
    margin: 3rem 0 1.5rem;
    font-weight: 800;
    line-height: 1.4;
}

.web-tasarim h3 {
    font-size: 1.8rem;
    color: #ff0000;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

.web-tasarim p {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.web-tasarim strong {
    color: #ff0000;
    font-weight: 700;
}

.web-tasarim a {
    color: #ff0000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.web-tasarim a:hover {
    color: #cc0000;
}

.web-tasarim ul {
    margin: 2rem 0;
    padding-left: 2rem;
    list-style-position: outside;
}

.web-tasarim ul li {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.9;
    margin-bottom: 1rem;
}

/* SEO Optimizasyonu Section Styles */
.seo-optimizasyonu {
    padding: 6rem 0;
    background: #ffffff;
}

.seo-optimizasyonu h1 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 1.3;
}

.seo-optimizasyonu h2 {
    font-size: 2rem;
    color: #000000;
    margin: 3rem 0 1.5rem;
    font-weight: 800;
    line-height: 1.4;
}

.seo-optimizasyonu h3 {
    font-size: 1.8rem;
    color: #ff0000;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

.seo-optimizasyonu p {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.seo-optimizasyonu strong {
    color: #ff0000;
    font-weight: 700;
}

.seo-optimizasyonu a {
    color: #ff0000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.seo-optimizasyonu a:hover {
    color: #cc0000;
}

.seo-optimizasyonu ul {
    margin: 2rem 0;
    padding-left: 2rem;
    list-style-position: outside;
}

.seo-optimizasyonu ul li {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.seo-optimizasyonu ol {
    margin: 2rem 0;
    padding-left: 2rem;
    list-style-position: outside;
}

.seo-optimizasyonu ol li {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.9;
    margin-bottom: 1rem;
}

/* Google Ads Yönetimi Section Styles */
.google-ads-yonetimi {
    padding: 6rem 0;
    background: #ffffff;
}

.google-ads-yonetimi h1 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 1.3;
}

.google-ads-yonetimi h2 {
    font-size: 2rem;
    color: #000000;
    margin: 3rem 0 1.5rem;
    font-weight: 800;
    line-height: 1.4;
}

.google-ads-yonetimi h3 {
    font-size: 1.8rem;
    color: #ff0000;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

.google-ads-yonetimi p {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.google-ads-yonetimi strong {
    color: #ff0000;
    font-weight: 700;
}

.google-ads-yonetimi a {
    color: #ff0000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.google-ads-yonetimi a:hover {
    color: #cc0000;
}

.google-ads-yonetimi ul {
    margin: 2rem 0;
    padding-left: 2rem;
    list-style-position: outside;
}

.google-ads-yonetimi ul li {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.google-ads-yonetimi ol {
    margin: 2rem 0;
    padding-left: 2rem;
    list-style-position: outside;
}

.google-ads-yonetimi ol li {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.9;
    margin-bottom: 1rem;
}

/* Sosyal Medya Yönetimi Section Styles */
.sosyal-medya-yonetimi {
    padding: 6rem 0;
    background: #ffffff;
}

.sosyal-medya-yonetimi h1 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 1.3;
}

.sosyal-medya-yonetimi h2 {
    font-size: 2rem;
    color: #000000;
    margin: 3rem 0 1.5rem;
    font-weight: 800;
    line-height: 1.4;
}

.sosyal-medya-yonetimi h3 {
    font-size: 1.8rem;
    color: #ff0000;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

.sosyal-medya-yonetimi p {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.sosyal-medya-yonetimi strong {
    color: #ff0000;
    font-weight: 700;
}

.sosyal-medya-yonetimi a {
    color: #ff0000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.sosyal-medya-yonetimi a:hover {
    color: #cc0000;
}

.sosyal-medya-yonetimi ul {
    margin: 2rem 0;
    padding-left: 2rem;
    list-style-position: outside;
}

.sosyal-medya-yonetimi ul li {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.sosyal-medya-yonetimi ol {
    margin: 2rem 0;
    padding-left: 2rem;
    list-style-position: outside;
}

.sosyal-medya-yonetimi ol li {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.9;
    margin-bottom: 1rem;
}

/* Google Haritalar SEO Section Styles */
.google-haritalar-seo {
    padding: 6rem 0;
    background: #ffffff;
}

.google-haritalar-seo h1 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 1.3;
}

.google-haritalar-seo h2 {
    font-size: 2rem;
    color: #000000;
    margin: 3rem 0 1.5rem;
    font-weight: 800;
    line-height: 1.4;
}

.google-haritalar-seo h3 {
    font-size: 1.8rem;
    color: #ff0000;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

.google-haritalar-seo p {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.google-haritalar-seo strong {
    color: #ff0000;
    font-weight: 700;
}

.google-haritalar-seo a {
    color: #ff0000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.google-haritalar-seo a:hover {
    color: #cc0000;
}

.google-haritalar-seo ul {
    margin: 2rem 0;
    padding-left: 2rem;
    list-style-position: outside;
}

.google-haritalar-seo ul li {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.google-haritalar-seo ol {
    margin: 2rem 0;
    padding-left: 2rem;
    list-style-position: outside;
}

.google-haritalar-seo ol li {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.why-webrek {
    background: #f8f8f8;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    border: 2px solid #e0e0e0;
}

.why-webrek h2 {
    color: #000000;
    margin-bottom: 2rem;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    font-size: 1.2rem;
    color: #333333;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.cta-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-section::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: rotate 20s linear infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 0, 0, 0.03) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: shimmerCTA 3s ease-in-out infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.cta-section h3 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.cta-section a {
    color: #ffffff;
}

.btn-seo-cta {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #ffffff;
    padding: 1.3rem 4rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
    border: 2px solid transparent;
    overflow: hidden;
}

.btn-seo-cta::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;
}

.btn-seo-cta:hover::before {
    width: 300px;
    height: 300px;
}

.btn-seo-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .web-tasarim h1 {
        font-size: 2rem;
    }

    .web-tasarim h2 {
        font-size: 1.8rem;
    }

    .web-tasarim h3 {
        font-size: 1.5rem;
    }

    .why-webrek,
    .cta-section {
        padding: 2rem 1.5rem;
    }
}

/* Service Detail Styles */
.service-detail {
    padding: 6rem 0;
    background: #ffffff;
}

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

.service-detail-text h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 2rem;
    font-weight: 700;
}

.service-detail-text p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-text h3 {
    font-size: 1.8rem;
    color: #000000;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

.service-detail-list {
    list-style: none;
    margin-bottom: 3rem;
}

.service-detail-list li {
    color: #333333;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.service-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-process-step {
    text-align: center;
}

.process-num {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
}

.service-process-step h4 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-process-step p {
    color: #666666;
    line-height: 1.7;
}

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

    .big-service-icon {
        width: 150px;
        height: 150px;
    }

    .big-service-icon i {
        font-size: 4rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* About Story Visual */
.about-story-visual {
    padding: 6rem 0;
    background: #ffffff;
}

.story-visual-header {
    text-align: center;
    margin-bottom: 5rem;
}

.story-visual-header h2 {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 900;
}

.story-visual-header p {
    font-size: 1.3rem;
    color: #666666;
}

/* Timeline */
.timeline {
    max-width: 1000px;
    margin: 0 auto 5rem;
    position: relative;
    padding: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ff0000, #cc0000);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 6rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    position: relative;
    z-index: 1;
    margin: 0 3rem;
}

.timeline-content {
    flex: 1;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-item:hover .timeline-content {
    border-color: #ff0000;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.15);
    transform: translateY(-5px);
}

.timeline-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.timeline-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.timeline-content h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-content p {
    color: #666666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Mission Vision */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-box,
.vision-box {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.mission-box::before,
.vision-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s infinite;
}

.mission-icon,
.vision-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.mission-icon i,
.vision-icon i {
    font-size: 3.5rem;
    color: #ffffff;
}

.mission-box h3,
.vision-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.mission-box p,
.vision-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .timeline::before {
        left: 2rem;
    }

    .timeline-item {
        flex-direction: column !important;
        padding-left: 4rem;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
        margin: 0;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }
}

/* References Logos Section */
.references-logos {
    padding: 6rem 0;
    background: #f8f8f8;
}

.references-logos .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.references-logos .section-header h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 900;
}

.references-logos .subtitle {
    font-size: 1.2rem;
    color: #666666;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-item {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 180px;
}

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

.logo-item:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: #ff0000;
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.15);
}

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

.logo-item img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .logo-item {
        height: 150px;
        padding: 2rem;
    }

    .logo-item img {
        max-height: 80px;
    }
}

/* Site Management Promo Section */
.site-management-promo {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.site-management-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.promo-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.promo-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(250, 112, 154, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

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

.promo-content {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.promo-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.promo-icon i {
    font-size: 60px;
    color: white;
}

.promo-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.promo-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.promo-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-weight: 600;
}

.promo-features i {
    color: #43e97b;
    font-size: 20px;
}

.promo-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-promo-primary,
.btn-promo-secondary {
    padding: 16px 35px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-promo-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-promo-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.btn-promo-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-promo-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

.promo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.promo-stats .stat {
    text-align: center;
}

.promo-stats .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 10px;
}

.promo-stats .stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

/* Responsive for Promo */
@media (max-width: 1024px) {
    .promo-card {
        padding: 40px;
    }

    .promo-content {
        grid-template-columns: 100px 1fr;
        gap: 30px;
    }

    .promo-icon {
        width: 100px;
        height: 100px;
    }

    .promo-icon i {
        font-size: 50px;
    }

    .promo-text h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .site-management-promo {
        padding: 60px 0;
    }

    .promo-card {
        padding: 30px 20px;
    }

    .promo-badge {
        position: static;
        display: inline-flex;
        margin-bottom: 20px;
        font-size: 12px;
        padding: 8px 20px;
    }

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

    .promo-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .promo-icon i {
        font-size: 40px;
    }

    .promo-text h2 {
        font-size: 28px;
    }

    .promo-text p {
        font-size: 16px;
    }

    .promo-features {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .promo-buttons {
        flex-direction: column;
    }

    .btn-promo-primary,
    .btn-promo-secondary {
        width: 100%;
        justify-content: center;
    }

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

    .promo-stats .stat-number {
        font-size: 36px;
    }
}

