/* 
  Payro - Modern Midnight Design System
  Author: Antigravity AI
*/

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

:root {
    /* Color Palette */
    --primary: #2c5585;
    --primary-glow: rgba(0, 97, 255, 0.15);
    --secondary: #00a1ff;
    --accent: #6200ea;
    
    /* Backgrounds */
    --bg-light: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.7); /* Light Glassmorphism */
    --bg-card-hover: rgba(255, 255, 255, 0.9);
    
    /* Text */
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-gradient: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    
    /* Borders & Lines */
    --border: rgba(0, 0, 0, 0.05);
    --border-hover: rgba(0, 0, 0, 0.1);
    
    /* Misc */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-padding {
    padding: 8rem 0;
}

/* Glassmorphism Effect */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

/* Navbar */
nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition);
    background: transparent;
}

nav.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: 'Lexend', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: white; /* Default on hero image */
    display: inline-flex;
    align-items: center;
}

nav.scrolled .logo {
    color: var(--text-main);
}

.logo span {
    color: var(--primary);
}

.mobile-logo-item,
.mobile-social-item {
    display: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

nav.scrolled .nav-links li a {
    color: var(--text-muted);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: white;
}

nav.scrolled .nav-links li a:hover,
nav.scrolled .nav-links li a.active {
    color: var(--primary);
}

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

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 10px;
    transition: var(--transition);
    transform-origin: left;
}

nav.scrolled .mobile-toggle span {
    background-color: var(--text-main);
}

/* Hamburger Animation */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

nav.scrolled .nav-links li a:hover,
nav.scrolled .nav-links li a.active {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

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

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

/* Footer */
footer {
    position: relative;
    padding: 5rem 0 0;
    border-top: 1px solid var(--border);
    background: url('../assets/images/footer-bg.png') center/cover no-repeat;
    color: white;
    z-index: 1;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 11, 16, 0.7); /* Reduced from 0.9 for better visibility */
    z-index: -1;
}

footer .logo, footer h4, footer a, footer p {
    color: white !important;
}

footer .text-muted, footer p, footer a {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3); /* Dark overlay for specific bottom row */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-bottom p, .footer-bottom a {
    color: #ffffff !important; /* Prominent white color */
    font-weight: 500;
}

/* Hero Section Base */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* Inner Page Header */
.inner-header {
    height: 60vh;
    width: 100%;
    position: relative;
    background-image: url('../assets/images/inner-header-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 0;
}

.inner-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 1;
}

.inner-header .container {
    position: relative;
    z-index: 5;
}

/* Hero Section */
.hero {
    height: 90vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    background: #0f172a;
}

.slider-container {
    width: 100%;
    height: 100%;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 8s linear;
}

.slide.active .slide-bg {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        rgba(15, 23, 42, 0.9) 0%, 
        rgba(15, 23, 42, 0.4) 50%, 
        rgba(15, 23, 42, 0.9) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    text-align: center;
    padding: 0 2rem;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.6s;
}

.slide.active .hero-btns {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-logo-item {
        display: block;
        margin-bottom: 3rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff; /* Solid white to hide content behind */
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 2.5rem;
        gap: 1.5rem;
        transition: var(--transition);
        z-index: 99999; /* Higher than everything */
        display: flex;
        overflow-y: auto; /* Handle long menus */
        overscroll-behavior: none; /* Prevent scroll chaining */
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li a {
        color: var(--text-main) !important; /* Ensure visibility on white bg */
        font-size: 1.15rem;
        font-weight: 600;
    }

    .nav-links li a.active {
        color: var(--primary) !important; /* Stand out current page */
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        text-align: left;
        padding: 0.5rem 0;
        padding-left: 1rem;
        min-width: auto;
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        font-size: 1rem;
        padding: 0.5rem 0;
        color: var(--text-muted) !important;
    }

    .mobile-social-item {
        display: flex;
        gap: 1.5rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
    }

    .mobile-social-item a {
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Brand Colors for Social Icons */
    .mobile-social-item a[aria-label="Instagram"] { color: #E1306C !important; }
    .mobile-social-item a[aria-label="LinkedIn"] { color: #0077b5 !important; }
    .mobile-social-item a[aria-label="Twitter"] { color: #000000 !important; }
    .mobile-social-item a[aria-label="Facebook"] { color: #1877F2 !important; }
    .mobile-social-item a[aria-label="YouTube"] { color: #FF0000 !important; }

    .mobile-social-item a:hover {
        transform: translateY(-3px);
        opacity: 0.8;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Corporate Page Layout */
.corp-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.corp-grid .glass {
    padding: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.corp-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-md);
}

@media (max-width: 991px) {
    .corp-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .corp-grid .animate-on-scroll:nth-child(1) {
        order: 1; /* In case we want text first on mobile, but usually image first is fine. */
    }
}

/* Comparison Table */
.comparison-container {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 900px;
}

.comparison-table th, 
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #eee;
    font-size: 0.95rem;
}

.comparison-table th {
    background: #003366; /* Navy based on image */
    color: white;
    font-weight: 700;
}

.comparison-table th:first-child {
    text-align: left;
    background: #002244;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-main);
    background: #f8f9fa;
    width: 30%;
}

.comparison-table tr:nth-child(even) td {
    background: #fdfdfd;
}

.comparison-table .section-header td {
    background: #8e6d8a !important; /* Muted purple from image */
    color: white;
    text-align: left;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 1.2rem 1.5rem;
    text-transform: uppercase;
}

.check-icon {
    color: #2ecc71;
    font-size: 1.5rem;
    font-weight: bold;
}



/* Dropdown Menu */
.nav-links li {
    position: relative;
    list-style: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    min-width: 220px;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem 0;
    z-index: 1500;
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 0.8rem 1.5rem;
    display: block;
    color: var(--text-main) !important; /* Force dark color in dropdown */
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--primary); /* Darker background */
    color: white !important; /* White text on hover */
    padding-left: 2rem;
}

.nav-links a span.arrow {
    font-size: 0.6rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.nav-links li:hover a span.arrow {
    transform: rotate(180deg);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: all 0.5s ease;
    opacity: 0;
    pointer-events: none;
}

.cookie-banner.show {
    opacity: 1;
    pointer-events: all;
    bottom: 2.5rem;
}

.cookie-content {
    flex: 1;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 1rem;
        padding: 1.5rem;
    }
    .cookie-actions {
        width: 100%;
    }
    .cookie-actions .btn {
        flex: 1;
    }
}

/* Floating Contact Icons */
.floating-contact {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn.phone {
    background-color: #e60000;
}

.floating-btn.whatsapp {
    background-color: #00a811;
}

.floating-btn svg {
    fill: white;
}

@media (max-width: 768px) {
    .floating-contact {
        left: 20px;
        bottom: 20px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    .floating-btn svg {
        width: 24px !important;
        height: 24px !important;
    }
}

/* Scroll to Top Button */
#scrollTop {
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 97, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

#scrollTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTop:hover {
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 97, 255, 0.4);
}

#scrollTop svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 768px) {
    #scrollTop {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Introductory Section Styles */
.intro-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #ffffff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 2px solid rgba(13, 27, 62, 0.1);
    z-index: 1;
}

.circle-inner {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #f8fafc;
    z-index: 2;
}

.circle-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.circle-inner:hover img {
    transform: scale(1.05);
}

/* Decorative Waves */
.wave-decoration {
    position: absolute;
    z-index: 3;
    width: 100px;
    height: auto;
    opacity: 0.6;
}

.wave-top-left {
    top: 0;
    left: 0;
    color: #8e6d8a;
}

.wave-bottom-right {
    bottom: 0;
    right: 0;
    color: #8e6d8a;
    transform: rotate(180deg);
}

.intro-content-side {
    z-index: 5;
}

.intro-tag {
    color: #8e6d8a;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
    font-size: 0.9rem;
}

.intro-title {
    color: #0d1b3e;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.intro-desc {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .circle-bg {
        width: 350px;
        height: 350px;
    }
    
    .circle-inner {
        width: 300px;
        height: 300px;
    }
    
    .intro-desc {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .circle-bg {
        width: 280px;
        height: 280px;
    }
    
    .circle-inner {
        width: 240px;
        height: 240px;
    }
    
    .intro-title {
        font-size: 2.2rem;
    }
}

/* Contact Form & Input Styles */
.form-control {
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-control label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.6rem;
    transition: var(--transition);
}

.form-control input,
.form-control textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.form-control input::placeholder,
.form-control textarea::placeholder {
    color: #94a3b8;
}

.form-control input:focus,
.form-control textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(21, 106, 66, 0.1);
    transform: translateY(-1px);
}

/* Custom Checkbox */
.checkbox-group {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    user-select: none;
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(0,0,0,0.15);
    border-radius: 6px;
    background: white;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
    outline: none;
}

.checkbox-group input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.checkbox-group span {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Contact Info Cards */
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary);
}

.contact-info-card .icon {
    width: 50px;
    height: 50px;
    background: rgba(21, 106, 66, 0.1);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* FAQ Accordion Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item .question {
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-main);
    user-select: none;
}

.faq-item .answer {
    padding: 0 2.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(21, 106, 66, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-item.active .answer {
    padding-bottom: 2rem;
    max-height: 500px;
}

.faq-item .icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: var(--primary);
    opacity: 0.6;
}

.faq-item.active .icon {
    transform: rotate(180deg);
    opacity: 1;
}

/* Blog Page Modernization */
.blog-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-card .img-container {
    height: 240px;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.blog-card .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .img-container img {
    transform: scale(1.1);
}

.blog-card .content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card .meta {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.blog-card h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: var(--text-main);
    flex-grow: 1;
}

/* Creative 'İncele' Button */
.btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    background: #f8fafc;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: fit-content;
    gap: 0.5rem;
}

.btn-view::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-view:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-view:hover::after {
    transform: translateX(4px);
}

/* Blog Content Details */
.blog-detail-container {
    max-width: 900px;
    margin: 0 auto;
}

.blog-featured-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 3.5rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.blog-detail-content {
    font-size: 1.15rem;
    line-height: 1.95;
    color: var(--text-main);
}

.blog-detail-content p {
    margin-bottom: 2rem;
}

.blog-detail-content h2, 
.blog-detail-content h3 {
    margin: 3.5rem 0 1.5rem;
    font-weight: 800;
    color: #0d1b3e;
}

.blog-back-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 2.5rem;
    transition: var(--transition);
}

.blog-back-btn:hover {
    color: var(--primary);
    transform: translateX(-5px);
}
