/* İzmir Çatı Pergola - Custom Styles */
/* Modern Endüstriyel Renk Paleti */
:root {
    --primary-color: #1a1a1a;      /* Koyu Siyah */
    --secondary-color: #2d2d2d;    /* Koyu Gri */
    --accent-color: #404040;       /* Orta Gri */
    --highlight-color: #ff6b35;    /* Turuncu Vurgu */
    --highlight-alt: #f7c531;      /* Altın Sarısı */
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #404040 100%);
    --gradient-accent: linear-gradient(90deg, #ff6b35, #f7c531);
}

/* ============================================
   İZMİR ÇATI PERGOLA CUSTOM CLASSES
   ============================================ */

/* Container */
.ali-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.ali-hero-section {
    background: var(--gradient-dark);
    padding: 120px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.ali-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ali-hero-content {
    text-align: left;
}

.ali-subtitle {
    color: var(--highlight-alt);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.ali-hero-title {
    color: var(--text-light);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.ali-highlight {
    color: var(--highlight-alt);
}

.ali-hero-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.ali-button-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.ali-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ali-btn-outline {
    background: transparent;
    border: 2px solid var(--highlight-alt);
    color: var(--highlight-alt);
}

.ali-btn-outline:hover {
    background: var(--highlight-alt);
    color: var(--primary-color);
}

.ali-btn-solid {
    background: var(--highlight-alt);
    border: 2px solid var(--highlight-alt);
    color: var(--primary-color);
}

.ali-btn-solid:hover {
    background: transparent;
    color: var(--highlight-alt);
}

.ali-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ali-hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .ali-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .ali-hero-content {
        text-align: center;
        order: 2;
    }
    
    .ali-hero-image {
        order: 1;
    }
    
    .ali-button-row {
        justify-content: center;
    }
    
    .ali-hero-title {
        font-size: 2.5rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .ali-hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .ali-hero-grid {
        gap: 30px;
    }
    
    .ali-hero-title {
        font-size: 2rem;
    }
    
    .ali-hero-text {
        font-size: 1rem;
    }
    
    .ali-button-row {
        flex-direction: column;
        width: 100%;
    }
    
    .ali-btn {
        width: 100%;
        text-align: center;
    }
    
    .ali-hero-image img {
        max-width: 100%;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .ali-hero-section {
        padding: 90px 0 50px;
    }
    
    .ali-hero-title {
        font-size: 1.75rem;
    }
    
    .ali-subtitle {
        font-size: 0.85rem;
    }
    
    .ali-hero-text {
        font-size: 0.95rem;
    }
    
    .ali-container {
        padding: 0 15px;
    }
}

/* ============================================
   SERVICES SECTION - YENİ CLASS'LAR
   ============================================ */

.ali-services-section {
    background: var(--secondary-color);
    padding: 80px 0;
}

.ali-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.ali-section-title {
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0 20px;
}

.ali-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ali-service-card {
    background: var(--primary-color);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 35px 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.ali-service-card:hover {
    border-color: var(--highlight-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.ali-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--highlight-color), var(--highlight-alt));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.ali-service-icon svg {
    stroke: var(--primary-color);
}

.ali-service-title {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.ali-service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ali-service-link {
    color: var(--highlight-alt);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.ali-service-card:hover .ali-service-link {
    color: var(--highlight-color);
}

/* Services Responsive */
@media (max-width: 991px) {
    .ali-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .ali-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .ali-services-section {
        padding: 60px 0;
    }
    
    .ali-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ali-service-card {
        padding: 25px 20px;
    }
    
    .ali-service-icon {
        width: 60px;
        height: 60px;
    }
    
    .ali-section-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   ABOUT SECTION - YENİ CLASS'LAR
   ============================================ */

.ali-about-section {
    background: var(--secondary-color);
    padding: 80px 0;
}

.ali-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ali-about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.ali-about-content {
    text-align: left;
}

.ali-section-title {
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ali-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ============================================
   CTA SECTION - YENİ CLASS'LAR
   ============================================ */

.ali-cta-section {
    background: var(--accent-color);
    padding: 80px 0;
}

.ali-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ali-cta-content {
    text-align: left;
}

.ali-cta-title {
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ali-cta-phone {
    text-align: center;
    padding: 40px;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.ali-cta-phone:hover {
    transform: scale(1.05);
}

.ali-phone-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.ali-phone-number {
    font-size: 2rem;
    color: var(--highlight-alt);
    font-weight: 700;
}

.ali-phone-text {
    color: var(--text-muted);
    margin-top: 10px;
}

/* About & CTA Responsive */
@media (max-width: 991px) {
    .ali-about-grid,
    .ali-cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .ali-about-content,
    .ali-cta-content {
        text-align: center;
    }
    
    .ali-about-image {
        order: -1;
    }
    
    .ali-section-title,
    .ali-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .ali-about-section,
    .ali-cta-section {
        padding: 60px 0;
    }
    
    .ali-about-grid,
    .ali-cta-grid {
        gap: 30px;
    }
    
    .ali-section-title,
    .ali-cta-title {
        font-size: 1.75rem;
    }
    
    .ali-phone-number {
        font-size: 1.5rem;
    }
}

/* ============================================
   ESKİ OVERRIDE'LARI KALDIR - TEMİZ CSS
   ============================================ */

/* ============================================
   PAGE HEADER - YENİ CLASS'LAR
   ============================================ */

.ali-page-header {
    background: var(--gradient-dark);
    padding: 120px 0 60px;
    text-align: center;
}

.ali-page-title {
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ali-breadcrumb {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.ali-breadcrumb a {
    color: var(--highlight-alt);
    text-decoration: none;
}

.ali-breadcrumb a:hover {
    text-decoration: underline;
}

/* ============================================
   CONTENT SECTION - YENİ CLASS'LAR
   ============================================ */

.ali-content-section {
    background: var(--secondary-color);
    padding: 60px 0;
}

.ali-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.ali-content-text {
    text-align: left;
}

.ali-content-sidebar {
    position: sticky;
    top: 100px;
}

.ali-content-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
}

.ali-subtitle {
    color: var(--highlight-alt);
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.ali-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ali-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 173, 181, 0.2);
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.ali-list li::before {
    content: "✓";
    color: var(--highlight-alt);
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.1rem;
}

.ali-btn-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT BOX - YENİ CLASS'LAR
   ============================================ */

.ali-contact-box {
    background: rgba(15, 52, 96, 0.5);
    border: 1px solid rgba(0, 173, 181, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
}

.ali-contact-box h3 {
    color: var(--highlight-alt);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.ali-contact-box p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.ali-contact-box a {
    color: var(--highlight-alt);
    text-decoration: none;
}

.ali-contact-box a:hover {
    text-decoration: underline;
}

/* ============================================
   CONTACT PAGE - YENİ CLASS'LAR
   ============================================ */

.ali-contact-info {
    margin: 30px 0;
}

.ali-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 173, 181, 0.2);
}

.ali-contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.ali-contact-detail h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 5px;
}

.ali-contact-detail p,
.ali-contact-detail a {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.ali-contact-detail a {
    color: var(--highlight-alt);
    text-decoration: none;
}

.ali-map-container {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

/* ============================================
   CONTENT RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .ali-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ali-content-sidebar {
        position: relative;
        top: 0;
    }
    
    .ali-page-header {
        padding: 100px 0 50px;
    }
    
    .ali-page-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .ali-content-section {
        padding: 40px 0;
    }
    
    .ali-content-grid {
        gap: 30px;
    }
    
    .ali-page-header {
        padding: 90px 0 40px;
    }
    
    .ali-page-title {
        font-size: 1.75rem;
    }
    
    .ali-section-title {
        font-size: 1.5rem;
    }
    
    .ali-btn-group {
        flex-direction: column;
    }
    
    .ali-btn-group .ali-btn {
        width: 100%;
        text-align: center;
    }
    
    .ali-contact-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ============================================
   ORIJINAL STILLER
   ============================================ */

/* Body Background */
body.body {
    background: var(--gradient-dark) !important;
}

/* Logo Text Styles */
.logo-text, .footer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 2px;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--highlight-alt);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navbar Styles */
.navbar {
    background: rgba(26, 26, 46, 0.95) !important;
    backdrop-filter: blur(10px);
}

.nav-cover {
    background: var(--primary-color) !important;
}

/* Navigation Links */
.nav-link, .text-block-2 {
    color: var(--text-light) !important;
}

.nav-link:hover {
    color: var(--highlight-alt) !important;
}

/* Dropdown Styles */
.uui-navbar07_dropdown-list {
    background: var(--secondary-color) !important;
    border: 1px solid rgba(0, 173, 181, 0.2);
    border-radius: 12px;
    padding: 10px !important;
    min-width: 320px;
}

.uui-navbar07_dropdown-link {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 15px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.uui-navbar07_dropdown-link:hover {
    background: rgba(0, 173, 181, 0.15) !important;
    transform: translateX(5px);
}

.uui-navbar07_icon-wrapper {
    width: 48px !important;
    height: 48px !important;
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-alt)) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.uui-navbar07_icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: white;
}

.uui-navbar07_item-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.uui-navbar07_item-heading {
    color: var(--text-light) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
}

.uui-text-size-small-2 {
    color: var(--text-muted) !important;
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
}

/* Hero Section */
.uui-section_heroheader03 {
    background: var(--gradient-dark) !important;
}

/* Hero Grid - Desktop */
.w-layout-grid.uui-heroheader03_component {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
    align-items: center !important;
}

.uui-heroheader03_content {
    text-align: left !important;
}

.heroheader03_image-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.hero-image {
    width: 100% !important;
    max-width: 500px !important;
    height: auto !important;
}

.subtitle {
    color: var(--highlight-alt) !important;
    font-weight: 600;
}

.span-h1 {
    color: var(--highlight-alt) !important;
}

.uui-heading-xlarge {
    color: var(--text-light) !important;
}

.uui-text-size-xlarge {
    color: var(--text-muted) !important;
}

/* Buttons */
.button.secondary {
    background: transparent !important;
    border: 2px solid var(--highlight-alt) !important;
    color: var(--highlight-alt) !important;
    transition: all 0.3s ease;
}

.button.secondary:hover {
    background: var(--highlight-alt) !important;
    color: var(--primary-color) !important;
}

.button-text.secondary {
    color: var(--highlight-alt) !important;
}

.button.secondary:hover .button-text.secondary {
    color: var(--primary-color) !important;
}

.button {
    background: var(--highlight-alt) !important;
    border: none !important;
}

.button:hover {
    background: var(--highlight-color) !important;
}

.button-text {
    color: var(--text-light) !important;
}

/* Looping Section */
.looping-section {
    background: var(--highlight-alt) !important;
}

.banner-strip {
    background: var(--highlight-alt) !important;
}

.looping-text-wrapper div {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.looping-separator {
    background: var(--primary-color) !important;
}

/* Services Section */
.section {
    background: var(--secondary-color) !important;
}

.heading {
    color: var(--text-light) !important;
}

.service-title {
    color: var(--text-light) !important;
}

.body-display {
    color: var(--text-muted) !important;
}

/* Service Cards */
.service-column {
    background: rgba(15, 52, 96, 0.5) !important;
    border: 1px solid rgba(0, 173, 181, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-column:hover {
    border-color: var(--highlight-alt);
    transform: translateY(-5px);
}

.service-icon-wrapper {
    background: var(--accent-color) !important;
}

.link-outline {
    border-color: var(--highlight-alt) !important;
}

/* Footer Styles */
.footer-block, .footer-section {
    background: var(--primary-color) !important;
}

.footer-list-title {
    color: var(--highlight-alt);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.uui-footer03_link div {
    color: var(--text-muted) !important;
    transition: color 0.3s ease;
}

.uui-footer03_link:hover div {
    color: var(--highlight-alt) !important;
}

.uui-text-size-medium {
    color: var(--text-muted) !important;
}

.footer-phone {
    color: var(--highlight-alt) !important;
    text-decoration: none;
    font-weight: 600;
}

.footer-phone:hover {
    color: var(--text-light) !important;
}

.credit-text {
    color: var(--text-muted) !important;
}

.credit-link:hover .credit-text {
    color: var(--highlight-alt) !important;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Hero Image Section */
.heroheader03_image-wrapper {
    position: relative;
}

.ring {
    border-color: var(--highlight-alt) !important;
}

/* About Section */
.uui-section_buttom {
    background: var(--accent-color) !important;
}

/* Form Styles (if any) */
input, select, textarea {
    background: var(--secondary-color) !important;
    border: 1px solid rgba(0, 173, 181, 0.3) !important;
    color: var(--text-light) !important;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--highlight-alt) !important;
    outline: none;
}

input::placeholder, textarea::placeholder {
    color: var(--text-muted) !important;
}

/* Remove old popup styles */
#modal, .overlay, .box-content {
    display: none !important;
}

/* Page Header for inner pages */
.page-header {
    background: var(--gradient-dark);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header .breadcrumb {
    color: var(--text-muted);
}

.page-header .breadcrumb a {
    color: var(--highlight-alt);
    text-decoration: none;
}

/* Service Detail Page */
.service-detail {
    padding: 60px 0;
}

.service-detail h2 {
    color: var(--highlight-alt);
    margin-bottom: 20px;
}

.service-detail p {
    color: var(--text-muted);
    line-height: 1.8;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 173, 181, 0.2);
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.service-list li::before {
    content: "✓";
    color: var(--highlight-alt);
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Contact Page */
.contact-info-box {
    background: rgba(15, 52, 96, 0.5);
    border: 1px solid rgba(0, 173, 181, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
}

.contact-info-box h3 {
    color: var(--highlight-alt);
    margin-bottom: 15px;
}

.contact-info-box p {
    color: var(--text-muted);
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 173, 181, 0.2);
}

/* ============================================
   RESPONSIVE STYLES - MOBILE FIRST
   ============================================ */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .uui-heroheader03_component {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .heroheader03_image-wrapper {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .uui-heroheader03_content {
        text-align: center;
    }
    
    .uui-button-row {
        justify-content: center !important;
    }
    
    .service-grid.three-column {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Service Detail Page - 2 column to 1 column */
    .service-detail > .grid-wrapper > .uui-container-large > div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

/* Tablets */
@media (max-width: 991px) {
    /* Navigation Mobile Menu */
    .nav-menu {
        background: var(--primary-color) !important;
        padding: 20px !important;
    }
    
    .nav-menu-links {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
    }
    
    .nav-link, .uui-navbar07_menu-dropdown {
        width: 100% !important;
        padding: 15px 0 !important;
        border-bottom: 1px solid rgba(0, 173, 181, 0.2) !important;
    }
    
    /* Dropdown Menu Mobile */
    .uui-navbar07_dropdown-list {
        position: relative !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        padding-left: 20px !important;
    }
    
    .uui-navbar07_dropdown-link {
        padding: 12px 0 !important;
    }
    
    /* Hero Section Mobile */
    .uui-heading-xlarge {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    
    .uui-text-size-xlarge {
        font-size: 1rem !important;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }
    
    .uui-footer03_left-wrapper {
        align-items: center !important;
    }
    
    .footer-logo-text {
        align-items: center !important;
    }
    
    .uui-footer03_link-list {
        text-align: center !important;
    }
    
    .uui-footer03_social-list {
        justify-content: center !important;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    /* Logo */
    .logo-name {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.55rem;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    /* Hero Section */
    .uui-heroheader03_component {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }
    
    .heroheader03_image-wrapper {
        order: -1 !important;
        max-width: 100% !important;
    }
    
    .hero-image {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .uui-heading-xlarge {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
    }
    
    .uui-text-size-xlarge {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    .subtitle {
        font-size: 0.85rem !important;
    }
    
    /* Buttons */
    .uui-button-row {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
    }
    
    .holder {
        width: 100% !important;
    }
    
    .button {
        width: 100% !important;
        justify-content: center !important;
        padding: 15px 20px !important;
    }
    
    /* Services Section */
    .service-grid, .service-grid.three-column {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .service-column {
        margin: 0 !important;
    }
    
    /* Service Detail Page */
    .service-detail > .grid-wrapper > .uui-container-large > div {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .service-detail h2 {
        font-size: 1.5rem !important;
    }
    
    .service-detail p {
        font-size: 0.95rem !important;
    }
    
    .service-list li {
        font-size: 0.95rem !important;
        padding: 12px 0 !important;
    }
    
    /* Contact Info Box - Address Full Width */
    .contact-info-box {
        padding: 20px !important;
    }
    
    .contact-info-box p {
        font-size: 0.9rem !important;
        word-break: break-word !important;
        white-space: normal !important;
    }
    
    /* Page Header */
    .page-header {
        padding: 100px 20px 40px !important;
    }
    
    .page-header h1 {
        font-size: 1.75rem !important;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .uui-text-size-medium {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    
    .footer-bottom {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
    }
    
    .legel-credit-grid {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    /* Container Padding */
    .uui-container-large, .grid-wrapper {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .uui-page-padding {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Looping Section */
    .looping-text-wrapper div {
        font-size: 0.85rem !important;
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    .logo-name {
        font-size: 1rem;
    }
    
    .logo-subtitle {
        font-size: 0.5rem;
    }
    
    .uui-heading-xlarge {
        font-size: 1.5rem !important;
    }
    
    .subtitle {
        font-size: 0.75rem !important;
    }
    
    .button-text {
        font-size: 0.85rem !important;
    }
    
    .page-header h1 {
        font-size: 1.5rem !important;
    }
    
    .service-detail h2 {
        font-size: 1.3rem !important;
    }
    
    /* Contact box address full width */
    .contact-info-box {
        padding: 15px !important;
    }
    
    .contact-info-box p {
        font-size: 0.85rem !important;
    }
}

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-column, .contact-info-box {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--highlight-alt);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--highlight-color);
}

/* Policy Pages */
.ali-policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.ali-subtitle-small {
    color: var(--highlight-alt);
    font-size: 1.1rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* ============================================
   LOOPING BANNER ANIMATION
   ============================================ */
.looping-section {
    overflow: hidden;
    position: relative;
}

.banner-strip {
    overflow: hidden;
    position: relative;
}

.looping-text-wrapper {
    display: flex;
    gap: 36px;
    animation: scrollLoop 20s linear infinite;
    white-space: nowrap;
}

@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   ALI MOBILE MENU - YENİ SİSTEM
   ============================================ */

/* Hamburger Butonu */
.ali-mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    position: relative;
}

.ali-hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Hamburger X Animasyonu */
.ali-mobile-menu-btn.ali-menu-active .ali-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ali-mobile-menu-btn.ali-menu-active .ali-hamburger-line:nth-child(2) {
    opacity: 0;
}

.ali-mobile-menu-btn.ali-menu-active .ali-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobil Menü - Varsayılan gizli */
.ali-mobile-nav {
    display: none;
}

@media (max-width: 991px) {
    /* Hamburger Göster */
    .ali-mobile-menu-btn {
        display: flex !important;
    }
    
    /* Eski elementleri gizle */
    .w-nav-button,
    .menu-button,
    .nav-menu-links {
        display: none !important;
    }
    
    /* Mobile Nav Container */
    .ali-mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--primary-color);
        z-index: 1001;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -5px 0 25px rgba(0,0,0,0.5);
    }
    
    .ali-mobile-nav.ali-nav-open {
        right: 0;
    }
    
    /* Nav Links Container */
    .ali-nav-links {
        display: flex;
        flex-direction: column;
        padding: 80px 0 30px;
    }
    
    /* Normal Nav Link */
    .ali-nav-link {
        display: block;
        padding: 16px 25px;
        color: #ffffff;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 16px;
        font-weight: 500;
    }
    
    .ali-nav-link:hover {
        background: rgba(255,255,255,0.05);
        color: var(--highlight-alt);
    }
    
    /* Dropdown Container */
    .ali-dropdown {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    /* Dropdown Toggle Button */
    .ali-dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 16px 25px;
        background: transparent;
        border: none;
        color: #ffffff;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        text-align: left;
    }
    
    .ali-dropdown-toggle:hover {
        background: rgba(255,255,255,0.05);
    }
    
    .ali-dropdown-toggle svg {
        transition: transform 0.3s ease;
    }
    
    .ali-dropdown-toggle.ali-toggle-active svg {
        transform: rotate(180deg);
    }
    
    /* Dropdown Menu */
    .ali-dropdown-menu {
        display: none;
        background: rgba(255,255,255,0.05);
        padding: 10px 0;
    }
    
    .ali-dropdown-menu.ali-dropdown-open {
        display: block;
    }
    
    /* Dropdown Items */
    .ali-dropdown-item {
        display: block;
        padding: 14px 40px;
        color: #ffffff;
        text-decoration: none;
        font-size: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .ali-dropdown-item:last-child {
        border-bottom: none;
    }
    
    .ali-dropdown-item:hover {
        background: rgba(255,255,255,0.05);
        color: var(--highlight-alt);
    }
}

/* ============================================
   YENİ BASİT HEADER SİSTEMİ
   ============================================ */

.ali-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    z-index: 9999;
    padding: 15px 20px;
}

.ali-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ali-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.ali-logo-name {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.ali-logo-subtitle {
    color: var(--highlight-alt);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
}

.ali-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ali-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ali-social-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Hamburger Button */
.ali-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.ali-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s;
}

.ali-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.ali-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.ali-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav */
.ali-nav {
    display: none;
    flex-direction: column;
    background: #1a1a1a;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px;
    border-top: 1px solid #333;
}

.ali-nav.open {
    display: flex;
}

.ali-nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 15px 10px;
    font-size: 16px;
    border-bottom: 1px solid #333;
    transition: color 0.3s;
}

.ali-nav a:last-child {
    border-bottom: none;
}

.ali-nav a:hover {
    color: var(--highlight-alt);
}

/* Nav Label (Hizmetlerimiz) */
.ali-nav-label {
    color: var(--highlight-alt);
    font-size: 14px;
    font-weight: 600;
    padding: 15px 10px 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Nav Sub Items (indented services) */
.ali-nav-sub {
    padding-left: 25px !important;
    font-size: 15px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

/* Desktop - hide hamburger, show inline nav */
@media (min-width: 992px) {
    .ali-menu-btn {
        display: none;
    }
    
    .ali-nav {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        border: none;
        padding: 0;
        gap: 5px;
    }
    
    .ali-nav a {
        padding: 10px 15px;
        border: none;
        font-size: 14px;
    }
    
    .ali-header-inner {
        flex-wrap: wrap;
    }
}
