﻿/* ========================================
   CSS Reset & Base Styles
   ======================================== */

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

:root {
    --primary-color: #D11956;
    --primary-dark: #a01445;
    --primary-light: #e63d7a;
    --secondary-color: #64748b;
    --text-dark: #1e293b;
    --text-light: #475569;
    --bg-white: #ffffff;
    --bg-light: #fff5f8;
    --bg-gray: #fef1f5;
    --border-color: #ffd4e3;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(209, 25, 86, 0.05);
    --shadow-md: 0 4px 20px -1px rgba(209, 25, 86, 0.15);
    --shadow-lg: 0 10px 40px -3px rgba(209, 25, 86, 0.2);
    --shadow-xl: 0 20px 60px -5px rgba(209, 25, 86, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(209, 25, 86, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: floatBackground 20s ease-in-out infinite;
}

@keyframes floatBackground {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ========================================
   Container & Layout
   ======================================== */

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

/* ========================================
   Header & Navigation
   ======================================== */

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(209, 25, 86, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand a {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    position: relative;
}

.nav-brand a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-brand a:hover::after {
    transform: scaleX(1);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: var(--bg-white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(209, 25, 86, 0.3);
    margin-left: 1rem;
    display: inline-block;
}

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

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

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(209, 25, 86, 0.4);
    background: var(--primary-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    background: radial-gradient(ellipse at center, #1a4d6d 0%, #0d2b3e 50%, #051824 100%);
    color: var(--bg-white);
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 110%;
    height: 120%;
    background-image: 
        /* Corner circuit patterns - Top Left */
        linear-gradient(90deg, transparent 0%, transparent 5%, rgba(0, 191, 255, 0.6) 5%, rgba(0, 191, 255, 0.6) 5.3%, transparent 5.3%, transparent 7%, rgba(0, 191, 255, 0.5) 7%, rgba(0, 191, 255, 0.5) 7.2%, transparent 7.2%),
        linear-gradient(0deg, transparent 0%, transparent 5%, rgba(0, 191, 255, 0.6) 5%, rgba(0, 191, 255, 0.6) 5.3%, transparent 5.3%, transparent 8%, rgba(0, 191, 255, 0.5) 8%, rgba(0, 191, 255, 0.5) 8.2%, transparent 8.2%),
        linear-gradient(45deg, transparent 0%, transparent 3%, rgba(0, 191, 255, 0.4) 3%, rgba(0, 191, 255, 0.4) 3.2%, transparent 3.2%),
        /* Corner circuit patterns - Top Right */
        linear-gradient(90deg, transparent 93%, rgba(0, 191, 255, 0.5) 93%, rgba(0, 191, 255, 0.5) 93.3%, transparent 93.3%, transparent 95%, rgba(0, 191, 255, 0.6) 95%, rgba(0, 191, 255, 0.6) 95.3%, transparent 95.3%),
        linear-gradient(0deg, transparent 0%, transparent 5%, rgba(0, 191, 255, 0.6) 5%, rgba(0, 191, 255, 0.6) 5.3%, transparent 5.3%),
        linear-gradient(-45deg, transparent 0%, transparent 3%, rgba(0, 191, 255, 0.4) 3%, rgba(0, 191, 255, 0.4) 3.2%, transparent 3.2%),
        /* Corner circuit patterns - Bottom Left */
        linear-gradient(90deg, transparent 0%, transparent 5%, rgba(0, 191, 255, 0.6) 5%, rgba(0, 191, 255, 0.6) 5.3%, transparent 5.3%),
        linear-gradient(0deg, transparent 92%, rgba(0, 191, 255, 0.5) 92%, rgba(0, 191, 255, 0.5) 92.3%, transparent 92.3%, transparent 95%, rgba(0, 191, 255, 0.6) 95%, rgba(0, 191, 255, 0.6) 95.3%, transparent 95.3%),
        /* Corner circuit patterns - Bottom Right */
        linear-gradient(90deg, transparent 93%, rgba(0, 191, 255, 0.5) 93%, rgba(0, 191, 255, 0.5) 93.3%, transparent 93.3%),
        linear-gradient(0deg, transparent 92%, rgba(0, 191, 255, 0.6) 92%, rgba(0, 191, 255, 0.6) 92.3%, transparent 92.3%);
    background-size: 100% 100%;
    opacity: 1;
    z-index: 0;
    animation: circuitGlow 3s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Circuit connection nodes - corners */
        radial-gradient(circle at 8% 8%, rgba(0, 191, 255, 0.8) 3px, rgba(0, 191, 255, 0.4) 4px, rgba(0, 191, 255, 0.2) 6px, transparent 8px),
        radial-gradient(circle at 5% 12%, rgba(0, 191, 255, 0.7) 2px, rgba(0, 191, 255, 0.3) 3px, transparent 5px),
        radial-gradient(circle at 10% 6%, rgba(0, 191, 255, 0.7) 2px, rgba(0, 191, 255, 0.3) 3px, transparent 5px),
        radial-gradient(circle at 92% 8%, rgba(0, 191, 255, 0.8) 3px, rgba(0, 191, 255, 0.4) 4px, rgba(0, 191, 255, 0.2) 6px, transparent 8px),
        radial-gradient(circle at 95% 12%, rgba(0, 191, 255, 0.7) 2px, rgba(0, 191, 255, 0.3) 3px, transparent 5px),
        radial-gradient(circle at 90% 6%, rgba(0, 191, 255, 0.7) 2px, rgba(0, 191, 255, 0.3) 3px, transparent 5px),
        radial-gradient(circle at 8% 92%, rgba(0, 191, 255, 0.8) 3px, rgba(0, 191, 255, 0.4) 4px, rgba(0, 191, 255, 0.2) 6px, transparent 8px),
        radial-gradient(circle at 5% 88%, rgba(0, 191, 255, 0.7) 2px, rgba(0, 191, 255, 0.3) 3px, transparent 5px),
        radial-gradient(circle at 92% 92%, rgba(0, 191, 255, 0.8) 3px, rgba(0, 191, 255, 0.4) 4px, rgba(0, 191, 255, 0.2) 6px, transparent 8px),
        radial-gradient(circle at 95% 88%, rgba(0, 191, 255, 0.7) 2px, rgba(0, 191, 255, 0.3) 3px, transparent 5px),
        /* Center glow effect */
        radial-gradient(ellipse at center, rgba(26, 77, 109, 0.3) 0%, transparent 60%);
    background-size: 100% 100%;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    animation: nodePulse 2s ease-in-out infinite;
}

@keyframes circuitGlow {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

@keyframes nodePulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    display: flex;
    transition: transform 0.6s ease;
    height: 100%;
    width: 100%;
}

.hero-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 120px 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--bg-white);
    animation: fadeInUp 1s ease;
    position: relative;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Slider Controls */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--bg-white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.hero-slider-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--bg-white);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.hero-slider-btn svg {
    width: 28px;
    height: 28px;
}

.hero-slider-btn-prev {
    left: 30px;
}

.hero-slider-btn-next {
    right: 30px;
}

.hero-slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.hero-slider-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.3);
}

.hero-slider-indicator.active {
    background: var(--bg-white);
    border-color: var(--bg-white);
    width: 40px;
    border-radius: 7px;
}

/* ========================================
   Page Hero (Service Pages)
   ======================================== */

.page-hero {
    background: radial-gradient(ellipse at center, #1a4d6d 0%, #0d2b3e 50%, #051824 100%);
    color: var(--bg-white);
    padding: 7rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 110%;
    height: 120%;
    background-image: 
        /* Corner circuit patterns - Top Left */
        linear-gradient(90deg, transparent 0%, transparent 5%, rgba(0, 191, 255, 0.6) 5%, rgba(0, 191, 255, 0.6) 5.3%, transparent 5.3%, transparent 7%, rgba(0, 191, 255, 0.5) 7%, rgba(0, 191, 255, 0.5) 7.2%, transparent 7.2%),
        linear-gradient(0deg, transparent 0%, transparent 5%, rgba(0, 191, 255, 0.6) 5%, rgba(0, 191, 255, 0.6) 5.3%, transparent 5.3%, transparent 8%, rgba(0, 191, 255, 0.5) 8%, rgba(0, 191, 255, 0.5) 8.2%, transparent 8.2%),
        linear-gradient(45deg, transparent 0%, transparent 3%, rgba(0, 191, 255, 0.4) 3%, rgba(0, 191, 255, 0.4) 3.2%, transparent 3.2%),
        /* Corner circuit patterns - Top Right */
        linear-gradient(90deg, transparent 93%, rgba(0, 191, 255, 0.5) 93%, rgba(0, 191, 255, 0.5) 93.3%, transparent 93.3%, transparent 95%, rgba(0, 191, 255, 0.6) 95%, rgba(0, 191, 255, 0.6) 95.3%, transparent 95.3%),
        linear-gradient(0deg, transparent 0%, transparent 5%, rgba(0, 191, 255, 0.6) 5%, rgba(0, 191, 255, 0.6) 5.3%, transparent 5.3%),
        linear-gradient(-45deg, transparent 0%, transparent 3%, rgba(0, 191, 255, 0.4) 3%, rgba(0, 191, 255, 0.4) 3.2%, transparent 3.2%),
        /* Corner circuit patterns - Bottom Left */
        linear-gradient(90deg, transparent 0%, transparent 5%, rgba(0, 191, 255, 0.6) 5%, rgba(0, 191, 255, 0.6) 5.3%, transparent 5.3%),
        linear-gradient(0deg, transparent 92%, rgba(0, 191, 255, 0.5) 92%, rgba(0, 191, 255, 0.5) 92.3%, transparent 92.3%, transparent 95%, rgba(0, 191, 255, 0.6) 95%, rgba(0, 191, 255, 0.6) 95.3%, transparent 95.3%),
        /* Corner circuit patterns - Bottom Right */
        linear-gradient(90deg, transparent 93%, rgba(0, 191, 255, 0.5) 93%, rgba(0, 191, 255, 0.5) 93.3%, transparent 93.3%),
        linear-gradient(0deg, transparent 92%, rgba(0, 191, 255, 0.6) 92%, rgba(0, 191, 255, 0.6) 92.3%, transparent 92.3%);
    background-size: 100% 100%;
    opacity: 1;
    z-index: 0;
    animation: circuitGlow 3s ease-in-out infinite alternate;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Circuit connection nodes - corners */
        radial-gradient(circle at 8% 8%, rgba(0, 191, 255, 0.8) 3px, rgba(0, 191, 255, 0.4) 4px, rgba(0, 191, 255, 0.2) 6px, transparent 8px),
        radial-gradient(circle at 5% 12%, rgba(0, 191, 255, 0.7) 2px, rgba(0, 191, 255, 0.3) 3px, transparent 5px),
        radial-gradient(circle at 10% 6%, rgba(0, 191, 255, 0.7) 2px, rgba(0, 191, 255, 0.3) 3px, transparent 5px),
        radial-gradient(circle at 92% 8%, rgba(0, 191, 255, 0.8) 3px, rgba(0, 191, 255, 0.4) 4px, rgba(0, 191, 255, 0.2) 6px, transparent 8px),
        radial-gradient(circle at 95% 12%, rgba(0, 191, 255, 0.7) 2px, rgba(0, 191, 255, 0.3) 3px, transparent 5px),
        radial-gradient(circle at 90% 6%, rgba(0, 191, 255, 0.7) 2px, rgba(0, 191, 255, 0.3) 3px, transparent 5px),
        radial-gradient(circle at 8% 92%, rgba(0, 191, 255, 0.8) 3px, rgba(0, 191, 255, 0.4) 4px, rgba(0, 191, 255, 0.2) 6px, transparent 8px),
        radial-gradient(circle at 5% 88%, rgba(0, 191, 255, 0.7) 2px, rgba(0, 191, 255, 0.3) 3px, transparent 5px),
        radial-gradient(circle at 92% 92%, rgba(0, 191, 255, 0.8) 3px, rgba(0, 191, 255, 0.4) 4px, rgba(0, 191, 255, 0.2) 6px, transparent 8px),
        radial-gradient(circle at 95% 88%, rgba(0, 191, 255, 0.7) 2px, rgba(0, 191, 255, 0.3) 3px, transparent 5px),
        /* Center glow effect */
        radial-gradient(ellipse at center, rgba(26, 77, 109, 0.3) 0%, transparent 60%);
    background-size: 100% 100%;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    animation: nodePulse 2s ease-in-out infinite;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    color: var(--bg-white);
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::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 ease, height 0.6s ease;
    z-index: -1;
}

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

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 10px 30px rgba(209, 25, 86, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(209, 25, 86, 0.4);
    background: var(--primary-dark);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 5px 20px rgba(209, 25, 86, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: transparent;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(209, 25, 86, 0.3);
}

/* ========================================
   Sections
   ======================================== */

.services {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Background Offset Blocks */
.services-bg-blocks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-block {
    position: absolute;
    border-radius: 24px;
    opacity: 0.4;
}

.bg-block-1 {
    width: 280px;
    height: 280px;
    top: 10%;
    right: 5%;
    background: linear-gradient(135deg, rgba(209, 25, 86, 0.08), rgba(209, 25, 86, 0.03));
    transform: rotate(15deg);
    animation: float1 20s ease-in-out infinite;
}

.bg-block-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 8%;
    background: linear-gradient(135deg, rgba(26, 77, 109, 0.08), rgba(26, 77, 109, 0.03));
    transform: rotate(-25deg);
    animation: float2 25s ease-in-out infinite;
}

.bg-block-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 15%;
    background: linear-gradient(135deg, rgba(209, 25, 86, 0.06), rgba(26, 77, 109, 0.04));
    transform: rotate(35deg);
    animation: float3 18s ease-in-out infinite;
}

.bg-block-4 {
    width: 220px;
    height: 220px;
    bottom: 15%;
    right: 12%;
    background: linear-gradient(135deg, rgba(26, 77, 109, 0.07), rgba(209, 25, 86, 0.04));
    transform: rotate(-15deg);
    animation: float4 22s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(15deg); }
    50% { transform: translate(30px, -30px) rotate(25deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(-25deg); }
    50% { transform: translate(-25px, 25px) rotate(-35deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(35deg); }
    50% { transform: translate(20px, 20px) rotate(45deg); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(-15deg); }
    50% { transform: translate(-30px, -20px) rotate(-25deg); }
}

.why-choose-us,
.contact,
.service-detail {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 10px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

/* ========================================
   Services List Layout with Offset Blocks
   ======================================== */

.services-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 3rem;
    align-items: start;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(209, 25, 86, 0.1);
    transition: all 0.4s ease;
}

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

.service-item:hover {
    transform: translateX(10px);
}

.service-icon {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #D11956 0%, #a01445 100%);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(209, 25, 86, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 15px 50px rgba(209, 25, 86, 0.35);
}

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

.service-icon svg {
    width: 60px;
    height: 60px;
    color: #ffffff;
    stroke-width: 2;
    position: relative;
    z-index: 1;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 0.5rem;
}

.service-content h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.service-item:hover .service-content h3 {
    color: var(--primary-color);
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
    max-width: 700px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    margin-top: 0.5rem;
    width: fit-content;
    transition: all 0.3s ease;
}

.service-link span {
    position: relative;
}

.service-link span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.service-item:hover .service-link span::after {
    width: 100%;
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-item:hover .service-link svg {
    transform: translateX(5px);
}

/* ========================================
   Service Cards
   ======================================== */

.services-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 60px;
}

.services-slider {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    scroll-behavior: smooth;
    position: relative;
    transition: transform 0.5s ease;
}

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

.service-card {
    background: linear-gradient(145deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(209, 25, 86, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(209, 25, 86, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.03;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(209, 25, 86, 0.2);
    border-color: var(--primary-color);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(209, 25, 86, 0.3);
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(209, 25, 86, 0.5);
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 25px;
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--bg-white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.service-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

.service-link:hover::after {
    transform: translateX(5px);
}

/* ========================================
   Slider Controls
   ======================================== */

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(209, 25, 86, 0.2);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(209, 25, 86, 0.3);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(209, 25, 86, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-indicator:hover {
    background: rgba(209, 25, 86, 0.5);
    transform: scale(1.2);
}

.slider-indicator.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

/* ========================================
   Features Grid
   ======================================== */

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

.feature-item {
    background: linear-gradient(145deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(209, 25, 86, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(209, 25, 86, 0.1) 90deg, transparent 180deg);
    animation: rotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

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

.feature-item:hover {
    background: var(--bg-white);
    box-shadow: 0 15px 50px rgba(209, 25, 86, 0.15);
    transform: translateY(-5px);
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.feature-item p {
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* ========================================
   Service Detail Pages
   ======================================== */

.detail-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.detail-intro h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.detail-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.detail-section {
    margin-bottom: 4rem;
}

.detail-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

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

.benefit-card {
    background: linear-gradient(145deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(209, 25, 86, 0.1);
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.4s ease;
}

.benefit-card:hover::after {
    height: 100%;
}

.benefit-card:hover {
    background: var(--bg-white);
    box-shadow: 0 15px 50px rgba(209, 25, 86, 0.15);
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   Process Steps
   ======================================== */

.process-steps {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    background: linear-gradient(145deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 2.5rem 2.5rem 2.5rem 4rem;
    border-radius: 25px;
    position: relative;
    border: 1px solid rgba(209, 25, 86, 0.1);
    transition: all 0.4s ease;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    border-radius: 25px 0 0 25px;
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

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

.process-step:hover {
    box-shadow: 0 15px 50px rgba(209, 25, 86, 0.15);
    transform: translateX(10px);
}

.step-number {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 10px 30px rgba(209, 25, 86, 0.4);
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    transform: translateY(-50%) scale(1.2) rotate(360deg);
}

.process-step h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   Technology Tags
   ======================================== */

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tech-tag {
    background: linear-gradient(145deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(209, 25, 86, 0.2);
    position: relative;
    overflow: hidden;
}

.tech-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.4s ease;
    z-index: 0;
}

.tech-tag:hover::before {
    left: 0;
}

.tech-tag:hover {
    color: var(--bg-white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(209, 25, 86, 0.3);
    border-color: transparent;
}

/* ========================================
   Benefits List
   ======================================== */

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 2rem 2.5rem;
    border-radius: 8px;
}

.benefits-list li {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.benefits-list strong {
    color: var(--text-dark);
}

/* ========================================
   Pricing Cards
   ======================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(145deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(209, 25, 86, 0.1);
    border: 2px solid rgba(209, 25, 86, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-card:hover::before {
    opacity: 0.03;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    background: var(--bg-white);
    box-shadow: 0 20px 60px rgba(209, 25, 86, 0.25);
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(209, 25, 86, 0.4);
    z-index: 10;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(209, 25, 86, 0.2);
    border-color: var(--primary-color);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 30px 80px rgba(209, 25, 86, 0.3);
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.pricing-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    color: var(--text-light);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, rgba(209, 25, 86, 0.02) 0%, transparent 100%);
    opacity: 0.5;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-underline {
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-description {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-image-wrapper {
    margin-top: 2rem;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-image-wrapper:hover {
    transform: translateY(-5px);
}

.contact-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

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

.contact-buttons {
    display: flex;
    gap: 1rem;
}

.contact-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.love-btn {
    background: var(--primary-color);
    color: white;
}

.love-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(209, 25, 86, 0.3);
}

.nourets-btn {
    background: #ecf0f1;
    color: #5a6c7d;
}

.nourets-btn:hover {
    background: #d5dbdf;
    transform: translateY(-2px);
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contact-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.contact-form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.close-btn {
    background: #f5f5f5;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #e5e5e5;
}

.close-btn svg {
    color: #8a8a8a;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(209, 25, 86, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(209, 25, 86, 0.3);
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    background: var(--primary-color);
    color: var(--primary-dark);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-primary:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    background-color: var(--bg-light);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-section p {
    color: #fff;
    line-height: 1.7;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        gap: 0;
    }

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

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-menu a.active::after {
        display: none;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

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

    .section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .hero-slider-btn {
        width: 45px;
        height: 45px;
    }

    .hero-slider-btn svg {
        width: 22px;
        height: 22px;
    }

    .hero-slider-btn-prev {
        left: 10px;
    }

    .hero-slider-btn-next {
        right: 10px;
    }

    .hero-slide {
        padding: 5rem 0 4rem;
    }

    .hero-slider-container {
        min-height: 500px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-slider-indicators {
        bottom: 20px;
        gap: 8px;
    }

    .hero-slider-indicator {
        width: 10px;
        height: 10px;
    }

    .hero-slider-indicator.active {
        width: 30px;
    }

    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-list {
        gap: 2.5rem;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem 0;
    }

    .service-item:hover {
        transform: none;
    }

    .service-icon {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .service-icon svg {
        width: 50px;
        height: 50px;
    }

    .service-content {
        align-items: center;
        text-align: center;
    }

    .service-content h3 {
        font-size: 1.75rem;
    }

    .service-content p {
        font-size: 1rem;
    }

    .bg-block-1 {
        width: 180px;
        height: 180px;
    }

    .bg-block-2 {
        width: 120px;
        height: 120px;
    }

    .bg-block-3 {
        width: 100px;
        height: 100px;
    }

    .bg-block-4 {
        width: 140px;
        height: 140px;
    }

    .services-slider-container {
        padding: 0 50px;
    }

    .service-card {
        flex: 0 0 100%;
        min-width: 280px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn svg {
        width: 20px;
        height: 20px;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .contact-action-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-form {
        padding: 2rem;
    }

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

@media (max-width: 670px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.5px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-content {
        padding: 0 1.25rem;
        max-width: 100%;
        width: 100%;
    }

    .hero-slide {
        padding: 4.5rem 0 3.5rem;
        width: 100%;
    }

    .hero-slider {
        width: 100%;
    }

    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

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

@media (max-width: 480px) {
    .hero {
        min-height: 450px;
    }

    .hero-slider-container {
        min-height: 450px;
        width: 100%;
        overflow: hidden;
    }

    .hero-slider {
        width: 100%;
    }

    .hero-slide {
        padding: 4rem 0 3rem;
        width: 100%;
        min-width: 100%;
    }

    .hero-title {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .hero-content {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
    }

    .hero-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-slider-btn {
        width: 40px;
        height: 40px;
    }

    .hero-slider-btn svg {
        width: 18px;
        height: 18px;
    }

    .hero-slider-btn-prev {
        left: 5px;
    }

    .hero-slider-btn-next {
        right: 5px;
    }

    .hero-slider-indicators {
        bottom: 15px;
        gap: 6px;
    }

    .hero-slider-indicator {
        width: 8px;
        height: 8px;
    }

    .hero-slider-indicator.active {
        width: 24px;
    }

    .page-hero h1 {
        font-size: 1.875rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
    }

    .service-card,
    .benefit-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* ========================================
   Animations
   ======================================== */

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

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-card,
.feature-item,
.benefit-card {
    animation: fadeIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Stagger animation for cards */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

/* Floating animation for decorative elements */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* ========================================
   Success/Error Message Alert
   ======================================== */

.message-alert {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    animation: slideDown 0.3s ease-out;
    max-width: 90%;
    text-align: center;
}

.message-alert.success {
    background-color: #10b981;
    color: white;
    border: 2px solid #059669;
}

.message-alert.error {
    background-color: #ef4444;
    color: white;
    border: 2px solid #dc2626;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}

/* ========================================
   Portfolio Page Styles
   ======================================== */

.portfolio-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

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

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(209, 25, 86, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    animation: fadeIn 0.6s ease-in;
    justify-items: center;
}

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
    width: 100%;
    max-width: 450px;
    display: block !important;
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: none !important;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 350px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(209, 25, 86, 0.95) 0%, rgba(161, 20, 69, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 0;
    overflow-y: auto;
}

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

.portfolio-overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-sizing: border-box;
}

.portfolio-item:hover .portfolio-overlay-content {
    transform: translateY(0);
}

.portfolio-overlay-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    padding: 0;
    text-align: center;
    width: 100%;
}

.portfolio-overlay-content p {
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.95;
    line-height: 1.6;
    padding: 0;
    text-align: center;
    width: 100%;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.portfolio-tags span {
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.portfolio-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.portfolio-link:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.portfolio-link svg {
    width: 16px;
    height: 16px;
}

/* Portfolio Stats Section */
.portfolio-stats {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

/* Portfolio Responsive */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .portfolio-image {
        min-height: 300px;
    }
    
    .portfolio-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(209, 25, 86, 0.95) 0%, rgba(209, 25, 86, 0.7) 50%, transparent 100%);
        pointer-events: none;
    }
    
    .portfolio-overlay-content {
        transform: translateY(0);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        display: block;
    }
    
    .portfolio-overlay-content h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .portfolio-overlay-content p {
        font-size: 14px;
        margin-bottom: 15px;
        display: block;
    }
    
    .portfolio-tags {
        justify-content: flex-start;
        margin-bottom: 15px;
    }
    
    .portfolio-tags span {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    .portfolio-links {
        pointer-events: auto;
        justify-content: flex-start;
    }
    
    .portfolio-link {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

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

/* ========================================
   Cookie Consent Banner
   ======================================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(209, 25, 86, 0.15);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text h4 {
    color: var(--text-dark);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-text p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-accept {
    background: var(--primary-color);
    color: white;
}

.btn-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(209, 25, 86, 0.3);
}

.btn-decline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.btn-decline:hover {
    background: var(--bg-gray);
    color: var(--text-dark);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .cookie-text h4 {
        font-size: 16px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
}

/* ========================================
   Promotion Page Styles
   ======================================== */

.promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.promotion-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.promotion-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.promotion-icon svg {
    width: 40px;
    height: 40px;
}

.promotion-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.promotion-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* Promotion Benefits Section */
.promotion-benefits {
    margin: 80px 0;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-gray));
    border-radius: 20px;
}

.promotion-benefits h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

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

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.benefit-check {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-check svg {
    width: 24px;
    height: 24px;
    color: white;
}

.benefit-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

/* Price Highlight Section */
.price-highlight {
    margin: 80px 0;
    display: flex;
    justify-content: center;
}

.price-card {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    max-width: 900px;
    width: 100%;
    border: 3px solid var(--primary-color);
    position: relative;
}

.price-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.price-card h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.price-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 32px 0;
    gap: 4px;
}

.currency {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 8px;
}

.amount {
    font-size: 72px;
    color: var(--primary-color);
    font-weight: 900;
    line-height: 1;
}

.period {
    font-size: 24px;
    color: var(--text-light);
    font-weight: 600;
    align-self: flex-end;
    margin-bottom: 12px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin: 32px 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
}

.price-features li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

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

.price-features li:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 24px;
    width: 100%;
}

/* Why Choose Section */
.why-choose {
    margin: 80px 0 60px;
}

.why-choose h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

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

.why-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-left-width: 6px;
}

.why-item h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.why-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Promotion Contact Additions */
.promotion-contact-text {
    margin-top: 30px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

.promotion-contact-text h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.promotion-contact-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.contact-benefits li {
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
}

.form-notice {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.form-notice p {
    margin: 0;
    color: var(--text-light);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.section-underline.center {
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Promotion Page */
@media (max-width: 768px) {
    .promotion-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 40px 0;
    }

    .promotion-benefits {
        padding: 40px 24px;
        margin: 60px 0;
    }

    .promotion-benefits h2 {
        font-size: 28px;
    }

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

    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
    }

    .price-card {
        padding: 40px 24px;
    }

    .price-badge {
        top: -20px;
        font-size: 12px;
        padding: 6px 20px;
    }

    .price-card h2 {
        font-size: 26px;
    }

    .amount {
        font-size: 56px;
    }

    .currency {
        font-size: 28px;
    }

    .period {
        font-size: 20px;
    }

    .price-features li {
        font-size: 15px;
    }

    .why-choose h2 {
        font-size: 28px;
    }

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

    .why-item {
        padding: 28px;
    }

    .promotion-contact-text {
        padding: 24px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }
}
