/* ==========================================================================
   Gülen Yüz Temizlik - Global & Common Stylesheet (style.css)
   Contains shared theme variables, reset, header, footer, and common widgets.
   ========================================================================== */

/* 1. THEME VARIABLES & ROOT SETTINGS */
:root {
    --brand-blue: #0b3154;        /* Deep professional blue (#0b3154) */
    --brand-green: #239b41;       /* Vibrant brand green (#239b41) */
    --accent-yellow: #fbc02d;     /* Smiley face yellow (#fbc02d) */
    --text-dark: #333333;         /* Primary text color */
    --text-muted: #666666;        /* Subtext and captions color */
    --bg-white: #ffffff;
    --font-main: 'Poppins', sans-serif;
}

/* 2. BASE RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: #ffffff;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* 3. SITE HEADER */
.site-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    width: 100%;
    z-index: 1000;
}

.header-container {
    max-width: 100%;
    width: auto;
    margin: 0 4%;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-icon svg {
    width: 54px;
    height: 54px;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 25px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.brand-blue {
    color: var(--brand-blue);
}

.brand-green {
    color: var(--brand-green);
}

.brand-subtext {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 3px;
    letter-spacing: 0.1px;
}

/* Navigation Menu */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    padding: 6px 0;
    position: relative;
    transition: color 0.2s ease;
}

.main-navigation a:hover {
    color: var(--brand-blue);
}

.main-navigation a.active {
    color: var(--brand-blue);
}

.main-navigation a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--brand-blue);
    border-radius: 2px;
}

/* Header Contact Buttons */
.header-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.contact-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: 6px;
    padding: 4px 14px;
    width: 180px;
    height: 38px;
    transition: all 0.2s ease;
}

.contact-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.btn-icon {
    font-size: 16px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}

.btn-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.phone-number {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
}

.action-text {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-phone {
    background-color: var(--brand-green);
    color: var(--bg-white);
}

.btn-phone:hover {
    background-color: #1c7c34;
}

.btn-whatsapp {
    background-color: var(--bg-white);
    border: 1px solid var(--brand-green);
    color: var(--brand-green);
}

.btn-whatsapp:hover {
    background-color: rgba(35, 155, 65, 0.04);
}

.btn-whatsapp .btn-icon {
    color: var(--brand-green);
    font-size: 18px;
}

/* Header Right Group */
.header-right-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hamburger Toggle Button (Hidden on Desktop) */
.mobile-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background-color: #f0f6fc;
    border: 1px solid #d4e2f0;
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
    transition: all 0.25s ease;
    z-index: 1010;
}

.mobile-nav-toggle:hover {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.mobile-nav-toggle .hamburger-line {
    width: 22px;
    height: 2.5px;
    background-color: var(--brand-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-nav-toggle:hover .hamburger-line {
    background-color: #ffffff;
}

/* Hamburger animated open state */
.mobile-nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    background-color: #ffffff;
}

.mobile-nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    background-color: #ffffff;
}

.mobile-nav-toggle.active {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
}

/* Mobile Menu Backdrop */
.mobile-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(11, 49, 84, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -360px;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 99999;
    box-shadow: -8px 0 30px rgba(11, 49, 84, 0.18);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
}

.mobile-nav-drawer.open {
    right: 0;
}

/* Drawer Header */
.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid #f0f4f8;
}

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

.drawer-logo-icon svg {
    width: 38px;
    height: 38px;
    display: block;
}

.drawer-brand-name {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.1;
}

.mobile-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: #f1f5f9;
    border: none;
    color: var(--brand-blue);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
    background-color: #e2e8f0;
    color: #000000;
}

/* Drawer Nav Links */
.mobile-drawer-nav {
    padding: 18px 16px;
    flex-grow: 1;
}

.mobile-drawer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-blue);
    transition: all 0.2s ease;
}

.drawer-link i {
    font-size: 16px;
    width: 22px;
    color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.drawer-link:hover {
    background-color: #f0f6fc;
    color: var(--brand-green);
    transform: translateX(4px);
}

.drawer-link.active {
    background-color: rgba(35, 155, 65, 0.08);
    color: var(--brand-green);
    font-weight: 700;
}

.drawer-link.active i {
    color: var(--brand-green);
}

/* Drawer Footer */
.mobile-drawer-footer {
    padding: 20px;
    border-top: 1px solid #f0f4f8;
    background-color: #fafbfc;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.drawer-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 44px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.drawer-btn.btn-call {
    background-color: #ffffff;
    border: 1px solid #d4e2f0;
    color: var(--brand-blue);
}

.drawer-btn.btn-call:hover {
    background-color: var(--brand-blue);
    color: #ffffff;
}

.drawer-btn.btn-whatsapp {
    background-color: var(--brand-green);
    color: #ffffff;
}

.drawer-btn.btn-whatsapp:hover {
    background-color: #1c7c34;
}

.drawer-slogan {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
    font-weight: 500;
}

/* Prevent body scroll when drawer open */
body.mobile-menu-active {
    overflow: hidden;
}


/* ==========================================================================
   4. COMMON COMPONENT: SERVICE AREAS SECTION
   ========================================================================== */
.areas-section {
    padding: 15px 0 60px 0;
    background-color: #ffffff;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
}

.areas-container {
    max-width: 100%;
    width: auto;
    margin: 0 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.areas-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
}

.marker-icon {
    font-size: 26px;
    color: var(--brand-blue);
}

.areas-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-blue);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    width: 100%;
}

.area-pill {
    background-color: var(--bg-white);
    border: 1px solid #dbe2e8;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-blue);
    transition: all 0.25s ease;
    cursor: default;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.area-pill:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.areas-subtext {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-blue);
    margin-top: 10px;
    letter-spacing: 0.2px;
}


/* ==========================================================================
   5. COMMON COMPONENT: PROMO / FREE QUOTE CTA BANNER
   ========================================================================== */
.promo-section {
    padding: 40px 0;
    background-color: #ffffff;
    width: 100%;
}

.promo-container {
    max-width: 100%;
    width: auto;
    margin: 0 4%;
    background-color: var(--brand-blue);
    border-radius: 16px;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(11, 49, 84, 0.15);
}

.promo-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.promo-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.promo-subtitle {
    font-size: 14px;
    line-height: 1.5;
    color: #cbdbee;
    font-weight: 400;
    max-width: 520px;
}

.promo-actions {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.promo-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: 10px;
    padding: 16px 36px;
    min-width: 320px;
    height: 76px;
    transition: all 0.25s ease;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}

.promo-btn-icon {
    font-size: 32px;
    margin-right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    width: 32px;
}

.promo-btn-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    text-align: left;
}

.promo-btn-text .num {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.promo-btn-text .lbl {
    font-size: 12px;
    font-weight: 500;
    margin-top: 2px;
    opacity: 0.9;
    letter-spacing: 0.2px;
}

.btn-promo-phone {
    background-color: #1d4e7d;
}

.btn-promo-phone:hover {
    background-color: #153c61;
}

.btn-promo-whatsapp {
    background-color: var(--brand-green);
}

.btn-promo-whatsapp:hover {
    background-color: #1c7c34;
}


/* ==========================================================================
   6. COMMON COMPONENT: FEATURES / TRUST BADGES
   ========================================================================== */
.features-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
}

.features-container {
    max-width: 100%;
    width: auto;
    margin: 0 4%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-badge-icon {
    font-size: 32px;
    color: #1d4e7d;
    flex-shrink: 0;
    line-height: 1;
}

.feature-badge-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.feature-badge-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-blue);
}

.feature-badge-desc {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-muted);
    font-weight: 400;
}


/* ==========================================================================
   7. SITE FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--brand-blue);
    padding: 40px 0 0 0;
    color: #ffffff;
    width: 100%;
}

.footer-container {
    max-width: 100%;
    width: auto;
    margin: 0 4%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon svg {
    width: 44px;
    height: 44px;
    display: block;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.footer-brand-white {
    color: #ffffff;
}

.footer-brand-green {
    color: var(--brand-green);
}

.footer-slogan {
    font-size: 12px;
    color: #cbdbee;
    line-height: 1.5;
    font-weight: 400;
    max-width: 250px;
}

.footer-col-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    padding-bottom: 6px;
}

.footer-links,
.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.footer-links a {
    text-decoration: none;
    color: #cbdbee;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--brand-green);
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbdbee;
    font-size: 13px;
    font-weight: 500;
}

.footer-contact-info i {
    font-size: 14px;
    color: var(--brand-green);
    width: 16px;
    text-align: center;
}

.footer-contact-info a {
    text-decoration: none;
    color: #cbdbee;
    transition: color 0.2s ease;
}

.footer-contact-info a:hover {
    color: var(--brand-green);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: var(--brand-green);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 14px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    width: 100%;
}

.footer-bottom-container {
    max-width: 100%;
    width: auto;
    margin: 0 4%;
}

.copyright-text {
    font-size: 12px;
    color: #a3b8cc;
    font-weight: 400;
}


/* ==========================================================================
   8. RESPONSIVE & MOBILE STYLES (COMMON)
   ========================================================================== */

/* Tablet Screens (<= 1024px) */
@media (max-width: 1024px) {
    .header-container {
        margin: 0 3%;
        padding: 12px 0;
    }
    
    .main-navigation ul {
        gap: 16px;
    }
    
    .brand-name {
        font-size: 22px;
    }

    .areas-container {
        margin: 0 3%;
    }

    .promo-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        margin: 0 3%;
        gap: 24px;
    }
    
    .promo-content {
        text-align: center;
    }
    
    .promo-actions {
        justify-content: center;
        width: 100%;
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 24px;
        margin: 0 3%;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
        margin: 0 3%;
    }
}

/* Mobile Screens (<= 768px) */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: nowrap;
        margin: 0 16px;
        padding: 10px 0;
        min-height: auto;
        align-items: center;
    }
    
    .logo-container {
        order: 1;
        gap: 10px;
    }
    
    .logo-icon svg {
        width: 44px;
        height: 44px;
    }
    
    .brand-name {
        font-size: 20px;
    }
    
    .brand-subtext {
        font-size: 10px;
        margin-top: 1px;
    }

    .main-navigation {
        display: none !important;
    }

    .header-right-group {
        order: 2;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .header-contact {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: flex-end;
    }
    
    .contact-btn {
        width: 104px;
        height: 28px;
        padding: 2px 8px;
        border-radius: 6px;
        justify-content: center;
        gap: 6px;
    }
    
    .btn-icon {
        font-size: 12px;
        margin-right: 0;
        width: auto;
    }
    
    .btn-content {
        flex-direction: row;
        align-items: center;
    }
    
    .phone-number {
        display: none;
    }
    
    .action-text {
        font-size: 9.5px;
        font-weight: 700;
        letter-spacing: 0.4px;
    }

    .mobile-nav-toggle {
        display: flex;
        width: 42px;
        height: 60px;
        border-radius: 8px;
    }

    .areas-section {
        padding: 40px 0;
    }
    
    .areas-container {
        margin: 0 16px;
    }
    
    .areas-title {
        font-size: 22px;
    }
    
    .marker-icon {
        font-size: 22px;
    }
    
    .areas-header {
        margin-bottom: 25px;
    }
    
    .area-pill {
        padding: 6px 18px;
        font-size: 13px;
    }

    .promo-container {
        margin: 0 16px;
    }

    .promo-title {
        font-size: 22px;
    }
    
    .promo-subtitle {
        font-size: 13px;
    }
    
    .promo-actions {
        flex-direction: row;
        gap: 12px;
        width: 100%;
        justify-content: center;
    }
    
    .promo-btn {
        min-width: auto;
        flex-grow: 1;
        max-width: 240px;
        height: 52px;
        padding: 8px 16px;
    }

    .features-section {
        padding: 40px 0;
    }
    
    .features-container {
        margin: 0 16px;
    }
    
    .feature-card {
        gap: 12px;
    }
    
    .feature-badge-icon {
        font-size: 28px;
    }

    .site-footer {
        padding: 35px 0 0 0;
    }
    
    .footer-container {
        margin: 0 16px;
    }
    
    .footer-bottom {
        margin-top: 14px;
    }
    
    .footer-bottom-container {
        margin: 0 16px;
    }
}

/* Small Mobile Screens (<= 480px) */
@media (max-width: 480px) {
    .header-container {
        margin: 0 10px;
        padding: 8px 0;
    }

    .logo-container {
        gap: 8px;
    }

    .logo-icon svg {
        width: 38px;
        height: 38px;
    }

    .brand-name {
        font-size: 17px;
    }
    
    .brand-subtext {
        display: none;
    }

    .header-right-group {
        gap: 8px;
    }

    .header-contact {
        gap: 3px;
    }

    .contact-btn {
        width: 92px;
        height: 25px;
        padding: 2px 6px;
        gap: 4px;
    }

    .btn-icon {
        font-size: 11px;
    }

    .action-text {
        font-size: 8.5px;
    }

    .mobile-nav-toggle {
        width: 38px;
        height: 53px;
    }

    .areas-list {
        gap: 10px;
    }
    
    .area-pill {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .areas-section {
        padding: 35px 0;
    }
    
    .areas-container {
        margin: 0 10px;
    }
    
    .areas-subtext {
        font-size: 13px;
    }

    .promo-container {
        padding: 30px 15px;
        margin: 0 10px;
        gap: 20px;
    }
    
    .promo-actions {
        flex-direction: row;
        gap: 8px;
        width: 100%;
        justify-content: center;
    }
    
    .promo-btn {
        min-width: auto;
        flex-grow: 1;
        max-width: 220px;
        height: 50px;
        padding: 6px 10px;
    }
    
    .promo-btn-icon {
        font-size: 16px;
        margin-right: 6px;
        width: 16px;
    }
    
    .promo-btn-text .num {
        font-size: 11px;
    }
    
    .promo-btn-text .lbl {
        font-size: 8px;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 0 10px;
    }
    
    .feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    
    .feature-badge-content {
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: center;
        margin: 0 10px;
    }
    
    .footer-col {
        align-items: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-contact-info li {
        justify-content: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-slogan {
        max-width: 100%;
    }
    
    .footer-bottom-container {
        margin: 0 10px;
    }
}
