/* 
    Pestline İlaçlama - Ultra Premium "Tech-Elite" Design System
    Theme: Modern, Chic, High-Tech, Minimalist
*/

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');

:root {
    --primary: #0F172A;
    --accent: #D9F99D; /* Lime Green */
    --accent-dark: #A3E635;
    --bg: #FAFAFA;
    --card-bg: #FFFFFF;
    --text: #1E293B;
    --text-muted: #64748B;
    --border: rgba(15, 23, 42, 0.08);
    --glass: rgba(255, 255, 255, 0.7);
    --radius-full: 100px;
    --radius-2xl: 32px;
    --radius-xl: 24px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.02);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.06);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Decorative Background Blobs */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(100px);
    opacity: 0.5;
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--accent);
    border-radius: 50%;
    animation: move 20s infinite alternate;
}

.blob-2 {
    top: -200px;
    right: -100px;
    background: #E2E8F0;
}

.blob-3 {
    bottom: -100px;
    left: 10%;
    width: 300px;
    height: 300px;
    background: var(--accent-dark);
}

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 50px) scale(1.2); }
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--primary);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Ticker Bar */
.top-ticker {
    background: var(--primary);
    color: var(--accent);
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    gap: 32px;
    animation: ticker 40s linear infinite;
}

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

.ticker-content span {
    display: inline-block;
}

/* Header & Nav */
header {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

nav {
    background: white; /* Solid white for better visibility */
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px 0 40px;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    position: relative;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-dark);
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary); /* Dark color for visibility */
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover:not(.btn-nav) {
    background: var(--accent);
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    background: var(--accent);
    width: 48px;
    height: 48px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 120px;
        left: 20px;
        right: 20px;
        background: white;
        padding: 40px 20px;
        border-radius: 30px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        border: 1px solid var(--border);
        z-index: 1001;
        gap: 15px;
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-toggle {
        display: flex;
    }
    .nav-links a {
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
        padding: 15px;
    }
}

.btn-nav {
    background: var(--primary) !important;
    color: white !important;
    padding: 12px 28px !important;
    border-radius: var(--radius-full);
}

/* Bento & Pest Image Styles */
.bento-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.bento-item:hover .bento-image {
    opacity: 0.6;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 180px 0 100px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.95;
    margin-bottom: 32px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 48px;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    background: #E2E8F0;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-stat {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    padding: 24px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    transform: rotate(-2deg);
}

/* Bento Grid Services */
.section-header {
    margin-bottom: 80px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Standard 3-column layout */
    gap: 30px;
}

.bento-item {
    background: white;
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    min-height: 420px;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--accent-dark);
}

.bento-item.large, .bento-item.tall { grid-column: span 1; grid-row: span 1; }

/* Clean image background for certain items */
.bento-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.05; /* Very subtle background */
    transition: all 0.5s ease;
    filter: grayscale(100%);
}

.bento-item:hover .bento-image {
    opacity: 0.15;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.bento-icon {
    width: 64px;
    height: 64px;
    background: var(--accent);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.bento-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.bento-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

/* Pest Grid (Modern Cards - Redesigned to match screenshot) */
.pest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.pest-modern-card {
    background: white;
    border-radius: 40px;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

/* Decorative blob in top-right */
.pest-modern-card::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: #F0FDF4; /* Very light green */
    border-radius: 50%;
    z-index: 0;
}

.pest-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
    border-color: #A3E635;
}

.pest-img-box {
    width: 120px;
    height: 120px;
    background: transparent;
    border-radius: 0;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.pest-img-box img {
    width: auto;
    max-width: 120px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    padding: 0;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.pest-modern-card:hover .pest-img-box img {
    transform: scale(1.1) rotate(-5deg);
}

.pest-modern-card h3 {
    padding: 0;
    color: #0F172A;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.pest-modern-card p {
    padding: 0;
    color: #64748B;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.pest-modern-card .btn-text {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    color: #10B981; /* Teal green from screenshot */
    font-weight: 800;
    text-decoration: none;
    font-size: 0.95rem;
    background: transparent;
    border-radius: 0;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.pest-modern-card .btn-text:hover {
    background: transparent;
    color: #059669;
}

/* Floating Actions */
.whatsapp-chic {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--primary);
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-chic:hover {
    transform: scale(1.1) rotate(5deg);
    background: #25D366;
}

/* Custom Cursor (Optional but chic) */
#cursor {
    width: 20px;
    height: 20px;
    background: var(--accent-dark);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
    display: none;
}

@media (min-width: 1024px) {
    #cursor { display: block; }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero p { margin: 0 auto 48px; }
    .hero-stat { display: none; }
    nav { margin: 0 20px; }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 { font-size: 3.5rem; }
    .section-header h2 { font-size: 2.5rem !important; }
}

/* GSAP Animations Classes */
.gsap-reveal {
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    gap: 10px;
}

.btn-primary { 
    background: var(--primary); 
    color: white; 
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.25);
    background: #1e293b;
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column;
    }
    .hero-btns .btn {
        width: 100%;
    }
    .whatsapp-chic {
        display: none; /* Hide desktop WP icon on mobile as we have the CTA bar */
    }
}
/* Health Priority Section */
.health-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.health-title {
    font-size: 3rem;
    margin-bottom: 30px;
}

.health-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.health-features {
    display: grid;
    gap: 30px;
}

.health-feature-item {
    display: flex;
    gap: 20px;
}

.health-feature-icon {
    background: var(--accent);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.health-feature-text h4 {
    margin-bottom: 5px;
}

.health-feature-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.health-card {
    background: var(--primary);
    color: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
}

.health-card-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 25px;
}

.health-card-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.health-card-list li i {
    color: var(--accent-dark);
    margin-top: 5px;
}

/* Coverage Area Section */
.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.area-title {
    font-size: 3.5rem;
    margin: 20px 0;
    line-height: 1.1;
    color: var(--primary);
}

.area-list-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.area-column {
    flex: 1;
}

.area-column h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-column ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    padding: 0;
}

.area-column ul li {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.area-column ul li::before {
    content: "•";
    color: var(--accent-dark);
    font-weight: bold;
}

.area-stat-card {
    background: var(--primary);
    color: white;
    padding: 60px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
}

.area-stat-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 12rem;
    opacity: 0.05;
    color: white;
}

.area-stat-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: 10px;
    line-height: 1;
}

/* Responsive Overrides for Health & Area */
@media (max-width: 1024px) {
    .health-grid, .area-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .health-title, .area-title { font-size: 2.8rem; }
    .health-card, .area-stat-card { padding: 40px; }
}

@media (max-width: 768px) {
    .area-list-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .area-column ul {
        grid-template-columns: 1fr;
    }
    .health-feature-item {
        flex-direction: column;
        gap: 15px;
    }
}

.bottom-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    padding: 16px 24px;
    gap: 12px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.08);
    z-index: 1000;
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .bottom-cta-bar {
        display: flex;
    }
}

.bottom-cta-bar .btn {
    flex: 1;
    padding: 12px;
    font-size: 0.9rem;
    border-radius: 12px;
}
