/* -------------------------------------------------------------
   ParaMindTR - Custom CSS Stylesheet
   Designed with premium aesthetics: white backgrounds, 
   navy and gold accents, clean layouts, and smooth animations.
   ------------------------------------------------------------- */

/* --- CSS Variables & Design Tokens --- */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f0f4f8;
    --bg-tertiary: #f1f5f9;
    --primary: #0d2155;
    --primary-light: #162f6b;
    --accent: #c5a880;
    --accent-hover: #b4966d;
    --text-main: #334155;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --white: #ffffff;
    --success: #25d366; /* WhatsApp Green */
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 20px -2px rgba(10, 25, 47, 0.05);
    --shadow-lg: 0 10px 30px -5px rgba(10, 25, 47, 0.08);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --font-sans: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
}

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

ul, ol {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5.5rem 0;
}

.section-bg {
    background-color: var(--bg-secondary);
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-gold { color: var(--accent); }
.text-navy { color: var(--primary); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header .subtitle {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-gold {
    background-color: var(--accent);
    color: var(--white);
}

.btn-gold:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.4);
}

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

.btn-navy:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 25, 47, 0.2);
}

.btn-outline-gold {
    background-color: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline-gold:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

.btn-block {
    display: flex;
    width: 100%;
}

/* --- Header / Navigation --- */
.site-header {
    background-color: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.site-header.scroll-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo {
    height: 75px;
    width: auto;
    border-radius: 0;
    object-fit: contain;
}

.logo-area .logo-text {
    display: none; /* Hide HTML logo text since the new rectangular logo contains it */
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    margin-top: 2px;
}

.desktop-nav .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.desktop-nav .nav-menu > li > a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.desktop-nav .nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.desktop-nav .nav-menu > li > a:hover,
.desktop-nav .nav-menu > li > a.active {
    color: var(--accent);
}

.desktop-nav .nav-menu > li > a:hover::after,
.desktop-nav .nav-menu > li > a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown-item {
    position: relative;
}

.dropdown-item a i {
    font-size: 0.75rem;
    margin-left: 2px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid var(--accent);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 0.5rem 0;
    z-index: 10;
}

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

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent);
    padding-left: 1.5rem;
}

/* Mega Menu Styles */
.header-container {
    position: relative;
}

.mega-dropdown {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 1.5rem;
    right: 1.5rem;
    background-color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid var(--accent);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    padding: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.mega-menu-column h4 {
    font-size: 0.85rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mega-menu-column ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: var(--transition);
    display: block;
    padding: 0.2rem 0;
}

.mega-menu-column ul li a:hover {
    color: var(--accent);
    transform: translateX(4px);
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-header {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 25px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- Mobile Drawer Menu --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 8, 21, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background-color: var(--primary);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

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

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

.mobile-menu-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
}

.mobile-menu > li > a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.mobile-menu > li > a.active {
    color: var(--accent);
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-trigger {
    background: transparent;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.dropdown-trigger.active {
    transform: rotate(180deg);
    color: var(--accent);
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    flex-direction: column;
    gap: 0.75rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-menu.show {
    display: flex;
}

.mobile-dropdown-menu li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.mobile-dropdown-menu li a:hover {
    color: var(--accent);
}

.mobile-nav-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    margin-top: auto;
}

.mobile-contact-info {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-contact-info a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.mobile-contact-info a:hover {
    color: var(--accent);
}

/* --- Hero Section --- */
.hero-section {
    background-color: var(--bg-primary);
    position: relative;
    padding: 7rem 0 5.5rem 0;
    overflow: hidden;
}

/* Abstract Background elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content .tagline {
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--accent-hover);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.25rem;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
}

/* Hero Card / Visual Area */
.hero-visual {
    position: relative;
}

.hero-card {
    background-color: var(--white);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.hero-card:hover {
    transform: translateY(-5px);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(95deg, var(--primary) 0%, var(--accent) 100%);
}

.card-header-icon {
    height: 54px;
    width: 180px;
    background-color: var(--primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.card-header-icon img {
    height: 100%;
    width: auto;
    border-radius: 0;
    object-fit: contain;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.hero-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.card-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.card-feature-item i {
    color: var(--accent);
}

/* --- About Section (Hakkımızda) --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    max-height: 480px;
}

/* Dedicated decorator class for Hakkimizda main image */
.about-img-decor {
    position: relative;
    padding-right: 15px;
    padding-bottom: 15px;
}

/* Gold offset card behind image */
.about-img-decor::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    background-color: var(--accent);
    border-radius: var(--border-radius-lg);
    z-index: 1;
}

/* Decorative blue dotted grid pattern */
.about-img-decor::before {
    content: '';
    position: absolute;
    left: -25px;
    bottom: -25px;
    width: 90px;
    height: 120px;
    background-image: radial-gradient(var(--primary) 15%, transparent 15%);
    background-size: 10px 10px;
    z-index: 0;
    opacity: 0.25;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--accent);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-badge .number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.about-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.about-content .subtitle {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.about-content h2 {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature-box {
    display: flex;
    gap: 1rem;
}

.about-feature-box i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 3px;
}

.about-feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.about-feature-box p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* --- CFO vs Accounting (Kıyaslama) --- */
.compare-container {
    background-color: var(--white);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 3rem;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 0.1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.compare-box {
    padding: 1.5rem;
}

.compare-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.compare-box.accounting h3 {
    color: var(--text-light);
}

.compare-box.finance h3 {
    color: var(--primary);
}

.compare-box.finance h3 i {
    color: var(--accent);
}

.compare-box ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.compare-box ul li {
    display: flex;
    gap: 0.75rem;
    font-size: 1rem;
}

.compare-box ul li i {
    margin-top: 4px;
}

.compare-box.accounting ul li i {
    color: var(--text-light);
}

.compare-box.finance ul li i {
    color: var(--accent);
}

.compare-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    color: var(--accent);
    font-size: 1.5rem;
    height: 100%;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--accent);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    height: 60px;
    width: 60px;
    background-color: rgba(0, 8, 21, 0.06);
    border-radius: 50%;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--accent);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-hover);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: var(--primary);
}

/* --- TradingView Widget Section --- */
.calendar-widget-wrapper {
    background-color: var(--white);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    overflow: hidden;
}

/* --- Call To Action & Lead Form --- */
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content h2 {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.cta-feature-item i {
    color: var(--accent);
}

/* Contact/Lead Form */
.lead-form-box {
    background-color: var(--white);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem 2rem;
    border-top: 4px solid var(--accent);
}

.lead-form-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.lead-form-box p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--border-radius);
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    background-color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

select.form-control {
    cursor: pointer;
}

/* --- Contact Page Specific --- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
}

.contact-info-panel {
    background-color: var(--primary);
    color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-panel h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.contact-info-panel p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-detail-item .icon-box {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.15);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-detail-item p,
.contact-detail-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.contact-detail-item a:hover {
    color: var(--accent);
}

.map-wrapper {
    margin-top: auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 200px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Form success message */
.form-alert {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-alert.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* --- Services Page Layout --- */
.services-detail-section {
    padding: 4rem 0;
}

.service-detail-block {
    background-color: var(--white);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 3rem;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    scroll-margin-top: 100px; /* Offset for sticky header when jumping to anchors */
}

.service-detail-block:last-child {
    margin-bottom: 0;
}

.service-detail-block:nth-child(even) {
    grid-template-columns: 1fr 1.5fr;
}

.service-detail-block:nth-child(even) .service-detail-content {
    order: 2;
}

.service-detail-block:nth-child(even) .service-detail-card {
    order: 1;
}

.service-detail-content h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.service-detail-content .highlight-lead {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
}

.service-detail-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.service-detail-list li i {
    color: var(--accent);
}

/* Outer wrapper for service card decorative effects */
.service-detail-card-wrapper {
    position: relative;
    padding-right: 15px;
    padding-bottom: 15px;
}

/* Gold offset card behind the service card */
.service-detail-card-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    background-color: var(--accent);
    border-radius: var(--border-radius-lg);
    z-index: 1;
}

/* Blue dot pattern behind the service card */
.service-detail-card-wrapper::before {
    content: '';
    position: absolute;
    left: -25px;
    bottom: -25px;
    width: 90px;
    height: 120px;
    background-image: radial-gradient(var(--primary) 15%, transparent 15%);
    background-size: 10px 10px;
    z-index: 0;
    opacity: 0.25;
}

.service-detail-card {
    background-color: var(--white);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 4px solid var(--accent);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.service-detail-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-detail-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--primary);
    background-image: linear-gradient(to bottom, rgba(13, 33, 85, 0.88) 0%, rgba(13, 33, 85, 0.78) 100%), url('../img/footer_bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem 0;
    border-top: 4px solid var(--accent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent);
}

.brand-column .logo-area {
    margin-bottom: 1.25rem;
}

.footer-logo {
    height: 75px;
    width: auto;
    border-radius: 0;
    object-fit: contain;
}

.brand-column .logo-area .logo-title {
    display: none;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li a {
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links li a i {
    font-size: 0.6rem;
    color: var(--accent);
}

.footer-links li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 3px;
}

.footer-contact li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 99;
    transition: var(--transition);
}

.whatsapp-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-floating::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--success);
    opacity: 0.4;
    z-index: -1;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: #333;
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: var(--shadow-md);
}

.whatsapp-floating:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* --- Floating Instagram Button --- */
.instagram-floating {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: var(--white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 99;
    transition: var(--transition);
}

.instagram-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.instagram-floating::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    opacity: 0.4;
    z-index: -1;
    animation: instagramPulse 2s infinite;
}

@keyframes instagramPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.instagram-tooltip {
    position: absolute;
    left: 75px;
    background-color: #333;
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: var(--shadow-md);
}

.instagram-floating:hover .instagram-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/* Hide floating social buttons on mobile to avoid overlapping content */
@media (max-width: 768px) {
    .instagram-floating {
        display: none !important;
    }
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .hero-grid, .about-grid, .cta-grid {
        gap: 2.5rem;
    }
    .hero-content h1 {
        font-size: 2.75rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    .desktop-nav, .btn-header {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-visual {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .about-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
    .compare-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .compare-divider {
        padding: 0.5rem 0;
        height: auto;
    }
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .service-detail-block, 
    .service-detail-block:nth-child(even) {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
    .service-detail-block:nth-child(even) .service-detail-content {
        order: 1;
    }
    .service-detail-block:nth-child(even) .service-detail-card {
        order: 2;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 485px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    .btn {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* --- Inner Page Header Banner --- */
.page-header-banner {
    position: relative;
    padding: 6.5rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid var(--accent);
}

.page-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(13, 33, 85, 0.45), rgba(13, 33, 85, 0.22)); /* Lighter, more elegant gradient overlay */
    z-index: 1;
}

.page-header-banner .container {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85); /* Text shadow to make text pop over lighter background */
}

.page-header-banner h1 {
    font-size: 3.25rem !important;
    color: var(--white) !important;
    margin: 0 0 0.5rem 0 !important;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.page-header-banner p {
    color: var(--accent) !important;
    font-size: 0.95rem !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .page-header-banner {
        padding: 4.5rem 0 !important;
    }
    .page-header-banner h1 {
        font-size: 2.35rem !important;
    }
    .page-header-banner p {
        font-size: 0.85rem !important;
        letter-spacing: 1px !important;
    }
}

/* =========================================================
   INSTAGRAM LEAD LANDING PAGE CUSTOM STYLES
   ========================================================= */
.landing-hero {
    background-color: var(--white);
    padding: 7rem 0 5rem 0;
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background-color: rgba(13, 33, 85, 0.04);
    border-left: 3px solid var(--accent);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 0 4px 4px 0;
    margin-bottom: 2rem;
    width: fit-content;
}
.hero-main-title {
    font-size: 3.5rem !important;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
}
.hero-sub-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 620px;
}
.hero-action-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}
.hero-action-buttons .btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 700;
    gap: 0.5rem;
}
.whatsapp-btn {
    border-color: #25d366 !important;
    color: #25d366 !important;
}
.whatsapp-btn:hover {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    color: var(--white) !important;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3) !important;
}
.hero-trust-metrics {
    display: flex;
    gap: 2.5rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
}
.metric-item {
    display: flex;
    flex-direction: column;
}
.metric-val {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.metric-lbl {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-img-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
}
.hero-portrait {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
    position: relative;
    z-index: 2;
    background-color: #f1f5f9;
}
.image-fallback {
    width: 100%;
    max-width: 400px;
    height: 440px;
    background-color: #f8fafc;
    border-radius: var(--border-radius-lg);
    border: 2px dashed #cbd5e1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #94a3b8;
}
.image-fallback i {
    font-size: 4rem;
}

/* Section headers minimal */
.section-header.minimal {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header.minimal h2 {
    font-size: 2.5rem !important;
    position: relative;
    display: inline-block;
    padding-bottom: 1.25rem;
    margin-top: 0.5rem;
}
.section-header.minimal h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

/* Problems section */
.problems-section {
    background-color: #fafafa;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}
.problem-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: var(--transition);
}
.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 168, 128, 0.35);
}
.problem-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.problem-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}
.highlight-quote {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background-color: rgba(13, 33, 85, 0.02);
    border: 1px solid rgba(13, 33, 85, 0.08);
    border-radius: 50px;
    margin-top: 1rem;
}
.highlight-quote span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}
.highlight-quote i {
    font-size: 1rem;
}

/* Services section */
.services-section {
    background-color: var(--white);
}
.landing-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.l-service-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.l-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 33, 85, 0.15);
}
.l-service-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background-color: rgba(13, 33, 85, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}
.l-service-card:hover .l-service-icon {
    background-color: var(--primary);
    color: var(--white);
}
.l-service-card h3 {
    font-size: 1.25rem !important;
    margin-bottom: 0.75rem !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
}
.l-service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Working model timeline */
.working-model-section {
    background-color: #fafafa;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.model-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
.model-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(to right, #cbd5e1 0%, #cbd5e1 50%, transparent 50%, transparent 100%);
    background-size: 12px 2px;
    z-index: 1;
}
.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}
.timeline-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--accent);
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.timeline-item:hover .timeline-badge {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.timeline-content h3 {
    font-size: 1.15rem !important;
    margin-bottom: 0.5rem !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
}
.timeline-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Why Section */
.why-section {
    background-color: var(--white);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.why-card {
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid #f1f5f9;
    text-align: left;
    transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 168, 128, 0.2);
}
.why-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
    display: inline-block;
}
.why-card h4 {
    font-size: 1.15rem !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    color: var(--primary) !important;
}
.why-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Case studies section */
.cases-section {
    background-color: #fafafa;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.case-card {
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(13, 33, 85, 0.07);
    padding: 2.25rem 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px rgba(13, 33, 85, 0.02);
    position: relative;
}
.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(13, 33, 85, 0.06);
    border-color: rgba(197, 168, 128, 0.4);
}
.case-header-meta {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}
.case-badge {
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent);
    background-color: rgba(197, 168, 128, 0.08);
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.case-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    margin: 0 !important;
    line-height: 1.3;
    padding-right: 0 !important;
}
.case-step {
    margin-bottom: 1.25rem;
    padding-left: 0.75rem;
    border-left: 2px solid rgba(13, 33, 85, 0.06);
}
.step-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}
.step-label i {
    font-size: 0.8rem;
}
.step-content {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}
.case-result-box {
    margin-top: auto;
    background-color: rgba(37, 211, 102, 0.04);
    border: 1px solid rgba(37, 211, 102, 0.15);
    border-radius: 12px;
    padding: 1.15rem;
    transition: var(--transition);
}
.case-card:hover .case-result-box {
    background-color: rgba(37, 211, 102, 0.07);
    border-color: rgba(37, 211, 102, 0.3);
}
.result-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: #166534;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}
.result-label i {
    font-size: 0.85rem;
    color: #25d366;
}
.result-content {
    font-size: 0.9rem;
    color: #14532d;
    font-weight: 700;
    line-height: 1.45;
    margin: 0;
}

/* About me section */
.about-me-section {
    background-color: var(--white);
}
.about-me-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}
.about-me-image {
    display: flex;
    justify-content: center;
}
.img-frame {
    position: relative;
    border: 1px solid #e2e8f0;
    padding: 1rem;
    border-radius: var(--border-radius-lg);
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
}
.img-frame::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    border-top: 3px solid var(--accent);
    border-left: 3px solid var(--accent);
    z-index: 1;
}
.img-frame::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid var(--accent);
    border-right: 3px solid var(--accent);
    z-index: 1;
}
.about-portrait {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: 8px;
    display: block;
    position: relative;
    z-index: 2;
    background-color: #f1f5f9;
}
.about-me-content h2 {
    font-size: 2.25rem !important;
    margin: 0.5rem 0 1.5rem 0 !important;
}
.lead-bio {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.main-bio {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.linkedin-btn {
    border-color: #0077b5 !important;
    color: #0077b5 !important;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.linkedin-btn:hover {
    background-color: #0077b5 !important;
    border-color: #0077b5 !important;
    color: var(--white) !important;
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.2) !important;
}

/* FAQ Section */
.faq-section {
    background-color: #fafafa;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.active {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}
.faq-trigger {
    width: 100%;
    padding: 1.35rem 1.5rem;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}
.faq-trigger i {
    font-size: 0.85rem;
    color: var(--accent);
    transition: var(--transition);
}
.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-panel p {
    padding: 0 1.5rem 1.35rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
}
.contact-block-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: start;
}
.contact-form-wrapper {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-md);
}
.landing-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-control {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    border: 1px solid #cbd5e1;
    border-radius: var(--border-radius);
    outline: none;
    transition: var(--transition);
}
.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.12);
}
textarea.form-control {
    resize: vertical;
}
.contact-info-wrapper {
    position: sticky;
    top: 130px;
}
.info-card {
    background-color: #fafafa;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    padding: 2.25rem;
}
.info-card h3 {
    font-size: 1.35rem !important;
    margin-bottom: 0.5rem !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
}
.info-intro {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}
.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.info-item-link {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.9rem 1.2rem;
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    transition: var(--transition);
}
.info-item-link:hover {
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}
.whatsapp-info-item {
    border-color: rgba(37, 211, 102, 0.2);
}
.whatsapp-info-item:hover {
    border-color: #25d366;
    background-color: rgba(37, 211, 102, 0.02);
}
.whatsapp-info-item i {
    color: #25d366 !important;
}
.info-item-link i {
    font-size: 1.35rem;
    color: var(--accent);
}
.info-item-link div {
    display: flex;
    flex-direction: column;
}
.info-item-link span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
}
.info-item-link strong {
    font-size: 1rem;
    color: var(--text-dark);
}
.info-item-link.static-item {
    cursor: default;
}
.info-item-link.static-item:hover {
    transform: none;
    box-shadow: none;
    border-color: #e2e8f0;
}
.map-container {
    height: 180px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid #cbd5e1;
}
.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Form success alert */
.form-alert {
    padding: 1.2rem 1.5rem;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}
.form-alert.success {
    background-color: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.2);
    color: #1b8743;
}
.form-alert i {
    font-size: 1.25rem;
}

/* =========================================================
     RESPONSIVE ADAPTATIONS (MOBILE FIRST ENHANCEMENTS)
     ========================================================= */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .trust-badge {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-sub-text {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-action-buttons {
        justify-content: center;
    }
    .hero-trust-metrics {
        justify-content: center;
    }
    .about-me-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-me-content {
        text-align: center;
    }
    .about-me-links {
        justify-content: center;
        display: flex;
    }
    .contact-block-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-info-wrapper {
        position: static;
    }
    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .mega-menu {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .landing-hero {
        padding: 5rem 0 3.5rem 0;
    }
    .hero-main-title {
        font-size: 2.25rem !important;
    }
    .hero-sub-text {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    .hero-action-buttons {
        flex-direction: column;
        gap: 1rem;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-trust-metrics {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .model-timeline {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .model-timeline::before {
        display: none;
    }
    .timeline-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .timeline-badge {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .highlight-quote {
        padding: 1rem 1.5rem;
        border-radius: var(--border-radius-lg);
    }
    .highlight-quote span {
        font-size: 1.05rem;
    }
    .section-header.minimal h2 {
        font-size: 2rem !important;
    }
}

/* =========================================================
   PREMIUM FOUNDER PORTRAIT CARD STYLES (STATIC & ELEGANT)
   ========================================================= */

.card-3d-container {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.card-3d-tilt {
    position: relative;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(197, 168, 128, 0.35);
    box-shadow: 
        0 15px 35px -10px rgba(13, 33, 85, 0.12),
        0 0 25px 0 rgba(197, 168, 128, 0.12);
    padding: 0.9rem;
    overflow: visible;
}

/* Glowing Aura effect in background */
.card-3d-aura {
    position: absolute;
    top: -3%;
    left: -3%;
    width: 106%;
    height: 106%;
    border-radius: 28px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.2) 0%, rgba(13, 33, 85, 0.1) 50%, transparent 80%);
    filter: blur(18px);
    z-index: -1;
    pointer-events: none;
}

/* Top Header Badge (Sits above photo frame to ensure zero overlap with head) */
.card-3d-top-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #0d2155 0%, #162f6b 100%);
    border: 1px solid rgba(197, 168, 128, 0.45);
    border-radius: 14px;
    padding: 0.6rem 1.1rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 12px rgba(10, 25, 47, 0.12);
    flex-wrap: wrap;
}

.card-3d-top-header i {
    color: var(--accent);
    font-size: 0.95rem;
}

.founder-name {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.founder-role {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    padding-left: 0.6rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.3px;
}

/* Image frame inside card */
.card-3d-image-frame {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #0d2155;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-3d-img-full {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 18px;
}

/* Bottom Right Corner Floating Experience Badge */
.experience-badge-br {
    position: absolute;
    bottom: 1.5rem;
    right: 1.25rem;
    z-index: 15;
    background: linear-gradient(135deg, rgba(13, 33, 85, 0.95) 0%, rgba(22, 47, 107, 0.95) 100%);
    border: 1px solid rgba(197, 168, 128, 0.65);
    border-radius: 16px;
    padding: 0.75rem 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 12px 30px rgba(10, 25, 47, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.exp-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.4);
    flex-shrink: 0;
}

.exp-text-box {
    display: flex;
    flex-direction: column;
}

.exp-val {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.15rem;
    letter-spacing: -0.5px;
}

.exp-val span {
    color: var(--accent);
}

.exp-lbl {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .card-3d-img-full {
        height: 430px;
        object-position: center 10%;
    }
    .card-3d-top-header {
        padding: 0.5rem 0.85rem;
        gap: 0.4rem;
        margin-bottom: 0.6rem;
    }
    .founder-name {
        font-size: 0.82rem;
    }
    .founder-role {
        font-size: 0.72rem;
        padding-left: 0.4rem;
    }
    .experience-badge-br {
        right: 0.75rem;
        bottom: 0.75rem;
        padding: 0.6rem 0.95rem;
        gap: 0.6rem;
        border-radius: 14px;
    }
    .exp-icon-box {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .exp-val {
        font-size: 1.15rem;
    }
    .exp-lbl {
        font-size: 0.65rem;
    }
}

/* =========================================================
   KİBAR SOL & SAĞ SLIDER OKLARI (MINIMAL SIDE ARROWS)
   ========================================================= */

/* Hide dots completely */
.slider-dots {
    display: none !important;
}

.hero-slider {
    position: relative;
}

/* Kibar Side Navigation Arrow Buttons (Positioned at bottom left & right) */
.slider-arrow-kibar {
    position: absolute;
    bottom: 1.75rem;
    top: auto;
    transform: none;
    z-index: 25;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 25, 47, 0.6);
    border: 1px solid rgba(197, 168, 128, 0.5);
    color: #ffffff;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-arrow-kibar:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(197, 168, 128, 0.5);
}

.slider-arrow-kibar.prev-kibar {
    left: 2rem;
}

.slider-arrow-kibar.next-kibar {
    right: 2rem;
}

@media (max-width: 768px) {
    .slider-arrow-kibar {
        bottom: 1rem;
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
    .slider-arrow-kibar.prev-kibar {
        left: 0.75rem;
    }
    .slider-arrow-kibar.next-kibar {
        right: 0.75rem;
    }
}

/* =========================================================
   HAKKIMIZDA PAGE - FULL RESPONSIVE DESIGN SYSTEM (COMPACT SPACING)
   ========================================================= */

.about-main-section {
    padding: 1.75rem 0;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2.5rem;
    align-items: center;
}

.about-main-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    line-height: 1.25;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-founder-bio {
    margin-top: 1rem;
    background-color: #fafafa;
    border: 1px solid rgba(13, 33, 85, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.bio-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.bio-text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.bio-social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.linkedin-btn-sm {
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    border-color: #0077b5 !important;
    color: #0077b5 !important;
}

.instagram-btn-sm {
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    border-color: #e1306c !important;
    color: #e1306c !important;
}

/* Outsource CFO Section */
.about-cfo-section {
    padding: 1.75rem 0;
}

.about-cfo-section .section-header.minimal,
.about-compare-section .section-header.minimal,
.about-values-section .section-header.minimal {
    margin-bottom: 1rem;
}

.about-cfo-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

.cfo-econ-card {
    background-color: var(--white);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem 1.75rem;
}

.cfo-icon {
    font-size: 2.75rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.cfo-card-title {
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.cfo-card-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cfo-sub-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.cfo-features-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 0;
}

/* SMMM vs CFO Section */
.about-compare-section {
    padding: 1.75rem 0;
    background-color: var(--white);
}

.about-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.compare-box {
    border-radius: var(--border-radius-lg);
    padding: 1.75rem;
}

.smmm-box {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(13, 33, 85, 0.05);
    box-shadow: var(--shadow-sm);
}

.cfo-box {
    background-color: #faf6f0;
    border: 1px solid rgba(197, 168, 128, 0.2);
    box-shadow: var(--shadow-md);
}

.compare-box-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.compare-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.compare-icon.red-icon {
    background-color: #ef4444;
    color: #ffffff;
}

.compare-icon.gold-icon {
    background-color: var(--accent);
    color: #ffffff;
}

.compare-box-header h3 {
    margin: 0;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    color: var(--primary);
    font-size: 1.25rem;
}

.compare-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.compare-list li i {
    margin-top: 4px;
    flex-shrink: 0;
}

.compare-list.red-list {
    color: var(--text-light);
}

.compare-list.red-list i {
    color: #ef4444;
}

.compare-list.green-list {
    color: var(--text-main);
}

.compare-list.green-list i {
    color: #10b981;
}

/* Values Section */
.about-values-section {
    padding: 1.75rem 0;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.value-card {
    padding: 1.5rem;
    border-top: 3px solid var(--accent);
    border-radius: var(--border-radius-lg);
}

.value-card .service-icon {
    height: 44px;
    width: 44px;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.88rem;
    margin: 0;
    color: var(--text-light);
}

/* CTA Section */
.about-cta-section {
    padding: 2.25rem 0;
}

.about-cta-section h2 {
    font-size: 1.85rem;
    color: var(--white) !important;
    margin-bottom: 0.75rem;
}

.about-cta-section p {
    max-width: 650px;
    margin: 0 auto 1.5rem auto;
    color: rgba(255, 255, 255, 0.9) !important;
}


/* =========================================================
   HAKKIMIZDA MEDIA QUERIES (MOBILE RESPONSIVE BREAKPOINTS)
   ========================================================= */

@media (max-width: 992px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-founder-container {
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }
    .about-cfo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-compare-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-main-section,
    .about-cfo-section,
    .about-compare-section,
    .about-values-section {
        padding: 2.25rem 0;
    }
    .about-main-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    .about-founder-bio {
        padding: 1.25rem;
    }
    .cfo-econ-card {
        padding: 1.5rem 1.25rem;
    }
    .cfo-icon {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
    }
    .cfo-sub-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .compare-box {
        padding: 1.5rem 1.15rem;
    }
    .compare-box-header h3 {
        font-size: 1.15rem;
    }
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .about-cta-section {
        padding: 2.25rem 1rem;
    }
    .about-cta-section h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .about-main-title {
        font-size: 1.35rem;
    }
    .about-founder-container {
        max-width: 100%;
    }
}

/* =========================================================
   FLOATING BACK TO TOP BUTTON (YUKARI ÇIK BUTONU)
   ========================================================= */

.scroll-to-top {
    position: fixed;
    bottom: 135px;
    right: 45px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #162f6b 100%);
    color: var(--accent);
    border: 1.5px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(10, 25, 47, 0.4);
    z-index: 98;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.scroll-to-top:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.5);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-tooltip {
    position: absolute;
    right: 60px;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(197, 168, 128, 0.3);
    pointer-events: none;
}

.scroll-to-top:hover .scroll-to-top-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 100px;
        right: 30px;
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
    }
    .scroll-to-top-tooltip {
        display: none !important;
    }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(10, 25, 47, 0.15);
    z-index: 1000;
    padding: 1.5rem;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.cookie-icon {
    font-size: 2.25rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.cookie-text h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.35rem;
    border: none !important;
    padding: 0 !important;
}

.cookie-text p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
}

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

.cookie-text a:hover {
    color: var(--accent-hover);
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.btn-cookie-accept, .btn-cookie-decline {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.55rem 1.2rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.btn-cookie-accept:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}

.btn-cookie-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid #e2e8f0;
}

.btn-cookie-decline:hover {
    background-color: #f8fafc;
    color: var(--text-dark);
}

/* --- Legal Pages Styles --- */
.legal-page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #081536 100%);
    padding: 8rem 0 5rem 0;
    color: var(--white);
    text-align: center;
    border-bottom: 2px solid var(--accent);
}

.legal-page-hero h1 {
    font-size: 2.75rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--white) !important;
    margin-bottom: 1rem;
}

.legal-page-hero .breadcrumb {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.legal-page-hero .breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.legal-page-hero .breadcrumb a:hover {
    color: var(--accent-hover);
}

.legal-page-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0.5rem;
}

.legal-content-section {
    padding: 5rem 0;
    background-color: var(--bg-secondary);
}

.legal-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 3.5rem 4rem;
    max-width: 960px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.legal-card-date {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    display: block;
    font-weight: 600;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-card h2 {
    font-size: 1.45rem;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700;
    color: var(--primary) !important;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-left: 3.5px solid var(--accent);
    padding-left: 0.75rem;
}

.legal-card h3 {
    font-size: 1.15rem;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700;
    color: var(--primary) !important;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.legal-card p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.legal-card ul, .legal-card ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-card li {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .legal-page-hero {
        padding: 6rem 0 3.5rem 0;
    }
    .legal-page-hero h1 {
        font-size: 2.1rem;
    }
    .legal-card {
        padding: 2rem;
    }
    .cookie-banner {
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
        padding: 1.25rem;
    }
    .cookie-content {
        flex-direction: column;
        gap: 0.75rem;
    }
    .cookie-icon {
        display: none;
    }
    .cookie-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0.75rem 0;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--accent);
}

/* --- Legal Hero Page Grid & Image Layout --- */
.legal-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.legal-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-thematic-img {
    max-width: 100%;
    height: auto;
    max-height: 220px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}

.hero-thematic-img:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.25);
}

@media (max-width: 768px) {
    .legal-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    .legal-hero-image {
        margin-top: 1rem;
    }
    .hero-thematic-img {
        max-height: 180px;
    }
}

/* --- Captcha Styles --- */
.btn-captcha-refresh {
    background: none;
    border: 1px solid #cbd5e1;
    border-radius: var(--border-radius);
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.btn-captcha-refresh:hover {
    background-color: #f1f5f9 !important;
    color: var(--accent) !important;
    border-color: var(--accent) !important;
}

#captcha_input:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15) !important;
    outline: none;
}

/* --- Service Detail Page Grid Responsiveness --- */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 991px) {
    .service-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
}













