/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Unique Color Palette */
    --primary-color: #ff6b35;
    --primary-dark: #c73e1d;
    --accent-color: #f7b801;
    --accent-secondary: #00c9a7;
    --deep-purple: #6a4c93;
    --dark-navy: #1d263b;
    
    --text-primary: #1d263b;
    --text-secondary: #536471;
    --text-light: #ffffff;
    --bg-light: #fef8f4;
    --bg-cream: #fff9f0;
    
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-light);
    overflow-x: hidden;
}

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

/* Cookie Consent - Unique Design */
.cookie-consent {
    position: fixed;
    bottom: 30px;
    right: 30px;
    max-width: 420px;
    background: var(--dark-navy);
    color: var(--text-light);
    padding: 30px;
    z-index: 10000;
    transform: translateX(500px) rotate(5deg);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--accent-color);
}

.cookie-consent.show {
    transform: translateX(0) rotate(0deg);
}

.cookie-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-content a {
    color: var(--accent-color);
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-accept,
.btn-decline {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-accept {
    background: var(--accent-color);
    color: var(--dark-navy);
    flex: 1;
}

.btn-accept:hover {
    background: var(--accent-secondary);
    transform: scale(1.05);
}

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

.btn-decline:hover {
    border-color: var(--text-light);
}

/* Header - Floating Style */
.main-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 1320px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(29, 38, 59, 0.1);
    z-index: 1000;
    padding: 20px 40px;
    border-radius: 60px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
}

.main-header:hover {
    box-shadow: 0 15px 60px rgba(29, 38, 59, 0.15);
}

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

.logo a {
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--deep-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: -1px;
    position: relative;
}

.logo a::after {
    content: '●';
    color: var(--accent-color);
    margin-left: 5px;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Burger Menu - Unique Design */
.burger-menu {
    display: none;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: var(--transition);
}

.burger-menu:hover {
    transform: scale(1.1) rotate(90deg);
}

.burger-menu span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
    border-radius: 2px;
}

.burger-menu span:nth-child(1) { top: 16px; }
.burger-menu span:nth-child(2) { top: 24px; }
.burger-menu span:nth-child(3) { top: 32px; }

.burger-menu.active {
    transform: rotate(180deg);
}

.burger-menu.active span:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: 24px;
}

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

.burger-menu.active span:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: 24px;
}

/* Navigation - Inline Style */
.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: translateY(-2px);
}

/* Hero Section - Asymmetric Layout */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 100px;
    background: linear-gradient(165deg, var(--bg-cream) 0%, var(--bg-light) 50%, #fff 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(106,76,147,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

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

.hero-slider {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.slide {
    display: none;
    flex: 1;
    padding: 0;
}

.slide.active {
    display: flex;
    flex-direction: column;
    animation: slideReveal 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.slide-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    flex: 1;
    min-height: 500px;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.hero-text h1::first-line {
    font-size: 5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
}

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

.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    border-radius: 30px;
    transform: rotate(5deg);
    z-index: 0;
}

.hero-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Slider Controls - Integrated Position */
.slider-controls {
    position: relative;
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    z-index: 2;
}

.slider-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.2);
    font-weight: bold;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.slider-dots {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 107, 53, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-color);
    width: 45px;
    border-radius: 6px;
    border-color: var(--accent-color);
}

/* Buttons - Unique Style */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.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, height 0.6s;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 700px;
}

/* Services Section - Card Grid Asymmetric */
.services-section {
    background: white;
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
    padding: 150px 0;
}

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

.service-card {
    background: var(--bg-cream);
    padding: 45px 35px;
    border-radius: 25px;
    transition: var(--transition);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    opacity: 0;
    border-radius: 50%;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 0.1;
    transform: scale(3);
}

.service-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.service-card:nth-child(even) {
    transform: translateY(20px);
}

.service-card:nth-child(even):hover {
    transform: translateY(10px) rotate(1deg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--deep-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-5deg);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
}

.service-icon img {
    width: 45px;
    height: 45px;
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

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

/* Development Section - Split Layout */
.development-section {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--deep-purple) 100%);
    color: white;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
    padding: 150px 0;
}

.development-section .section-title {
    color: white;
    text-align: center;
}

.development-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.accordion-container {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--accent-color);
    transform: translateX(10px);
}

.accordion-header {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    color: white;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    transition: var(--transition);
}

.accordion-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--dark-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    font-weight: 400;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    background: var(--accent-secondary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 30px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 0 30px 30px;
}

.accordion-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.8;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
}

.accordion-content li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.accordion-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Design Section - Diagonal Split */
.design-section {
    background: white;
    position: relative;
}

.design-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.design-text .section-title {
    text-align: left;
    background: linear-gradient(135deg, var(--primary-color), var(--deep-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.design-text > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.9;
}

.design-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.design-feature {
    padding: 25px 30px;
    background: var(--bg-cream);
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
}

.design-feature::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.design-feature:hover::after {
    opacity: 0.3;
    transform: translateY(-50%) scale(1.5);
}

.design-feature:hover {
    transform: translateX(15px);
    border-left-width: 8px;
}

.design-feature h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.design-feature p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.design-image {
    position: relative;
}

.design-image::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-secondary), var(--deep-purple));
    border-radius: 30px;
    transform: rotate(-5deg);
    z-index: 0;
}

.design-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    transform: rotate(3deg);
}

/* Solutions Section - Masonry Style */
.solutions-section {
    background: var(--bg-light);
}

.solutions-section .section-title {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solutions-section .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.solution-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    border: 3px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-secondary));
    transform: translateX(-100%);
    transition: var(--transition);
}

.solution-card:hover::before {
    transform: translateX(0);
}

.solution-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
}

.solution-card:nth-child(odd) {
    transform: translateY(30px);
}

.solution-card:nth-child(odd):hover {
    transform: translateY(20px);
}

.solution-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.solution-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.solution-card ul {
    list-style: none;
    padding: 0;
}

.solution-card li {
    padding: 10px 0 10px 35px;
    position: relative;
    color: var(--text-secondary);
}

.solution-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Process Section - Vertical Timeline */
.process-section {
    background: white;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    padding: 150px 0;
}

.process-section .section-title {
    text-align: center;
    background: linear-gradient(135deg, var(--deep-purple), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-section .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.process-timeline {
    max-width: 1200px;
    margin: 60px auto 0;
    position: relative;
    padding-left: 120px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-secondary));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

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

.timeline-number {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    position: absolute;
    left: -120px;
    top: 0;
    z-index: 2;
    border: 4px solid white;
}

.timeline-content {
    background: var(--bg-cream);
    padding: 40px 45px;
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
    flex: 1;
    max-width: 100%;
    min-width: 0;
}

.timeline-content:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 18px;
    line-height: 1.3;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05rem;
    margin: 0;
}

/* Technologies Section */
.technologies-section {
    background: linear-gradient(135deg, var(--bg-cream) 0%, white 100%);
}

.technologies-section .section-title {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--deep-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.technologies-section .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.tech-category {
    background: white;
    padding: 35px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.05;
    transition: var(--transition);
}

.tech-category:hover::before {
    width: 100%;
}

.tech-category:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.tech-category h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
}

.tech-category ul {
    list-style: none;
    padding: 0;
}

.tech-category li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

.tech-category li:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* Contact Section - Split Design */
.contact-section {
    background: white;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
    padding: 150px 0;
}

.contact-section .section-title {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-section .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    background: linear-gradient(135deg, var(--dark-navy), var(--deep-purple));
    padding: 50px 40px;
    border-radius: 30px;
    color: white;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 35px;
    color: var(--accent-color);
}

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

.contact-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.contact-item strong {
    display: block;
    color: var(--accent-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-color);
}

/* Contact Form */
.contact-form {
    background: var(--bg-cream);
    padding: 50px 40px;
    border-radius: 30px;
    border: 3px solid transparent;
    transition: var(--transition);
}

.contact-form:hover {
    border-color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.1);
}

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

.contact-form .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* Footer - Modern Design */
.main-footer {
    background: var(--dark-navy);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247,184,1,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--accent-color);
}

.footer-section p {
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.8;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(8px);
}

.footer-section address {
    font-style: normal;
}

.footer-section address a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section address a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.7;
}

/* Policy Pages */
.policy-page {
    padding: 150px 0 80px;
    background: white;
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.policy-page h1 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--deep-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    text-align: center;
}

.policy-page h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
}

.policy-page h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 15px;
}

.policy-page h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 30px;
    margin-bottom: 12px;
}

.policy-page p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.9;
}

.policy-page ul,
.policy-page ol {
    margin-bottom: 25px;
    padding-left: 40px;
    color: var(--text-secondary);
}

.policy-page li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.policy-page a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.policy-page a:hover {
    color: var(--accent-color);
}

.policy-date {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 40px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-purple) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.thanks-page::before,
.thanks-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.thanks-page::before {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.thanks-page::after {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
}

.thanks-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 30px;
}

.thanks-content p {
    font-size: 1.4rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.thanks-content .btn {
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .main-header {
        width: calc(100% - 40px);
        padding: 15px 30px;
        top: 15px;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        height: 100vh;
        background: white;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        z-index: 999;
        padding: 100px 30px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .nav-link {
        padding: 15px 20px;
        border-radius: 15px;
        background: var(--bg-light);
    }
    
    .slide-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
        min-height: auto;
    }
    
    .slider-controls {
        margin: 30px auto 0;
        padding: 0 20px;
        gap: 15px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .slider-dots {
        gap: 8px;
        padding: 0 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 35px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-text h1::first-line {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card:nth-child(even) {
        transform: translateY(0);
    }
    
    .design-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card:nth-child(odd) {
        transform: translateY(0);
    }
    
    .process-timeline {
        padding-left: 80px;
        max-width: 100%;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .timeline-number {
        position: relative;
        left: auto;
        top: auto;
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.4rem;
        align-self: flex-start;
        margin-left: -80px;
    }
    
    .timeline-content {
        padding: 30px 35px;
        width: 100%;
    }
    
    .timeline-content h3 {
        font-size: 1.4rem;
    }
    
    .timeline-content p {
        font-size: 1rem;
    }
    
    @media (max-width: 480px) {
        .process-timeline {
            padding-left: 60px;
        }
        
        .process-timeline::before {
            left: 20px;
        }
        
        .timeline-number {
            width: 50px;
            height: 50px;
            min-width: 50px;
            font-size: 1.2rem;
            margin-left: -60px;
        }
        
        .timeline-content {
            padding: 25px 30px;
        }
        
        .timeline-content h3 {
            font-size: 1.3rem;
        }
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-consent {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
    
    section {
        padding: 80px 0;
    }
    
    .services-section,
    .development-section,
    .process-section,
    .contact-section {
        padding: 100px 0;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h1::first-line {
        font-size: 2.2rem;
    }
    
    .slider-controls {
        margin: 25px auto 0;
        padding: 0 15px;
        gap: 10px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-dots {
        gap: 6px;
        padding: 0 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .thanks-content h1 {
        font-size: 3rem;
    }
    
    .container,
    .policy-container {
        padding: 0 20px;
    }
}

body.menu-open {
    overflow: hidden;
}

/* Smooth scroll behavior */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
