@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #093B5D; /* Navy Blue from image */
    --primary-dark: #062a42;
    --accent-color: #71869A;  /* Dusty Blue from image */
    --bg-light: #DFD9D7;      /* Beige/Light Gray from image */
    --secondary-color: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #ffffff;
    --text-muted: #64748b;
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-size: 14px;
}

.btn-white {
    background: #ffffff;
    color: var(--primary-color);
}

.btn-white:hover {
    background: #f1f5f9;
}

.btn-outline-dark {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 30px;
    padding: 10px 25px;
}

.btn-outline-dark:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* Top Banner */
.top-banner {
    background: var(--bg-light);
    color: var(--primary-color);
    text-align: center;
    padding: 8px 0; /* Reduced padding */
    font-size: 13px; /* Reduced font size */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.countdown {
    display: flex;
    gap: 10px;
}

.countdown span {
    border: 1px solid rgba(9, 59, 93, 0.2);
    background: rgba(255, 255, 255, 0.5);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    color: var(--primary-color);
}

/* Header */
header {
    background: var(--primary-color);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

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

.logo h2 {
    color: white;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0;
}

.logo span {
    font-size: 10px;
    color: #94a3b8;
    text-transform: lowercase;
    margin-top: -3px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link, .login-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
}

.hero {
    position: relative;
    padding: 180px 0;
    color: white;
    min-height: 90vh; /* More height for "tam sığsın" effect */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 59, 93, 0.9), rgba(113, 134, 154, 0.6));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero h1 span {
    display: block;
    font-weight: 400;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

/* Brand Logos Row */
.brand-logos {
    background: var(--primary-color);
    padding: 60px 0; /* Taller as requested */
    overflow: hidden;
    display: flex;
    align-items: center;
}

.logo-marquee {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.logo-marquee h3 {
    color: white;
    font-weight: 700;
    font-size: 22px; /* Slightly larger fonts */
    padding: 0 60px; /* More spacing */
    opacity: 0.8;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.story-card:hover .play-btn {
    transform: scale(1.1);
    background: var(--accent-color);
    color: white;
}

.play-btn {
    transition: var(--transition);
}

.support-widget {
    position: fixed;
    bottom: 20px;
    right: 80px;
    background: #1e293b;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 13px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 1000;
}

/* Feature Sections */
.feature-section {
    padding: 100px 0; /* Taller sections */
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-content h2 span {
    display: block;
    font-weight: 400;
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 5px;
}

.feature-content p {
    color: #475569;
    font-size: 16px;
    margin-bottom: 25px;
}

.feature-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #475569;
}

.feature-content ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--accent-color);
}

.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: #cbd5e1; font-size: 12px; }

.footer-bottom-info {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    margin-top: 40px;
}

.footer-bottom-info p { color: #94a3b8; font-size: 12px; margin-bottom: 5px; }

.social-icons-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.social-icons-row a { color: white; font-size: 20px; }

.partner-logos-row {
    background: white;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.partner-logos-row img { height: 30px; }


/* Mobile Navigation Styles */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary-color);
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 30px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-nav-links a {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.mobile-nav-footer {
    margin-top: auto;
}

.btn-outline-white {
    border: 1px solid white;
    color: white;
    background: transparent;
}

/* Media Queries */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links, .header-actions .phone-link, .header-actions .login-link, .btn-header-cta {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 40px;
    }
    
    .feature-content h2 {
        font-size: 28px;
    }
    
    .feature-image {
        order: -1;
    }

    .customer-stories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .service-tab {
        min-width: 140px !important;
        padding: 15px !important;
    }

    #service-content-box {
        padding: 40px 20px !important;
    }

    #service-content-box .service-content > div {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center;
    }

    #service-content-box ul {
        grid-template-columns: 1fr !important;
    }

    #service-content-box i[style*="font-size: 180px"] {
        font-size: 120px !important;
    }
}

@media (max-width: 768px) {
    .top-banner {
        flex-direction: column;
        gap: 8px;
        padding: 10px 15px;
        font-size: 10px;
        line-height: 1.2;
    }
    
    .countdown {
        gap: 6px;
    }

    .countdown span {
        padding: 2px 8px;
        font-size: 10px;
    }
    
    .hero {
        padding: 100px 0;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-content div[style*="display: flex"] {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content .btn {
        width: 100%;
        max-width: 300px;
    }

    .brand-logos {
        padding: 40px 0;
    }

    .logo-marquee h3 {
        font-size: 16px;
        padding: 0 30px;
    }

    .customer-stories-grid {
        grid-template-columns: 1fr !important;
    }

    .story-card {
        height: 350px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .faq-section h2, .service-section h2 {
        font-size: 2rem !important;
    }

    .faq-section div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    #loford-chat-widget {
        bottom: 20px;
        right: 20px;
    }

    #chat-bubble span {
        display: none;
    }

    #chat-window {
        width: calc(100vw - 40px);
        right: 0;
    }
    
    .orbit-logo {
        width: 50px !important;
        height: 50px !important;
    }

    @keyframes orbit {
        from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
        to { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
    }
    
    .globe-container {
        width: 200px !important;
        height: 200px !important;
    }
    
    .globe-container i {
        font-size: 140px !important;
    }
}

/* Specific Section Overrides for Mobile */
@media (max-width: 992px) {
    /* Handle grids on mobile */
    .feature-grid, 
    div[style*="display: grid"][style*="grid-template-columns"],
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .customer-stories-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 15px !important;
        padding: 10px 20px 30px !important;
        margin: 0 -20px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .customer-stories-grid::-webkit-scrollbar {
        display: none;
    }

    .story-card {
        flex: 0 0 85% !important;
        max-width: 320px !important;
        height: 420px !important;
    }
    
    .feature-grid > div {
        order: unset !important;
    }

    /* Ensure images stack correctly */
    .feature-image {
        order: -1 !important;
        margin-bottom: 20px;
    }

    
    /* Pricing specific */
    .price-card {
        margin-bottom: 20px;
    }
    
    /* Contact specific */
    .contact-content div[style*="padding: 50px"] {
        padding: 30px 20px !important;
    }

    /* Alignment Fixes for Feature Sections */
    .feature-content {
        padding: 0 !important;
        text-align: center !important;
    }

    .feature-content h2 {
        font-size: 1.8rem !important;
        text-align: center !important;
    }

    .feature-content h2 span {
        font-size: 1.2rem !important;
        text-align: center !important;
    }


    .feature-content ul {
        text-align: left !important;
        display: inline-block !important;
        margin: 0 auto 25px !important;
    }

    .feature-image img {
        margin: 0 auto !important;
        display: block !important;
    }

    /* Comparison Table Title Fix */
    .comparison-table h2 {
        font-size: 1.8rem !important;
        padding: 0 20px !important;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem !important;
    }
    
    .hero h1 span {
        font-size: 1.2rem !important;
    }

    
    h2[style*="font-size: 3rem"] {
        font-size: 1.5rem !important;
    }

    h3[style*="font-size: 2.5rem"] {
        font-size: 1.4rem !important;
    }


    /* Fix image overflow */
    img {
        max-width: 100%;
        height: auto;
    }


    #service-content-box {
        padding: 40px 20px !important;
        border-radius: 20px !important;
    }

    /* Tab navigation scrolling */

    div[style*="display: flex; flex-wrap: wrap; justify-content: center"] {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding: 10px 20px 20px !important;
        -webkit-overflow-scrolling: touch;
        gap: 10px !important;
    }

    .service-tab {
        flex: 0 0 auto !important;
    }

    /* Globe section adjustments */
    .globe-container {
        margin: 0 auto;
    }
    
    .feature-image div[style*="height: 500px"] {
        height: 350px !important;
    }

    /* Table responsiveness */
    table {
        min-width: 800px;
    }
    
    .comparison-table .container > div {
        margin: 0 -20px !important;
        width: calc(100% + 40px) !important;
        border-radius: 0 !important;
    }

    /* Premium Page Specific Fixes */
    section[style*="padding: 180px"], 
    section[style*="padding: 160px"],
    section[style*="padding: 120px"] {
        padding: 100px 0 60px !important;
    }

    h1[style*="font-size: 8.5rem"],
    h1[style*="font-size: 7.5rem"],
    h1[style*="font-size: 5.5rem"],
    h1[style*="font-size: 5rem"],
    h1[style*="font-size: 4.5rem"] {
        font-size: 2.2rem !important;
        letter-spacing: -1.5px !important;
        line-height: 1.1 !important;
    }


    div[style*="padding: 100px"] {
        padding: 40px 20px !important;
        border-radius: 20px !important;
    }

    div[style*="bottom: -30px"][style*="right: -30px"] {
        position: relative !important;
        bottom: 0 !important;
        right: 0 !important;
        margin-top: 20px;
        text-align: center;
        display: inline-block;
    }

    /* Fix overlapping Scroll-to-Top and Chat */

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 10px 20px 20px;
    box-shadow: 0 -10px 25px rgba(0,0,0,0.1);
    z-index: 9998;
    justify-content: space-between;
    gap: 12px;
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    transition: var(--transition);
}

.call-btn {
    background: var(--primary-color);
}

.wp-btn {
    background: #00bfa5;
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex;
    }
    
    /* Adjust footer and widgets to not overlap */
    footer { padding-bottom: 100px !important; }
    #loford-chat-widget { bottom: 90px !important; }
}



