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

/* Main color scheme - warm modern palette */

:root {
    --primary-color: #d35400;
    --secondary-color: #e67e22;
    --accent-color: #f39c12;
    --dark-accent: #8e44ad;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #fef5e7;
    --bg-white: #ffffff;
    --bg-gradient-start: #f39c12;
    --bg-gradient-end: #d35400;
    --border-color: #f0e5d8;
    --shadow: 0 2px 10px rgba(211, 84, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(211, 84, 0, 0.2);
    --transition: all 0.3s ease;
}

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

/* Unique cursor trail effect */
body::after {
    content: '';
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Header Styles - Unique asymmetric header */
.header {
    background: var(--bg-white);
    box-shadow: none;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 50%, var(--dark-accent) 100%) 1;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: var(--transition);
}

.logo:hover::after {
    width: 100%;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-color);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* Cookie Notification - Unique slide-up design */
.cookie-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    color: var(--text-color);
    padding: 2rem;
    z-index: 2000;
    transform: translateY(150%);
    transition: var(--transition);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.3);
    border-left: 5px solid var(--accent-color);
    border-radius: 10px;
}

.cookie-notification::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    opacity: 0.1;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    transition: var(--transition);
}

.cookie-content a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--primary-color);
}

.cookie-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    border: none;
    padding: 0.75rem 2rem;
    cursor: pointer;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
}

/* Hero Section - Unique asymmetric design */
.hero {
    margin-top: 80px;
    padding: 6rem 0 8rem;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    transform: rotate(-15deg);
    z-index: 0;
    border-radius: 50px;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 60%;
    height: 100%;
    background: linear-gradient(225deg, var(--dark-accent) 0%, var(--primary-color) 100%);
    transform: rotate(20deg);
    opacity: 0.1;
    z-index: 0;
    border-radius: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    position: relative;
    z-index: 1;
}

.hero-buttons .btn-secondary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: 2px solid var(--primary-color);
}

.hero-buttons .btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-color: var(--accent-color);
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    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: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
}

.btn-secondary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(243, 156, 18, 0.1);
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(243, 156, 18, 0.2);
    transform: translateX(5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-image {
    text-align: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    opacity: 0.3;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 20px 60px rgba(211, 84, 0, 0.4);
    transition: var(--transition);
    animation: morphing 8s ease-in-out infinite;
}

@keyframes morphing {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

/* Hero Accordion - Unique stacked cards design */
.hero-accordion {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.accordion-item {
    background: var(--bg-white);
    margin-bottom: 1rem;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 5px 5px 20px rgba(211, 84, 0, 0.2);
    border-left: 5px solid var(--accent-color);
    transition: var(--transition);
    position: relative;
    max-width: 100%;
}

.accordion-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 100%);
    opacity: 0.1;
    transition: var(--transition);
}

.accordion-item:hover::after {
    width: 100%;
}

.accordion-item:hover {
    transform: translateX(10px);
    box-shadow: 8px 8px 30px rgba(211, 84, 0, 0.3);
    border-left-color: var(--primary-color);
}

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

.accordion-header:hover {
    padding-left: 2.5rem;
    color: var(--primary-color);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: var(--transition);
    color: var(--accent-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(243, 156, 18, 0.1);
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 1.5rem;
}

.accordion-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -15px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    opacity: 0.15;
    border-radius: 50%;
    z-index: -1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 70%, transparent 100%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-top: 1rem;
}

.section-header {
    margin-bottom: 4rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--accent-color) 0%, transparent 100%);
}

/* Services Section - Unique zigzag layout */
.services {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--bg-light);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

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

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: none;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--primary-color) 100%);
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:nth-child(odd) {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%, 0 85%);
}

.service-card:hover {
    transform: translateY(-8px) translateX(5px);
    box-shadow: -5px 15px 40px rgba(211, 84, 0, 0.25);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 1.5rem;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(45deg);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: var(--transition);
}

.service-card:hover h3::after {
    width: 100%;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Process Section - Diagonal flowing design */
.process {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 50%, var(--bg-light) 100%);
    position: relative;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 50%, var(--dark-accent) 100%);
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-white);
    border-radius: 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    transform: rotate(0deg);
}

.process-step:nth-child(even) {
    margin-top: 3rem;
}

.process-step:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 50px rgba(211, 84, 0, 0.3);
    z-index: 2;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--bg-white);
    color: var(--primary-color);
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-step:hover .step-number {
    transform: scale(1.2) rotate(360deg);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* Technologies Section */
.technologies {
    background: var(--bg-white);
    position: relative;
}

.technologies::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-accent) 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 50%, 0 100%);
    opacity: 0.1;
}

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

.tech-category {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: none;
    border-top: 4px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.tech-category::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transition: left 0.5s ease;
}

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

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(211, 84, 0, 0.25);
}

.tech-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tag {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(211, 84, 0, 0.2);
}

.tech-tag:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    transform: scale(1.08);
    box-shadow: var(--shadow-hover);
}

/* Portfolio Section - Masonry-like creative layout */
.portfolio {
    background: var(--bg-light);
    position: relative;
}

.portfolio-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.portfolio-category:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
}

.portfolio-category:nth-child(2) {
    grid-column: span 1;
    grid-row: span 2;
}

.portfolio-category:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
}

.portfolio-category:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
}

.portfolio-category {
    background: var(--bg-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.portfolio-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.9) 0%, rgba(142, 68, 173, 0.9) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.portfolio-category:hover::before {
    opacity: 1;
}

.portfolio-category:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(211, 84, 0, 0.4);
    z-index: 10;
}

.portfolio-category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    position: absolute;
    top: 0;
    left: 0;
}

.portfolio-category:hover img {
    transform: scale(1.15) rotate(2deg);
}

.portfolio-category h3,
.portfolio-category p {
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.portfolio-category:hover h3,
.portfolio-category:hover p {
    color: var(--bg-white);
    transform: translateY(-10px);
}

.portfolio-category h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #e8b07e;
    margin-top: auto;
    font-weight: 700;
    font-size: 1.3rem;
}

.portfolio-category p {
    padding: 0 1.5rem 1.5rem;
    color: #ffffff;
    font-size: 0.95rem;
}

/* About Section - Overlapping design */
.about {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(243, 156, 18, 0.1) 100%);
    transform: translateY(-50%) rotate(-5deg);
    border-radius: 50px;
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.about-stat {
    display: flex;
    flex-direction: column;
}

.about-stat {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border-top: 3px solid var(--accent-color);
    transition: var(--transition);
}

.about-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.about-stat strong {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    display: block;
}

.about-stat span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--accent-color);
    border-radius: 20px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: -20px 20px 60px rgba(211, 84, 0, 0.3);
    transition: var(--transition);
}

.about-image:hover img {
    transform: translate(10px, -10px);
    box-shadow: -30px 30px 80px rgba(211, 84, 0, 0.4);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--dark-accent) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

.testimonials .section-title,
.testimonials .section-subtitle {
    color: var(--bg-white);
}

.testimonials-slider {
    position: relative;
    min-height: 300px;
}

.testimonial-card {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 0;
    backdrop-filter: blur(10px);
    border: none;
    border-left: 6px solid var(--accent-color);
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6rem;
    color: var(--accent-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card.active {
    display: block;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--bg-white);
    background: transparent;
    color: var(--bg-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-btn:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    position: relative;
    padding-left: 2rem;
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-form {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 3rem;
    border-radius: 0;
    box-shadow: var(--shadow-hover);
    border: none;
    border-left: 5px solid var(--accent-color);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    opacity: 0.1;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a {
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-links a:hover::after {
    width: 100%;
}

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

/* Thanks Page */
.thanks-section {
    margin-top: 80px;
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.thanks-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--accent-color);
    box-shadow: 0 8px 30px rgba(243, 156, 18, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(243, 156, 18, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 40px rgba(243, 156, 18, 0.5);
    }
}

.thanks-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-actions {
    margin-top: 2rem;
}

/* Policy Pages */
.policy-section {
    margin-top: 80px;
    padding: 3rem 0;
    background: var(--bg-light);
}

.policy-section h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.policy-date {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--border-color);
}

.policy-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-content h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.policy-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.policy-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav.active {
        left: 0;
    }

    .burger-menu {
        display: flex;
    }

    .hero::before {
        width: 100%;
        transform: rotate(-5deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-accordion {
        max-width: 100%;
        padding: 0 20px;
    }

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .process-timeline::before {
        display: none;
    }

    .process-step:nth-child(even) {
        margin-top: 0;
    }

    .portfolio-categories {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .portfolio-category:nth-child(1),
    .portfolio-category:nth-child(2),
    .portfolio-category:nth-child(3),
    .portfolio-category:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid,
    .tech-grid,
    .portfolio-categories {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .service-card {
        clip-path: none;
    }

    .service-card:nth-child(odd) {
        clip-path: none;
    }

    .hero::before {
        top: -30%;
        right: -50%;
        width: 150%;
    }

    body::before,
    body::after {
        display: none;
    }
}

/* Smooth Scrolling - better UX */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

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

/* Some extra spacing for readability */

/* Floating shapes decoration */
body::before {
    content: '';
    position: fixed;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    opacity: 0.05;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    bottom: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: linear-gradient(225deg, var(--dark-accent) 0%, var(--primary-color) 100%);
    opacity: 0.05;
    border-radius: 50%;
    z-index: -1;
    animation: float 8s ease-in-out infinite reverse;
}

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

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

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

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

/* Page load animations */
.hero-text {
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 2;
}

.hero-image {
    animation: slideInRight 1s ease-out;
}

.section-header {
    animation: fadeInUp 0.6s ease-out;
}

/* Selection */
::selection {
    background: var(--accent-color);
    color: var(--bg-white);
}

::-moz-selection {
    background: var(--accent-color);
    color: var(--bg-white);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 10px;
    border: 2px solid var(--bg-light);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--dark-accent) 100%);
}

