* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

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

/* Top Header Bar - Açık Lacivert Tonlar */
.top-header {
    background: linear-gradient(135deg, #5c6bc0 0%, #7986cb 100%);
    color: white;
    padding: 12px 0;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(92, 107, 192, 0.2);
}

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

.header-left {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link-wrapper {
    position: relative;
    display: inline-block;
}

.header-left .social-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.header-left .social-link:hover {
    background: linear-gradient(135deg, #ab47bc 0%, #9c27b0 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(156, 39, 176, 0.3);
}

.social-admin-panel {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.social-admin-toggle {
    position: relative;
}

.social-edit-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.social-edit-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: white;
}

.social-edit-btn i {
    font-size: 11px;
}

.social-edit-btn span {
    font-weight: 500;
}

.social-admin-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    min-width: 350px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.social-admin-toggle:hover .social-admin-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.social-admin-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, #5c6bc0 0%, #ab47bc 100%);
    color: white;
    border-radius: 10px 10px 0 0;
}

.social-admin-header h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-admin-header h4 i {
    font-size: 14px;
}

.social-admin-hint {
    margin: 0;
    font-size: 11px;
    opacity: 0.9;
}

.social-admin-items {
    padding: 15px 20px;
}

.social-admin-item {
    margin-bottom: 15px;
}

.social-admin-item:last-child {
    margin-bottom: 0;
}

.social-admin-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.social-admin-item label {
    font-size: 13px;
    font-weight: 600;
    color: #3949ab;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.social-admin-item label i {
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.social-visibility-toggle {
    background: #f0f0f0;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
    padding: 0;
    outline: none;
}

.social-visibility-toggle:hover {
    background: #e0e0e0;
    border-color: #5c6bc0;
    color: #5c6bc0;
    transform: scale(1.1);
}

.social-visibility-toggle.active {
    background: #5c6bc0;
    border-color: #5c6bc0;
    color: white;
}

.social-visibility-toggle.active:hover {
    background: #4c5ba0;
    border-color: #4c5ba0;
}

.social-visibility-toggle i.fa-eye-slash {
    color: #999;
}

.social-visibility-toggle.active i.fa-eye {
    color: white;
}

.social-admin-input-wrapper {
    position: relative;
    width: 100%;
}

.social-url-input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 13px;
    font-family: inherit;
    transition: border-color 0.3s;
    box-sizing: border-box;
    color: #333;
    background-color: #fff;
}

.social-url-input:focus {
    outline: none;
    border-color: #5c6bc0;
}

.social-url-input:hover {
    border-color: #ab47bc;
}

.social-save-hint {
    position: absolute;
    top: -22px;
    right: 0;
    font-size: 10px;
    color: #5c6bc0;
    background: white;
    padding: 3px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-weight: 500;
    white-space: nowrap;
    z-index: 100;
}

/* Hide rich text editor for social media blocks */
.social-admin-item [data-target="blocks"].editText {
    display: none !important;
}

.social-admin-item .note-editor,
.social-admin-item .note-toolbar,
.social-admin-item .note-editing-area {
    display: none !important;
}

@media (max-width: 768px) {
    .social-edit-btn span {
        display: none;
    }
    .social-edit-btn {
        padding: 6px 10px;
    }
    .social-admin-dropdown {
        min-width: 280px;
        right: 0;
        left: auto;
    }
}

.header-right {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.header-right span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-right i {
    font-size: 12px;
    color: #e1bee7;
}

/* Main Navigation Bar */
.main-nav {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(92, 107, 192, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #5c6bc0 0%, #ab47bc 100%);
    border-image-slice: 1;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #5c6bc0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.logo a {
    text-decoration: none;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #5c6bc0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-img {
    height: 1.2em;
    width: auto;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #3949ab;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5c6bc0 0%, #ab47bc 100%);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #9c27b0;
}

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

.search-icon {
    color: #3949ab;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(92, 107, 192, 0.1);
}

.search-icon:hover {
    background: linear-gradient(135deg, #5c6bc0 0%, #ab47bc 100%);
    color: white;
    transform: scale(1.1);
}

.quote-btn {
    background: linear-gradient(135deg, #5c6bc0 0%, #ab47bc 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(92, 107, 192, 0.3);
}

.quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.4);
    color: white;
}

/* Hero Section */
.hero-section {
    margin-top: 0;
    padding-top: 0;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 0;
    height: 600px;
    position: relative;
}

.hero-panel {
    position: relative;
    overflow: hidden;
}

.hero-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05);
}

.hero-left,
.hero-right {
    display: block;
}

.hero-center {
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(57, 73, 171, 0.75) 0%, rgba(156, 39, 176, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0 40px;
    max-width: 650px;
    width: 100%;
    box-sizing: border-box;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    -webkit-text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    -webkit-text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-btn {
    background: linear-gradient(135deg, #ab47bc 0%, #9c27b0 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn:hover {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(156, 39, 176, 0.6);
    color: white;
}

/* Activities Section */
.activities-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    z-index: 1;
    scroll-margin-top: 120px;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    background: linear-gradient(135deg, #3949ab 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #5c6bc0 0%, #ab47bc 100%);
    border-radius: 2px;
}

.activities-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

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

.activity-item {
    background: white;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(92, 107, 192, 0.1);
    transition: transform 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(92, 107, 192, 0.15);
}

.activity-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: brightness(0.95);
}

.activity-item:hover .activity-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.activity-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(57, 73, 171, 0.3), transparent);
}

.activity-item h4 {
    font-size: 18px;
    color: #3949ab;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    padding: 25px;
    text-align: center;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

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

.service-item {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(92, 107, 192, 0.1);
    transition: transform 0.3s;
    border-top: 4px solid;
    border-image: linear-gradient(90deg, #5c6bc0 0%, #ab47bc 100%);
    border-image-slice: 1;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(92, 107, 192, 0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3949ab 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-item h3 {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, #3949ab 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.service-item ul {
    list-style: none;
    padding: 0;
}

.service-item ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.8;
}

.service-item ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #5c6bc0;
}

/* References Section */
.references-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(92, 107, 192, 0.02) 10px, rgba(92, 107, 192, 0.02) 20px);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    align-items: stretch;
    justify-items: center;
}

.reference-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 160px;
    min-height: 160px;
    max-height: 160px;
    box-sizing: border-box;
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(92, 107, 192, 0.15);
}

.reference-item img {
    max-width: 100%;
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: grayscale(30%);
    opacity: 0.9;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.reference-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .reference-item {
        width: 100%;
        height: 140px;
        min-height: 140px;
        max-height: 140px;
        padding: 20px;
    }
    
    .reference-item img {
        max-height: 100px;
    }
}

@media (max-width: 480px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reference-item {
        height: 120px;
        min-height: 120px;
        max-height: 120px;
    }
    
    .reference-item img {
        max-height: 80px;
    }
}

/* Page Header (for sub-pages) */
.page-header {
    background: linear-gradient(135deg, #5c6bc0 0%, #ab47bc 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(92, 107, 192, 0.2);
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Page Content */
.page-content {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(92, 107, 192, 0.1);
    line-height: 1.8;
    color: #555;
}

.content-wrapper h2 {
    color: #3949ab;
    margin: 30px 0 15px;
    font-size: 28px;
}

.content-wrapper h3 {
    color: #5c6bc0;
    margin: 25px 0 12px;
    font-size: 22px;
}

.content-wrapper p {
    margin-bottom: 20px;
    font-size: 16px;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.values-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
}

.values-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #5c6bc0;
}

.cta-box {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(92, 107, 192, 0.1);
    text-align: center;
}

.cta-box h3 {
    color: #3949ab;
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 20px;
}

/* Contact Page Styles */
.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(92, 107, 192, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(92, 107, 192, 0.15);
}

.contact-icon {
    font-size: 48px;
    color: #5c6bc0;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #3949ab;
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-card p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(92, 107, 192, 0.1);
}

.contact-form-wrapper h2 {
    color: #3949ab;
    margin-bottom: 15px;
    font-size: 28px;
}

.contact-form-wrapper p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-form {
    max-width: 600px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #3949ab;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5c6bc0;
}

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

/* Active Menu Link */
.nav-menu a.active {
    color: #9c27b0;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-section h3 {
    color: #e1bee7;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-logo-wrapper {
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-section p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e1bee7;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .hero-panel {
        height: 400px;
    }
    
    .hero-left,
    .hero-right {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-header {
        display: none !important;
    }
    
    .top-header .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .header-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .main-nav .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-section {
        padding-top: 0;
        margin-top: 0;
        overflow: visible;
    }
    
    .hero-container {
        grid-template-columns: 1fr !important;
        height: auto !important;
        min-height: 500px;
        padding: 50px 0;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero-left,
    .hero-right {
        display: none !important;
    }
    
    .hero-center {
        width: 100% !important;
        height: 100% !important;
        min-height: 500px;
        position: relative;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .hero-content {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        -webkit-transform: none !important;
        padding: 30px 20px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
        padding-top: 0;
    }
    
    .hero-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .hero-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        min-height: 450px !important;
        padding: 40px 0 !important;
    }
    
    .hero-center {
        min-height: 450px !important;
    }
    
    .hero-content {
        padding: 20px 15px !important;
    }
    
    .hero-content h1 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .hero-content p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .hero-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .service-item {
        padding: 25px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .content-wrapper,
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Toggle Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #3949ab;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Mobile Menu Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Updated Responsive Styles */
@media (max-width: 1024px) {
    .nav-left {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-right {
        display: none;
        width: 100%;
        background: white;
        padding: 20px;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(0,0,0,0.05);
        z-index: 1000;
    }

    .nav-right.active {
        display: block;
        animation: slideDown 0.3s ease forwards;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .nav-icons {
        margin-top: 20px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .logo-img {
        max-height: 50px;
        width: auto;
        max-width: 100%;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}