/* Paron Teknoloji - Common Styles */

:root {
    --primary-green: #22c55e;
    --primary-green-light: #4ade80;
    --primary-green-dark: #16a34a;
    --dark-gray: #1e293b;
    --light-gray: #f8fafc;
    --text-gray: #64748b;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

/* Independent Logo - Hidden since we have navbar logo */
.independent-logo {
    display: none;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--primary-green);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 1.5rem 0;
    z-index: 1000;
    border: 1px solid #e2e8f0;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background: var(--light-gray);
    color: var(--primary-green);
    padding-left: 2rem;
}

.portal-btn {
    background: #2563eb;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.portal-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hamburger Menu Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--primary-green);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
}

.mobile-menu-links {
    padding: 20px 0;
}

.mobile-menu-links a {
    display: block;
    padding: 15px 20px;
    color: var(--dark-gray);
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.3s ease;
}

.mobile-menu-links a:hover {
    background: #f8f9fa;
    color: var(--primary-green);
}

.mobile-dropdown {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-dropdown-toggle {
    display: block;
    padding: 15px 20px;
    color: var(--dark-gray);
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mobile-dropdown-toggle:hover {
    background: #f8f9fa;
    color: var(--primary-green);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 500px;
}

.mobile-dropdown-content a {
    padding: 12px 40px;
    font-size: 0.9rem;
    color: var(--text-gray);
    border-bottom: 1px solid #e9ecef;
}

.mobile-dropdown-content a:hover {
    background: white;
    color: var(--primary-green);
}
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--primary-green);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 1.5rem 0;
    z-index: 1000;
    border: 1px solid #e2e8f0;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background: var(--light-gray);
    color: var(--primary-green);
    padding-left: 2rem;
}

.portal-btn {
    background: #2563eb;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.portal-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hamburger Menu Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--primary-green);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
}

.mobile-menu-links {
    padding: 20px 0;
}

.mobile-menu-links a {
    display: block;
    padding: 15px 20px;
    color: var(--dark-gray);
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.3s ease;
}

.mobile-menu-links a:hover {
    background: #f8f9fa;
    color: var(--primary-green);
}

.mobile-dropdown {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-dropdown-toggle {
    display: block;
    padding: 15px 20px;
    color: var(--dark-gray);
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mobile-dropdown-toggle:hover {
    background: #f8f9fa;
    color: var(--primary-green);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 500px;
}

.mobile-dropdown-content a {
    padding: 12px 40px;
    font-size: 0.9rem;
    color: var(--text-gray);
    border-bottom: 1px solid #e9ecef;
}

.mobile-dropdown-content a:hover {
    background: white;
    color: var(--primary-green);
}

.nav-menu li a:hover {
    color: var(--primary-green);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 1.5rem 0;
    z-index: 1000;
    border: 1px solid #e2e8f0;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background: var(--light-gray);
    color: var(--primary-green);
    padding-left: 2rem;
}

.portal-btn {
    background: #2563eb;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.portal-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.breadcrumb {
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

/* First content section needs extra top padding to clear fixed navbar */
.content-section:first-of-type {
    padding-top: 140px;
}

.content-section.alternate {
    background: #f8fafc;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
}

/* Service Cards */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 3rem;
    color: #4ade80;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card ul li:before {
    content: "✓";
    color: #4ade80;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.btn {
    display: inline-block;
    background: #4ade80;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #22c55e;
}

.btn-secondary {
    background: #64748b;
}

.btn-secondary:hover {
    background: #475569;
}

.btn-success {
    background: #4ade80;
}

.btn-success:hover {
    background: #22c55e;
}

/* Feature Lists */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-item i {
    font-size: 1.5rem;
    color: #4ade80;
    margin-top: 0.25rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.feature-item p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-column img {
    width: 100%;
    border-radius: 12px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.step p {
    color: #64748b;
    line-height: 1.6;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}


/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4ade80;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: right;
    color: #94a3b8;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

/* Mobile First Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 992px) {
    .nav-container {
        gap: 1.5rem;
        padding: 0.8rem 0;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .independent-logo img {
        height: 90px;
        width: 90px;
    }
    
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }
    
    /* Header mobile adjustments */
    .header {
        padding: 0 15px;
    }
    
    .nav-container {
        justify-content: space-between;
        padding: 1rem 0;
        gap: 1rem;
        position: relative;
    }
    
    .independent-logo {
        position: relative;
        top: auto;
        left: auto;
        order: 1;
    }
    
    .independent-logo img {
        height: 70px;
        width: 70px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 0 2rem 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        border-left: 1px solid #e2e8f0;
        z-index: 1001;
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
        right: 0;
        gap: 1rem;
    }

    /* Mobile menu overlay */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .nav-menu li:last-child a {
        border-bottom: none;
    }

    .mobile-menu-btn {
        display: block;
        order: 2;
        font-size: 1.8rem;
        padding: 0.5rem;
        background: none;
        border: none;
        color: var(--dark-gray);
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 8px;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 10000;
        width: 50px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--white);
        box-shadow: var(--shadow);
    }
    
    .mobile-menu-btn:hover {
        background: var(--primary-green);
        color: var(--white);
        transform: scale(1.05);
    }
    
    .mobile-menu-btn i {
        transition: transform 0.3s ease;
    }
    
    .portal-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }

    /* Page header mobile */
    .page-header {
        padding: 120px 0 40px;
    }

    .page-header h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    /* Section titles mobile */
    .section-title {
        font-size: 1.9rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
        margin-bottom: 2rem;
    }

    /* Content sections mobile */
    .content-section {
        padding: 50px 0;
    }

    /* Grid layouts mobile */
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin: 0 5px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        padding: 1.5rem;
    }


}

@media (max-width: 768px) {
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-section h4 {
        text-align: left;
    }
    
    .footer-section ul {
        text-align: left;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 576px) {
    /* Extra small devices */
    .container {
        padding: 0 10px;
    }
    
    .independent-logo img {
        height: 60px;
        width: 60px;
    }
    
    .page-header h1 {
        font-size: 1.9rem;
        padding: 0 5px;
    }
    
    .page-header p {
        font-size: 1rem;
        padding: 0 5px;
    }
    
    .section-title {
        font-size: 1.7rem;
        padding: 0 5px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .service-card {
        padding: 1.2rem;
        margin: 0 2px;
        border-radius: 12px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
    
    .nav-menu {
        padding: 1rem;
    }
    
    .nav-menu li a {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .portal-btn {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .feature-item:hover,
    .step:hover,
    .btn:hover {
        transform: none;
        box-shadow: initial;
    }
    
    .service-card:active,
    .feature-item:active,
    .step:active,
    .btn:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .nav-menu li a:hover {
        background: var(--light-gray);
    }
    
    .portal-btn:hover {
        transform: none;
        box-shadow: initial;
    }
    
    .portal-btn:active {
        transform: scale(0.95);
    }
}

/* Improved scrolling for mobile */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    body {
        -webkit-text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Better touch targets */
    .btn,
    .portal-btn,
    .mobile-menu-btn,
    .faq-question {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Prevent zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px;
    }
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 70px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.scroll-top.show {
    display: flex;
}

/* About Page Specific Styles */
.about-page-hero {
    background: linear-gradient(135deg, #a7d4a7 0%, #8bc98b 100%);
    color: var(--dark-gray);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="800" r="400" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.about-page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.about-page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.about-page-content {
    padding: 80px 0;
    background: var(--white);
}

.about-page-content .container {
    max-width: 1000px;
}

.about-page-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    text-align: center;
}

.about-text {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.about-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.about-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.about-section:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.15);
}

.about-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-section h3 i {
    font-size: 1.2rem;
    color: var(--primary-green);
}

.about-section p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

.about-image {
    text-align: center;
    margin: 4rem 0;
    position: relative;
}

.about-image i {
    font-size: 8rem;
    color: var(--primary-green);
    opacity: 0.3;
}

/* Vision Mission Specific Styles */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.vision-card,
.mission-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vision-card::before,
.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-light));
}

.vision-card:hover,
.mission-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.2);
}

.vision-card i,
.mission-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    display: block;
}

.vision-card h3,
.mission-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.vision-card p,
.mission-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.vision-card p:first-of-type,
.mission-card p:first-of-type {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

/* Mobile Responsive for About Pages */
@media (max-width: 768px) {
    .about-page-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-page-hero p {
        font-size: 1.1rem;
    }
    
    .about-page-content h2 {
        font-size: 2.2rem;
    }
    
    .about-sections {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 3rem 0;
    }
    
    .about-section {
        padding: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .vision-card,
    .mission-card {
        padding: 2rem;
    }
    
    .vision-card h3,
    .mission-card h3 {
        font-size: 1.5rem;
    }
    
    .about-image i {
        font-size: 6rem;
    }
}k-gray);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.about-page-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 2px;
}

.about-page-content .about-text {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.about-page-content .about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.about-page-content .about-text p:last-child {
    margin-bottom: 0;
}

.about-page-content .about-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-page-content .about-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 5px solid var(--primary-green);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-page-content .about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.about-page-content .about-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-page-content .about-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-page-content .about-section h3 i {
    font-size: 1.3rem;
    color: var(--primary-green);
    background: rgba(74, 222, 128, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page-content .about-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 0;
}

.about-page-content .about-image {
    text-align: center;
    margin-top: 3rem;
}

.about-page-content .about-image i {
    font-size: 10rem;
    color: var(--primary-green);
    opacity: 0.1;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Values Page Specific Styles */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    background: rgba(74, 222, 128, 0.1);
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Mission Vision Page Specific Styles */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card, .vision-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.mission-card i, .vision-card i {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    background: rgba(74, 222, 128, 0.1);
    padding: 1.5rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.mission-card p, .vision-card p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* KEP Page Specific Styles */
.intro-text {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-green);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    line-height: 1.4;
}

.cta-section {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
}

.cta-section h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* FAQ Section Styles */
.faq-section {
    background: var(--light-gray);
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* FAQ Container Styles */
.faq-container .faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-container .faq-question {
    background: #f8fafc;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.faq-container .faq-question:hover {
    background: #e2e8f0;
}

.faq-container .faq-question i {
    transition: transform 0.3s ease;
}

.faq-container .faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-container .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-container .faq-item.open .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-container .faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Service Page Specific Mobile Styles */
@media (max-width: 768px) {
    /* Service highlight mobile adjustments */
    .service-highlight {
        padding: 2rem !important;
        margin: 0 10px 2rem !important;
        border-radius: 16px !important;
    }
    
    .service-highlight h3 {
        font-size: 1.4rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .service-highlight p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    /* Service grid mobile adjustments */
    .service-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 1.5rem !important;
        margin: 0 !important;
        border-radius: 16px !important;
    }
    
    .service-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .service-card p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
    
    /* CTA button mobile */
    .btn {
        width: 100% !important;
        max-width: 280px !important;
        margin: 2rem auto 0 !important;
        display: block !important;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
    
    /* FAQ mobile adjustments */
    .faq-container .faq-question {
        padding: 1.2rem !important;
        font-size: 0.95rem !important;
    }
    
    .faq-container .faq-answer {
        padding: 1.2rem !important;
    }
    
    .faq-container .faq-answer p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 576px) {
    /* Extra small service page adjustments */
    .service-highlight {
        padding: 1.5rem !important;
        margin: 0 5px 1.5rem !important;
        border-radius: 12px !important;
    }
    
    .service-highlight h3 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
    
    .service-highlight p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .service-grid {
        gap: 1rem !important;
        padding: 0 5px;
    }
    
    .service-card {
        padding: 1.2rem !important;
        border-radius: 12px !important;
    }
    
    .service-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .service-card p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    .btn {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
        max-width: 250px !important;
    }
    
    .faq-container .faq-question {
        padding: 1rem !important;
        font-size: 0.9rem !important;
    }
    
    .faq-container .faq-answer {
        padding: 1rem !important;
    }
    
    .faq-container .faq-answer p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
}

/* Responsive Design for About Pages */
@media (max-width: 768px) {
    .about-page-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-page-hero p {
        font-size: 1.1rem;
    }
    
    .about-page-content .about-text {
        padding: 2rem;
    }
    
    .about-page-content .about-sections {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-text {
        padding: 1.5rem;
    }
    
    .intro-text p {
        font-size: 1.1rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}

/* Override inline styles for mobile responsive design */
@media (max-width: 768px) {
    /* Override service-highlight inline styles */
    [style*="padding: 4rem"] {
        padding: 2rem !important;
        margin: 0 10px 2rem !important;
    }
    
    [style*="font-size: 2rem"] {
        font-size: 1.4rem !important;
        line-height: 1.4 !important;
    }
    
    [style*="font-size: 1.2rem"] {
        font-size: 1rem !important;
    }
    
    /* Override service-grid inline styles */
    [style*="grid-template-columns: repeat(auto-fit, minmax(350px, 1fr))"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
    }
    
    [style*="padding: 2.5rem"] {
        padding: 1.5rem !important;
    }
    
    /* Override button inline styles */
    [style*="font-size: 1.2rem"][style*="padding: 1.2rem 3rem"] {
        width: 100% !important;
        max-width: 280px !important;
        margin: 2rem auto 0 !important;
        display: block !important;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 576px) {
    /* Extra small overrides */
    [style*="padding: 4rem"] {
        padding: 1.5rem !important;
        margin: 0 5px 1.5rem !important;
    }
    
    [style*="font-size: 2rem"] {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
    }
    
    [style*="font-size: 1.2rem"] {
        font-size: 0.9rem !important;
    }
    
    [style*="grid-template-columns: repeat(auto-fit, minmax(350px, 1fr))"] {
        gap: 1rem !important;
    }
    
    [style*="padding: 2.5rem"] {
        padding: 1.2rem !important;
    }
    
    [style*="font-size: 1.2rem"][style*="padding: 1.2rem 3rem"] {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
        max-width: 250px !important;
    }
}

/* Homepage specific mobile responsive styles */
@media (max-width: 768px) {
    /* Hero section mobile */
    .hero {
        padding: 100px 0 60px !important;
        min-height: auto !important;
    }
    
    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-content p {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
        padding: 0 10px !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        max-width: 280px !important;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
    
    /* Stats section mobile */
    .stats {
        padding: 40px 0 !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
        padding: 0 10px !important;
    }
    
    .stat-item {
        padding: 1.5rem !important;
        text-align: center !important;
    }
    
    .stat-number {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .stat-label {
        font-size: 0.9rem !important;
    }
    
    /* Services section mobile */
    .services {
        padding: 60px 0 !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 10px !important;
    }
    
    .service-card {
        padding: 1.5rem !important;
        text-align: center !important;
    }
    
    .service-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
    }
    
    .service-card p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
    
    /* Why choose mobile */
    .why-choose {
        padding: 60px 0 !important;
    }
    
    .why-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 10px !important;
    }
    
    .why-item {
        padding: 1.5rem !important;
        text-align: center !important;
    }
    
    .why-item h4 {
        font-size: 1.2rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .why-item p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 576px) {
    /* Extra small homepage adjustments */
    .hero {
        padding: 80px 0 50px !important;
    }
    
    .hero-content h1 {
        font-size: 1.9rem !important;
        padding: 0 5px !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
        padding: 0 5px !important;
    }
    
    .hero-buttons .btn {
        max-width: 250px !important;
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .stat-item {
        padding: 1.2rem !important;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
    }
    
    .stat-label {
        font-size: 0.85rem !important;
    }
    
    .services-grid,
    .why-grid {
        gap: 1rem !important;
        padding: 0 5px !important;
    }
    
    .service-card,
    .why-item {
        padding: 1.2rem !important;
        border-radius: 12px !important;
    }
    
    .service-card h3,
    .why-item h4 {
        font-size: 1.1rem !important;
    }
    
    .service-card p,
    .why-item p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content,
    .transformation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .transformation-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .digital-image {
        max-width: 80%;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-left {
        text-align: center;
        max-width: 100%;
    }

    .hero-right {
        order: -1;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero h2 {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero-features {
        align-items: center;
        gap: 0.6rem;
    }

    .hero-feature {
        padding: 0.6rem 0;
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-logo-img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .digital-image {
        max-width: 100%;
    }

    .transformation-text h3 {
        font-size: 1.8rem;
    }

    .nav-container {
        justify-content: space-between;
    }

    /* Mobilde desktop menüyü gizle ve hamburger menüyü göster */
    .nav-menu {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .nav-logo img {
        height: 70px;
    }

    .hero {
        min-height: 70vh;
        padding: 200px 0 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        min-height: 300px;
    }

    .hero-left {
        text-align: center;
        order: 1;
    }

    .hero-right {
        order: 2;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-features {
        align-items: center;
        gap: 0.5rem;
        margin: 1rem 0;
    }

    .hero-feature {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    .hero-feature i {
        width: 16px;
        height: 16px;
        font-size: 0.8rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 0.8rem;
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    .hero-logo-img {
        width: 70px;
        height: 70px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: right;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .nav-logo img {
        height: 65px;
    }

    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}
/* Respo
nsive Design */
@media (max-width: 992px) {
    .hero-content,
    .transformation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .transformation-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .digital-image {
        max-width: 80%;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-left {
        text-align: center;
        max-width: 100%;
    }

    .hero-right {
        order: -1;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero h2 {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero-features {
        align-items: center;
        gap: 0.6rem;
    }

    .hero-feature {
        padding: 0.6rem 0;
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-logo-img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .digital-image {
        max-width: 100%;
    }

    .transformation-text h3 {
        font-size: 1.8rem;
    }

    .nav-container {
        justify-content: space-between;
    }

    /* Mobilde desktop menüyü gizle ve hamburger menüyü göster */
    .nav-menu {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .nav-logo img {
        height: 70px;
    }

    .hero {
        min-height: 70vh;
        padding: 200px 0 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        min-height: 300px;
    }

    .hero-left {
        text-align: center;
        order: 1;
    }

    .hero-right {
        order: 2;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-features {
        align-items: center;
        gap: 0.5rem;
        margin: 1rem 0;
    }

    .hero-feature {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    .hero-feature i {
        width: 16px;
        height: 16px;
        font-size: 0.8rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 0.8rem;
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    .hero-logo-img {
        width: 70px;
        height: 70px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: right;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 160px 0 60px;
        min-height: 60vh;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-feature {
        font-size: 0.8rem;
    }

    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .nav-logo img {
        height: 90px;
    }

    .container {
        padding: 0 15px;
    }
}
/* Footer Mobile Alignment - Tüm cihazlarda sağa yaslama */
@media (max-width: 768px) {
    .footer-section {
        text-align: right !important;
    }
    
    .footer-section h4 {
        text-align: right !important;
    }
    
    .footer-section ul {
        text-align: right !important;
    }
    
    .footer-section ul li {
        text-align: right !important;
    }
    
    .footer-section ul li a {
        text-align: right !important;
        display: block;
    }
}