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

:root {
    /* Premium Color Palette - Purple & Coral */
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --accent-secondary: #f39c12;
    --accent-purple: #a855f7;
    --accent-coral: #ff6b6b;
    --accent-teal: #4ecdc4;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bg-gradient-warm: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --bg-gradient-orange: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --bg-gradient-teal: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.12);
    --shadow-colored: 0 10px 30px rgba(233, 69, 96, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: -0.5px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--bg-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 1001;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--bg-gradient);
    transition: var(--transition);
    border-radius: 3px;
}

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

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

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

/* Hero Section - Asymmetric Design */
.hero-section {
    margin-top: 80px;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

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

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out reverse;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
    color: white;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.btn {
    padding: 1.1rem 2.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    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: white;
    color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-3px);
}

.hero-image {
    animation: fadeInRight 0.8s ease;
    position: relative;
    transform: rotate(-3deg);
    transition: var(--transition);
}

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

.hero-image::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    z-index: -1;
    transform: rotate(6deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Feature Accordion - Creative Layout */
.feature-accordion {
    max-width: 1200px;
    margin: -5rem auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.accordion-item {
    background: white;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition);
    border-left: 6px solid transparent;
}

.accordion-item:nth-child(1) {
    border-left-color: #667eea;
}

.accordion-item:nth-child(2) {
    border-left-color: #e94560;
}

.accordion-item:nth-child(3) {
    border-left-color: #4ecdc4;
}

.accordion-item.active {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateX(10px);
}

.accordion-header {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    padding-left: 2.5rem;
}

.accordion-header h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

.accordion-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    color: white;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    border-radius: 50%;
}

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

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

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

/* Section Styles */
section {
    padding: 7rem 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -25px;
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 6px;
    background: var(--bg-gradient);
    margin: 1.5rem auto 0;
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

/* Services Section - Zigzag Grid */
.services-section {
    background: var(--bg-white);
    position: relative;
}

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

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

.service-card {
    background: var(--bg-white);
    padding: 2.75rem;
    border-radius: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: var(--bg-gradient);
    opacity: 0.05;
    border-radius: 50%;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scale(2);
    opacity: 0.08;
}

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

.service-card:hover {
    transform: translateY(0) scale(1.03);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.service-icon {
    width: 95px;
    height: 95px;
    margin-bottom: 2rem;
    border-radius: 25px;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition);
    padding: 5px;
    transform: rotate(-5deg);
}

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

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

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

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* Process Section - Creative Timeline */
.process-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    padding: 9rem 0;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    grid-template-columns: 90px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
    width: 95%;
}

.timeline-item:nth-child(odd) {
    margin-right: auto;
    margin-left: 0;
    width: 95%;
}

.timeline-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

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

.timeline-number {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--bg-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
}

.timeline-number::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 60px;
    background: var(--bg-gradient);
    opacity: 0.3;
}

.timeline-item:last-child .timeline-number::after {
    display: none;
}

.timeline-item h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 800;
}

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

/* Technologies Section - Card Masonry */
.technologies-section {
    background: var(--bg-white);
}

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

.tech-category {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--bg-gradient);
}

.tech-category:nth-child(1)::before { background: linear-gradient(90deg, #667eea, #764ba2); }
.tech-category:nth-child(2)::before { background: linear-gradient(90deg, #f093fb, #f5576c); }
.tech-category:nth-child(3)::before { background: linear-gradient(90deg, #4ecdc4, #44a08d); }
.tech-category:nth-child(4)::before { background: linear-gradient(90deg, #fa709a, #fee140); }
.tech-category:nth-child(5)::before { background: linear-gradient(90deg, #30cfd0, #330867); }
.tech-category:nth-child(6)::before { background: linear-gradient(90deg, #a8edea, #fed6e3); }

.tech-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

.tech-category li {
    padding: 1rem 0;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--bg-light);
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
    padding-left: 25px;
}

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

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

.tech-category li:hover::before {
    opacity: 1;
}

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

/* Portfolio Section - Asymmetric Grid */
.portfolio-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

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

.portfolio-item {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
}

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

.portfolio-item:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.portfolio-item h3 {
    font-size: 1.5rem;
    margin: 2rem 2rem 1rem;
    color: var(--primary-color);
    font-weight: 800;
}

.portfolio-item p {
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* About Section - Split Design */
.about-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
    padding: 10rem 0 8rem;
}

.about-section .section-title,
.about-section .section-subtitle {
    color: white;
}

.about-section .section-title::after {
    background: white;
}

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

.about-text p {
    margin-bottom: 1.75rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 2;
    font-size: 1.1rem;
}

.about-image {
    position: relative;
    transform: rotate(3deg);
    transition: var(--transition);
}

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

.about-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    z-index: 0;
    transform: rotate(-6deg);
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Testimonials Section - Card Carousel */
.testimonials-section {
    background: var(--bg-white);
}

.testimonials-slider {
    max-width: 950px;
    margin: 0 auto 3rem;
    position: relative;
    min-height: 280px;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 4rem 3rem;
    background: white;
    border-radius: 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    border-left: 6px solid var(--accent-color);
}

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

.testimonial-item.active {
    display: block;
    animation: fadeInScale 0.6s ease;
}

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

.testimonial-author {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.15rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.slider-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: var(--bg-gradient);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.slider-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--bg-gradient);
    width: 50px;
    border-radius: 8px;
}

/* Contact Section - Split Layout */
.contact-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
    padding: 10rem 0 8rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    max-width: 1150px;
    margin: 0 auto;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    font-weight: 900;
}

.contact-item {
    margin-bottom: 2.5rem;
    padding-left: 50px;
    position: relative;
}

.contact-item::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--bg-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.15rem;
}

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

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

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-top: 6px solid var(--accent-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    border: 3px solid var(--bg-light);
    border-radius: 15px;
    font-size: 1.05rem;
    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 5px rgba(233, 69, 96, 0.1);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

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

.footer-section h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
}

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

.footer-section a:hover {
    color: white;
    text-decoration: underline;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

/* Cookie Notification */
.cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 2.5rem;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.cookie-content a {
    color: #4ecdc4;
    text-decoration: underline;
    font-weight: 700;
}

.cookie-btn {
    padding: 1rem 3rem;
    background: var(--bg-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 800;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    font-size: 1.05rem;
}

.cookie-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Policy Pages Styles */
.policy-page {
    margin-top: 80px;
    padding: 5rem 0;
    min-height: calc(100vh - 80px);
    background: var(--bg-light);
}

.policy-content {
    max-width: 950px;
    margin: 0 auto;
    padding: 4rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.policy-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 900;
}

.policy-content h2,
.policy-content h3 {
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-weight: 800;
}

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

.policy-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.policy-content p {
    margin-bottom: 1.5rem;
    line-height: 2;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

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

.policy-content li {
    margin-bottom: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

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

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

/* Thanks Page */
.thanks-page {
    margin-top: 80px;
    padding: 7rem 0;
    min-height: calc(100vh - 80px);
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 5rem 4rem;
    background: white;
    border-radius: 40px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    animation: fadeInUp 0.8s ease;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.thanks-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.9;
}

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

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-lg);
        padding: 3rem 0;
        gap: 1.5rem;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .burger-menu {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

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

    .hero-image {
        transform: rotate(0);
    }

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

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

    .contact-info {
        position: static;
    }

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

    .timeline-item {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .portfolio-item:nth-child(1) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hero-section {
        clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
    }

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

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }

    .timeline-number::after {
        display: none;
    }

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

    .cookie-btn {
        width: 100%;
    }

    .thanks-content {
        padding: 3rem 2rem;
    }

    .thanks-content h1 {
        font-size: 2.5rem;
    }

    .policy-content {
        padding: 2.5rem 1.5rem;
    }

    .service-card:nth-child(odd) {
        transform: translateY(0);
    }
}

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

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

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

    .contact-form {
        padding: 2rem;
    }

    .contact-info {
        padding: 2rem;
    }
}
