/* ========================================
   ROOT VARIABLES & RESET
======================================== */
:root {
    --primary-blue: #02AEEC;
    --secondary-blue: #0399DE;
    --accent-orange: #F76C5E;
    --light-bg: #F7F9FB;
    --white: #FFFFFF;
    --dark: #222222;
    --gray: #555555;
    --light-gray: #EEEEEE;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   UTILITY CLASSES
======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary-blue);
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: #e65a4d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(247, 108, 94, 0.2);
}

.btn-secondary {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(2, 174, 236, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-blue);
    color: var(--secondary-blue);
}

.btn-outline:hover {
    background: var(--secondary-blue);
    color: var(--white);
}

/* ========================================
   CARDS
======================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* ========================================
   HEADER
======================================== */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.logo h2 {
    color: var(--secondary-blue);
    font-weight: 700;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav ul li a {
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
    position: relative;
}

.nav ul li a:hover,
.nav ul li a.active {
    color: var(--primary-blue);
}

.nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-blue);
}

.header-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-cta .btn {
    padding: 10px 25px;
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(2, 174, 236, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    text-align: left;
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #b4b4b4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
    z-index: 1;
}

.hero-image-container {
    margin: 40px 0;
    text-align: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.instagram-link a {
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

.instagram-link a:hover {
    opacity: 0.8;
}

.instagram-link i {
    margin-right: 10px;
}

/* ========================================
   CODE WINDOW (Hero Visual)
======================================== */
.code-window {
    width: 100%;
    max-width: 550px;
    background: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.code-window:hover {
    transform: rotateY(0) rotateX(0);
}

.window-header {
    background: #252526;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
}

.dots {
    display: flex;
    gap: 8px;
    margin-right: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.window-title {
    color: #999;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.window-body {
    padding: 20px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #d4d4d4;
    display: flex;
    gap: 15px;
    min-height: 300px;
}

.line-numbers {
    display: flex;
    flex-direction: column;
    color: #858585;
    text-align: right;
    user-select: none;
}

#typewriter {
    white-space: pre;
    display: block;
}

/* Syntax Highlighting */
.token-tag {
    color: #569cd6;
}

.token-attr {
    color: #9cdcfe;
}

.token-string {
    color: #ce9178;
}

.token-content {
    color: #d4d4d4;
}

.token-comment {
    color: #6a9955;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background-color: #d4d4d4;
    vertical-align: text-bottom;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ========================================
   FEATURES SECTION
======================================== */
.features {
    padding: 80px 0;
    background: var(--light-bg);
}

.features .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.feature-card {
    text-align: center;
    flex: 1;
}

.feature-icon {
    font-size: 40px;
    color: var(--secondary-blue);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-blue);
}

/* ========================================
   SERVICES
======================================== */
.services-preview,
.services {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
}

.service-icon {
    font-size: 50px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-blue);
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-blue);
}

.service-content ul {
    margin: 25px 0;
}

.service-content ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-content ul li i {
    color: var(--accent-orange);
}

/* Service Categories */
.services-categories {
    padding: 80px 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.category-card {
    text-align: center;
    padding: 40px 30px;
}

.category-icon {
    font-size: 50px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-blue);
}

/* Service Detail Page */
.service-detail-page {
    padding: 80px 0;
    background: var(--light-bg);
}

.service-detail-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-detail-content:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-page .service-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detail-page .service-content {
    flex: 1;
}

.service-detail-page .service-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-blue);
}

/* ========================================
   PORTFOLIO
======================================== */
.portfolio-preview,
.portfolio {
    padding: 80px 0;
    background: var(--light-bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.portfolio-item {
    overflow: hidden;
}

.portfolio-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.portfolio-img img {
    transition: var(--transition);
}

.portfolio-img:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 153, 222, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-blue);
}

.category-tag {
    display: inline-block;
    background: var(--secondary-blue);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 10px;
}

/* ========================================
   ABOUT PAGE
======================================== */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-blue);
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.values {
    margin-top: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmin(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
}

.value-icon {
    font-size: 40px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-blue);
}

/* ========================================
   CONTACT PAGE
======================================== */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--secondary-blue);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 24px;
    color: var(--accent-orange);
    min-width: 40px;
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--secondary-blue);
}

.contact-details p a {
    color: var(--gray);
    transition: var(--transition);
}

.contact-details p a:hover {
    color: var(--primary-blue);
}

.contact-form {
    flex: 1;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
}

.contact-form h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--secondary-blue);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(2, 174, 236, 0.2);
}

.map {
    padding: 80px 0;
    background: var(--light-bg);
}

.map h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--secondary-blue);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ========================================
   BLOG PAGE
======================================== */
.blog {
    padding: 80px 0;
    background: var(--light-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    overflow: hidden;
}

.blog-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-blue);
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 14px;
}

.blog-meta i {
    margin-right: 5px;
}

/* ========================================
   PAGE HEADER
======================================== */
.page-header {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* ========================================
   PROCESS SECTION
======================================== */
.process {
    padding: 80px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.step,
.process-step {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.step:hover,
.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    opacity: 0;
    transition: var(--transition);
}

.process-step:hover::before {
    opacity: 1;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step h3,
.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-blue);
}

/* ========================================
   CONTENT SECTIONS
======================================== */
.content-section {
    padding: 100px 0;
    background: #fff;
}

.content-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.content-section p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.content-section ul {
    margin-bottom: 40px;
}

.content-section ul li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.content-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-orange);
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

.faq-question {
    padding: 25px;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--primary-blue);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px;
}

/* ========================================
   TECHNOLOGY SLIDER
======================================== */
.tech-slider {
    margin: 60px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 40px 0;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tech-slider::before,
.tech-slider::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.tech-slider::before {
    left: 0;
    top: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.tech-slider::after {
    right: 0;
    top: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.tech-track {
    display: flex;
    animation: scroll 30s linear infinite;
    margin: 40px 0;
}

.tech-item {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
}

.tech-item i {
    font-size: 60px;
    transition: transform 0.3s ease;
}

.tech-item:hover i {
    transform: scale(1.2);
}

.tech-slider:hover .tech-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Technology Icon Colors */
.tech-item .fa-html5 {
    color: #E34F26 !important;
}

.tech-item .fa-css3-alt {
    color: #1572B6 !important;
}

.tech-item .fa-js {
    color: #F7DF1E !important;
    background: #000;
    padding: 5px;
    border-radius: 5px;
}

.tech-item .fa-react {
    color: #61DAFB !important;
}

.tech-item .fa-vuejs {
    color: #4FC08D !important;
}

.tech-item .fa-node-js {
    color: #339933 !important;
}

.tech-item .fa-python {
    color: #3776AB !important;
}

.tech-item .fa-php {
    color: #777BB4 !important;
}

.tech-item .fa-wordpress {
    color: #21759B !important;
}

.tech-item .fa-shopify {
    color: #96BF48 !important;
}

.tech-item .fa-google {
    color: #4285F4 !important;
}

/* ========================================
   CTA SECTIONS
======================================== */
.services-cta {
    padding: 100px 0;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 60px 30px;
    border-radius: 20px;
    margin: 60px 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(3, 153, 222, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse-cta 4s ease-in-out infinite;
}

@keyframes pulse-cta {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.cta-section .cta-content {
    position: relative;
    z-index: 1;
}

.cta-section .cta-content h3 {
    color: white;
    font-weight: 700;
}

.cta-section .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-blue);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: var(--accent-orange);
    color: white;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--white);
    color: var(--secondary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .code-window {
        transform: none;
        max-width: 100%;
    }

    .service-detail,
    .service-detail:nth-child(even),
    .service-detail-content,
    .service-detail-content:nth-child(even) {
        flex-direction: column;
    }

    .about-content,
    .contact-content {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        margin-right: 15px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav ul li a {
        display: block;
        cursor: pointer;
    }

    .header-cta {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features .container {
        flex-direction: column;
        gap: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .service-content h2,
    .about-text h2,
    .contact-form h2,
    .contact-info h2,
    .map h2,
    .cta-content h2,
    .service-detail-page .service-content h2 {
        font-size: 28px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .cta-content h3 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .blog-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}