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

:root {
    --primary-color: #6a1b9a;
    --primary-dark: #4a148c;
    --primary-light: #8e24aa;
    --accent-color: #ff6f00;
    --accent-light: #ff8f00;
    --accent-dark: #e65100;
    --secondary-color: #00bcd4;
    --text-dark: #1a1a1a;
    --text-light: #5a5a5a;
    --text-white: #ffffff;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #6a1b9a 0%, #ff6f00 100%);
    --border-color: #e0e0e0;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Cookie Notification */
.cookie-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%);
    color: var(--text-white);
    padding: 25px 30px;
    z-index: 10000;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 2px solid rgba(255, 111, 0, 0.3);
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-btn {
    background: var(--accent-color);
    color: var(--text-white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
    align-self: flex-start;
}

.cookie-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
}

/* Header with unique design */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    border-image-slice: 1;
}

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

.logo {
    font-size: 22px;
    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;
    position: relative;
}

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

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

.nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 18px;
    border-radius: 20px;
}

.nav-link:hover {
    background: linear-gradient(135deg, rgba(106, 27, 154, 0.1), rgba(255, 111, 0, 0.1));
    color: var(--primary-color);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

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

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

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

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

/* Unique Hero Section with asymmetric design */
.hero {
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 50%, #ff6f00 100%);
    color: var(--text-white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

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

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,188,212,0.2) 0%, transparent 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 15s infinite ease-in-out reverse;
}

@keyframes morph {
    0%, 100% { 
        border-radius: 40% 60% 70% 30% / 50% 40% 60% 50%;
        transform: translate(0, 0) rotate(0deg);
    }
    25% { 
        border-radius: 60% 40% 50% 50% / 30% 60% 40% 70%;
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% { 
        border-radius: 50% 50% 30% 70% / 50% 50% 50% 50%;
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% { 
        border-radius: 30% 70% 60% 40% / 70% 30% 70% 30%;
        transform: translate(20px, 20px) rotate(270deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 300;
}

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

.btn {
    padding: 18px 42px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    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.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

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

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

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 111, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

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

/* Unique stats design */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    display: block;
}

.stat-label {
    font-size: 13px;
    opacity: 0.9;
    margin-top: 5px;
}

.hero-image {
    position: relative;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 30px 30px 30px 5px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    border: 5px solid rgba(255, 255, 255, 0.2);
}

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

/* Unique accordion design */
.hero-accordion {
    background: rgba(0, 0, 0, 0.2);
    padding: 70px 0;
    margin-top: 60px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.accordion {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.accordion-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--bg-gradient);
    opacity: 0;
    transition: var(--transition);
}

.accordion-item.active::before {
    opacity: 1;
}

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 111, 0, 0.4);
    transform: translateX(5px);
}

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

.accordion-icon {
    font-size: 30px;
    transition: var(--transition);
    font-weight: 300;
    background: rgba(255, 111, 0, 0.3);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 30px;
}

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

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

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

.section-title {
    font-size: 46px;
    font-weight: 800;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* Unique Services Grid with staggered layout */
.services {
    background: var(--bg-light);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(106, 27, 154, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.service-card {
    background: var(--bg-white);
    padding: 45px 35px;
    border-radius: 30px 30px 30px 5px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--bg-gradient);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:nth-child(even) {
    border-radius: 30px 5px 30px 30px;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.service-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    border-radius: 25px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(106, 27, 154, 0.1), rgba(255, 111, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

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

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

.service-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    position: relative;
    z-index: 1;
}

.service-features li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
    width: 28px;
    height: 28px;
    background: rgba(255, 111, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Creative Process Timeline */
.process {
    background: var(--bg-white);
}

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

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    grid-template-columns: 1fr 120px;
}

.timeline-item:nth-child(even) .timeline-content {
    order: -1;
    text-align: right;
}

.timeline-number {
    width: 120px;
    height: 120px;
    background: var(--bg-gradient);
    color: var(--text-white);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(106, 27, 154, 0.3);
    transition: var(--transition);
}

.timeline-item:hover .timeline-number {
    transform: scale(1.1) rotate(10deg);
    border-radius: 50%;
}

.timeline-content {
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(106, 27, 154, 0.05), rgba(255, 111, 0, 0.05));
    border-radius: 25px;
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.timeline-item:nth-child(even) .timeline-content:hover {
    transform: translateX(-10px);
}

.timeline-content h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

/* Creative Portfolio Grid */
.portfolio {
    background: var(--bg-light);
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
    padding: 120px 0;
}

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

.portfolio-item {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 0;
    background: var(--bg-gradient);
    transition: var(--transition);
}

.portfolio-item:hover::before {
    height: 100%;
}

.portfolio-item:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.portfolio-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 18px;
}

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

/* Creative Tech Stack */
.tech-stack {
    background: linear-gradient(135deg, #2d0042 0%, #4a148c 50%, #ff6f00 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.tech-stack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.tech-stack .section-title {
    color: var(--text-white);
    background: linear-gradient(135deg, #ffffff 0%, #ff8f00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.tech-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.tech-item:hover::before {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

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

.tech-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(255, 111, 0, 0.4);
}

.tech-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--accent-light);
    position: relative;
    z-index: 1;
}

.tech-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* About Section with unique layout */
.about {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 70px;
    align-items: center;
    margin-top: 60px;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 16px;
}

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

.about-stat {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(106, 27, 154, 0.05), rgba(255, 111, 0, 0.05));
    border-radius: 20px;
    transition: var(--transition);
}

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

.stat-value {
    font-size: 52px;
    font-weight: 800;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.stat-desc {
    color: var(--text-light);
    font-size: 13px;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--bg-gradient);
    opacity: 0.1;
    border-radius: 50% 50% 0 50%;
    z-index: -1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 30px 5px 30px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 6px solid var(--bg-light);
}

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

/* Security Section */
.security {
    background: var(--bg-light);
}

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

.security-item {
    background: var(--bg-white);
    padding: 45px 35px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border-top: 6px solid transparent;
}

.security-item:nth-child(1) {
    border-top-color: var(--primary-color);
}

.security-item:nth-child(2) {
    border-top-color: var(--accent-color);
}

.security-item:nth-child(3) {
    border-top-color: var(--secondary-color);
}

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

.security-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 18px;
}

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

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    margin-top: 60px;
}

.contact-info h3 {
    font-size: 32px;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 35px;
}

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

.contact-detail {
    padding: 20px;
    background: linear-gradient(135deg, rgba(106, 27, 154, 0.05), rgba(255, 111, 0, 0.05));
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.contact-detail:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.contact-detail strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 16px;
}

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

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

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

.contact-form {
    background: linear-gradient(135deg, rgba(106, 27, 154, 0.08), rgba(255, 111, 0, 0.08));
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(106, 27, 154, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(106, 27, 154, 0.1);
}

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

/* Footer with unique design */
.footer {
    background: linear-gradient(135deg, #2d0042 0%, #4a148c 50%, #6a1b9a 100%);
    color: var(--text-white);
    padding: 70px 0 25px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
}

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

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--accent-light);
    position: relative;
    padding-bottom: 10px;
}

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

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.footer-section a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

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

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

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

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom p:last-child {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 10px;
}

/* Thanks Page */
.thanks-section {
    padding: 140px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(106, 27, 154, 0.05), rgba(255, 111, 0, 0.05));
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    max-width: 650px;
    margin: 0 auto;
}

.thanks-icon {
    width: 140px;
    height: 140px;
    background: var(--bg-gradient);
    color: var(--text-white);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    margin: 0 auto 40px;
    box-shadow: 0 20px 60px rgba(106, 27, 154, 0.4);
    animation: morph-icon 3s infinite ease-in-out;
}

@keyframes morph-icon {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

.thanks-content h1 {
    font-size: 48px;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 18px;
}

.thanks-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* Policy Pages */
.policy-section {
    padding: 120px 0 100px;
    background: var(--bg-light);
    min-height: 70vh;
}

.policy-content {
    max-width: 950px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border-top: 6px solid var(--primary-color);
}

.policy-content h1 {
    font-size: 46px;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.policy-content h2 {
    font-size: 30px;
    color: var(--primary-color);
    margin-top: 45px;
    margin-bottom: 18px;
}

.policy-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 15px;
}

.policy-content h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 12px;
}

.policy-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 18px;
}

.policy-content ul {
    margin-left: 35px;
    margin-bottom: 25px;
}

.policy-content li {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 12px;
}

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

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

.policy-intro {
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 35px;
    line-height: 1.8;
}

.policy-updated {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 3px solid var(--border-color);
    color: var(--text-light);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        max-height: calc(100vh - 73px);
        overflow-y: auto;
        align-items: stretch;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-link {
        padding: 12px 20px;
        border-radius: 10px;
    }

    .burger-menu {
        display: flex;
    }

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

    .hero-title {
        font-size: 40px;
    }

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

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

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

    .timeline-item,
    .timeline-item:nth-child(even) {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .timeline-item:nth-child(even) .timeline-content {
        order: 0;
        text-align: left;
        border-left: 4px solid var(--primary-color);
        border-right: none;
    }

    .timeline-number {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 34px;
    }

    .section-title {
        font-size: 36px;
    }

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

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

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .policy-content {
        padding: 40px 25px;
    }

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

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .service-card,
    .portfolio-item,
    .security-item {
        padding: 30px 25px;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .timeline-number {
        width: 90px;
        height: 90px;
        font-size: 28px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar {
    width: 12px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--bg-gradient);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #8e24aa 0%, #ff8f00 100%);
}
