/* premium-theme.css - Professional Clean & Premium Visual Design for Deniz Grup OSGB */

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

:root {
    /* Primary brand colors – Red */
    --color-primary: #C8102E;
    --color-primary-dark: #a00e25;
    --color-primary-light: rgba(200, 16, 46, 0.1);
    --color-primary-glow: rgba(200, 16, 46, 0.25);
    
    /* Premium Corporate Light Theme */
    --bg-main: #F4F6F9; /* Soft cool gray for professional look */
    --bg-surface: #FFFFFF;
    --bg-topbar: #FFFFFF;
    --text-primary: #1e293b; /* Slate 800 */
    --text-secondary: #475569; /* Slate 600 */
    --text-muted: #94a3b8;
    
    /* Footer Colors */
    --bg-footer: #0f172a; /* Slate 900 for a solid professional footer */
    --text-footer-primary: #f8fafc;
    --text-footer-secondary: #cbd5e1;
    
    /* Corporate Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px rgba(30, 41, 59, 0.08);
    --glass-blur: 16px;
    
    --transition-speed: 0.3s;
    --font-family: 'Inter', sans-serif;
}

/* Global resets */
body, html {
    font-family: var(--font-family) !important;
    background-color: var(--bg-main) !important;
    color: var(--text-primary) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family) !important;
    font-weight: 700 !important;
    color: var(--text-primary) !important;
}

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

a:hover {
    color: var(--color-primary-dark);
}

/* Premium Layout Elements */
.attorna-page-wrapper {
    background-color: var(--bg-main);
}

/* Corporate Glass‑morphism container for sections */
.gdlr-core-pbf-wrapper-container-inner, .premium-glass-panel {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(var(--glass-blur)) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur)) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 12px !important;
    box-shadow: var(--glass-shadow) !important;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed) !important;
}

.gdlr-core-pbf-wrapper-container-inner:hover, .premium-glass-panel:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(30, 41, 59, 0.12) !important;
}

/* Icon Boxes */
.anasayfaIconlar {
    background: var(--bg-surface);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.anasayfaIconlar:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-glow);
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(200, 16, 46, 0.1);
}
.anasayfaIconlar img {
    filter: brightness(0) saturate(100%) invert(24%) sepia(8%) saturate(1915%) hue-rotate(178deg) brightness(95%) contrast(90%); /* Slate 800 */
    transition: filter 0.3s ease;
}
.anasayfaIconlar:hover img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(88%) saturate(3015%) hue-rotate(338deg) brightness(91%) contrast(98%); /* Red */
}

/* Typography Overrides */
.gdlr-core-title-item-title {
    color: var(--text-primary) !important;
    letter-spacing: 1.5px !important;
}

.gdlr-core-text-box-item-content p {
    color: var(--text-secondary) !important;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Buttons – Professional Premium Style */
.gdlr-core-button, .gdlr-core-button-item .gdlr-core-button, .gdlr-core-button-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important; /* Squarer buttons are more corporate */
    padding: 14px 30px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all var(--transition-speed) !important;
    box-shadow: 0 4px 10px var(--color-primary-glow) !important;
    position: relative;
    overflow: hidden;
}

.gdlr-core-button:hover, .gdlr-core-button-item .gdlr-core-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(200, 16, 46, 0.4) !important;
}

/* ============================================= */
/* ULTRA PREMIUM CUSTOM HEADER                   */
/* ============================================= */

.premium-desktop-header-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

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

/* --- Top Bar --- */
.premium-topbar {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}
.ptb-left, .ptb-right {
    display: flex;
    align-items: center;
}
.ptb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ptb-item i {
    color: var(--color-primary);
    font-size: 14px;
}
.ptb-item a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}
.ptb-item a:hover {
    color: #fff;
}
.ptb-divider {
    width: 4px; height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    margin: 0 15px;
}
.ptb-socials {
    display: flex;
    gap: 15px;
    margin-right: 25px;
}
.ptb-socials a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}
.ptb-socials a:hover {
    color: #fff;
}
.ptb-btn {
    background: var(--color-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}
.ptb-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200,16,46,0.4);
    color: #fff;
}

/* --- Main Header --- */
.premium-main-header {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    padding: 10px 0;
}
.pmh-logo img {
    max-width: 220px;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
    display: block;
}

/* --- Navigation --- */
.pmh-nav {
    display: flex;
}
.pmh-menu {
    display: flex;
    list-style: none;
    margin: 0; padding: 0;
    align-items: center;
    gap: 5px;
}
.pmh-menu > li {
    position: relative;
}
.pmh-menu > li > a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}
.pmh-menu > li > a:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
}

/* --- Dropdown --- */
.pmh-dropdown {
    position: absolute;
    top: 100%; left: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    list-style: none;
    margin: 10px 0 0 0; padding: 10px 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}
.pmh-has-dropdown:hover .pmh-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.pmh-dropdown li {
    margin: 0 8px;
}
.pmh-dropdown li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: block;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.pmh-dropdown li a:hover {
    background: #f8f9fa;
    color: var(--color-primary);
    padding-left: 20px;
}

/* Hide legacy styles completely */
.attorna-header-wrap { display: none !important; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .premium-desktop-header-wrapper { display: none; }
}

/* ---- Video Hero Section ---- */
.premium-video-hero {
    position: relative;
    width: 100%;
    height: 115vh; /* Büyütüldü (100vh -> 115vh) aşağıya daha çok uzayacak */
    min-height: 800px;
    overflow: hidden;
    margin-top: 0; 
    z-index: 0;
}
.premium-video-hero .hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center bottom; /* Videonun alt kısmındaki yazıların kesilmemesi için */
    z-index: 0;
    animation: heroKenBurns 20s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
    0%   { transform: scale(1);    }
    100% { transform: scale(1.05); } /* Zoom efekti hafifletildi ki yazılar taşmasın */
}

/* Gradient overlay - Yazıların daha iyi okunması için koyulaştırıldı */
.hero-gradient-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.75) 100%),
        linear-gradient(135deg, rgba(200,16,46,0.3) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* ============================================= */
/* PREMIUM ABOUT SECTION                         */
/* ============================================= */

.premium-about-section {
    padding: 100px 0;
    background: #fdfdfd;
    position: relative;
    font-family: 'Inter', sans-serif;
}

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

/* --- About Content --- */
.premium-about-content {
    padding-right: 20px;
}
.premium-badge-text {
    display: inline-block;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 6px 14px;
    background: rgba(200, 16, 46, 0.08);
    border-radius: 4px;
}
.premium-about-title {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 20px;
}
.premium-about-title span {
    color: var(--color-primary);
}
.premium-about-divider {
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 2px;
    margin-bottom: 30px;
}
.premium-about-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}
.premium-about-desc p {
    margin-bottom: 15px;
}
.premium-btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #a00b23 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(200, 16, 46, 0.3);
    transition: all 0.3s ease;
}
.premium-btn-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(200, 16, 46, 0.4);
    color: #fff;
}

/* --- About Image --- */
.premium-about-image {
    position: relative;
    padding-left: 20px;
}
.premium-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}
.premium-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}
.premium-image-backdrop {
    position: absolute;
    top: 30px;
    right: -30px;
    bottom: -30px;
    left: 30px;
    background: linear-gradient(135deg, rgba(200,16,46,0.1) 0%, rgba(15,23,42,0.05) 100%);
    border-radius: 20px;
    z-index: 1;
}
.premium-experience-badge {
    position: absolute;
    bottom: 30px;
    left: -40px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: floatBadge 6s ease-in-out infinite;
}
.premium-experience-badge .number {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}
.premium-experience-badge .text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@media (max-width: 991px) {
    .premium-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .premium-experience-badge {
        left: 20px;
        bottom: -20px;
    }
    .premium-image-backdrop {
        right: -10px;
        bottom: -10px;
        left: 10px;
    }
}

/* ============================================= */
/* PREMIUM SERVICES SECTION (SEO OPTIMIZED)      */
/* ============================================= */

.premium-services-section {
    padding: 100px 0;
    background: #f4f7f9;
    font-family: 'Inter', sans-serif;
}

/* Section Header */
.premium-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.premium-subtitle {
    display: block;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.premium-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
}
.premium-section-header .premium-divider {
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* Services Grid */
.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Service Card */
.premium-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.premium-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Image Hover */
.service-image-link {
    display: block;
    overflow: hidden;
    position: relative;
}
.service-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 62.5%; /* 16:10 aspect ratio */
}
.service-image-wrapper img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.premium-service-card:hover .service-image-wrapper img {
    transform: scale(1.08);
}
.service-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(200, 16, 46, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.premium-service-card:hover .service-overlay {
    opacity: 1;
}
.service-overlay i {
    color: #fff;
    font-size: 24px;
    transform: scale(0.5);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.premium-service-card:hover .service-overlay i {
    transform: scale(1);
}

/* Card Content */
.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.service-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}
.service-title a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s ease;
}
.service-title a:hover {
    color: var(--color-primary);
}
.service-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.service-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.service-readmore i {
    transition: transform 0.3s ease;
}
.service-readmore:hover {
    color: var(--color-primary-dark);
}
.service-readmore:hover i {
    transform: translateX(5px);
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .premium-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 991px) {
    .premium-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .premium-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Content */
.hero-content {
    position: absolute;
    bottom: 15%;
    left: 8%;
    z-index: 2;
    max-width: 650px;
    animation: heroContentIn 1s cubic-bezier(0.4,0,0.2,1) 0.5s both;
}
@keyframes heroContentIn {
    0%   { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0);    }
}

.hero-badge {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(200,16,46,0.4);
}
.hero-heading {
    font-size: 3.8rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    color: #fff !important;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero-subtext {
    font-size: 1.2rem !important;
    line-height: 1.7;
    color: rgba(255,255,255,0.88) !important;
    margin-bottom: 35px;
    max-width: 520px;
}
.hero-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--color-primary);
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    text-decoration: none !important;
    box-shadow: 0 8px 30px rgba(200,16,46,0.45);
    transition: all 0.3s ease;
}
.hero-btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200,16,46,0.55);
}
.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}
.hero-btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Scroll hint animation */
.hero-scroll-hint {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: heroContentIn 1s cubic-bezier(0.4,0,0.2,1) 1.2s both;
}
.hero-scroll-hint span {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255,255,255,0.7);
    border-bottom: 2px solid rgba(255,255,255,0.7);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50%      { transform: rotate(45deg) translateY(8px); }
}

/* ---- Mobile Responsive ---- */
@media (max-width: 999px) {
    .premium-video-hero {
        height: 85vh;
        margin-top: -80px;
    }
    .hero-content {
        bottom: 18%;
        left: 5%;
        right: 5%;
        max-width: 100%;
    }
    .hero-heading {
        font-size: 2.4rem !important;
    }
    .hero-subtext {
        font-size: 1rem !important;
    }
    .hero-cta-row {
        flex-direction: column;
    }
    .hero-btn-primary, .hero-btn-ghost {
        text-align: center;
        justify-content: center;
    }
}

/* Footer – Solid Dark Corporate */
footer, .attorna-footer-wrapper, .attorna-copyright-wrapper {
    background-color: var(--bg-footer) !important;
    color: var(--text-footer-secondary) !important;
    border-top: none;
}
.attorna-footer-wrapper a, .attorna-copyright-wrapper a {
    color: var(--text-footer-secondary) !important;
    transition: color var(--transition-speed);
}
.attorna-footer-wrapper a:hover, .attorna-copyright-wrapper a:hover {
    color: #ffffff !important;
}
.attorna-widget-title {
    color: var(--text-footer-primary) !important;
    letter-spacing: 1px !important;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
    padding-bottom: 5px;
}

/* Social Media Footer */
.sosyalmedyafooter ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
}
.sosyalmedyafooter ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: var(--text-footer-primary);
    font-size: 18px;
    transition: all 0.3s ease;
}
.sosyalmedyafooter ul li a span {
    display: none;
}
.sosyalmedyafooter ul li a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px var(--color-primary-glow);
}

/* ============================================= */
/* OSGB QUICK LINKS SECTION                      */
/* ============================================= */
.osgb-quick-links-wrapper {
    position: relative;
    margin-top: -60px;
    z-index: 10;
    padding: 0 20px;
}
.osgb-quick-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.quick-link-card {
    text-align: center;
    padding: 20px 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.quick-link-card .ql-icon {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}
.quick-link-card .ql-text {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.4;
}
.quick-link-card:hover {
    background: #fff;
    border-color: rgba(200, 16, 46, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}
.quick-link-card:hover .ql-icon {
    transform: scale(1.15);
}

@media (max-width: 991px) {
    .osgb-quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 767px) {
    .osgb-quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    .osgb-quick-links-wrapper {
        margin-top: -40px;
    }
}
@media (max-width: 480px) {
    .osgb-quick-links-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================= */
/* OSGB ABOUT SECTION                            */
/* ============================================= */
.osgb-about-section {
    padding: 100px 0;
    background: #fff;
}
.osgb-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.osgb-about-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}
.osgb-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}
.osgb-feature-list li {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.osgb-feature-list li i {
    color: var(--color-primary);
    font-size: 20px;
}
.osgb-about-actions {
    display: flex;
    gap: 15px;
}
.osgb-visual-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.osgb-visual-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.osgb-visual-main:hover img {
    transform: scale(1.05);
}
.osgb-experience-box {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--color-primary);
    padding: 30px 40px;
    border-top-right-radius: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}
.osgb-experience-box .exp-num {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}
.osgb-experience-box .exp-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .osgb-about-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================= */
/* OSGB SERVICES SECTION                         */
/* ============================================= */
.osgb-services-section {
    padding: 100px 0;
    background: var(--bg-main);
}
.osgb-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.osgb-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.osgb-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.osgb-service-img {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}
.osgb-service-img img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.osgb-service-card:hover .osgb-service-img img {
    transform: scale(1.1);
}
.osgb-service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(200, 16, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.osgb-service-card:hover .osgb-service-overlay {
    opacity: 1;
}
.osgb-service-overlay a {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 20px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.osgb-service-card:hover .osgb-service-overlay a {
    transform: translateY(0);
}
.osgb-service-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.osgb-service-body h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.3;
}
.osgb-service-body h3 a {
    color: var(--text-primary);
}
.osgb-service-body h3 a:hover {
    color: var(--color-primary);
}
.osgb-service-body p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}
.osgb-service-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.osgb-service-link i {
    transition: transform 0.3s ease;
}
.osgb-service-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .osgb-services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .osgb-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .osgb-services-grid { grid-template-columns: 1fr; }
}

/* ============================================= */
/* OSGB STATS SECTION                            */
/* ============================================= */
.osgb-stats-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}
.osgb-stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(200, 16, 46, 0.8) 100%);
}
.osgb-stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.osgb-stat-item i {
    font-size: 40px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}
.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}
.stat-label {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 991px) {
    .osgb-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
}
@media (max-width: 575px) {
    .osgb-stats-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ============================================= */
/* OSGB BLOG SECTION                             */
/* ============================================= */
.osgb-blog-section {
    padding: 100px 0;
    background: #fff;
}
.osgb-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.osgb-blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.osgb-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.osgb-blog-img {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}
.osgb-blog-img img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.osgb-blog-card:hover .osgb-blog-img img {
    transform: scale(1.05);
}
.osgb-blog-date {
    position: absolute;
    bottom: 0;
    left: 20px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.osgb-blog-date span {
    display: block;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}
.osgb-blog-date small {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 3px;
}
.osgb-blog-content {
    padding: 25px;
}
.osgb-blog-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}
.osgb-blog-content h3 a {
    color: var(--text-primary);
}
.osgb-blog-content h3 a:hover {
    color: var(--color-primary);
}
.osgb-blog-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}
.osgb-blog-readmore {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
.osgb-blog-readmore:hover {
    border-bottom-color: var(--color-primary);
}

@media (max-width: 991px) {
    .osgb-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .osgb-blog-grid { grid-template-columns: 1fr; }
}

/* ============================================= */
/* GLOBAL OSGB CONTAINER                         */
/* ============================================= */
.osgb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ============================================= */
/* INNER PAGES (SERVICE DETAIL)                  */
/* ============================================= */
.osgb-inner-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 50px;
}

@media (max-width: 991px) {
    .osgb-inner-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ============================================= */
/* INNER PAGE HEADERS                            */
/* ============================================= */
.premium-page-header-wrapper {
    padding: 180px 0 80px 0;
    position: relative;
    text-align: center;
}

.premium-page-title {
    color: #ffffff !important;
    font-size: 42px !important;
    font-weight: 800 !important;
    margin: 0 !important;
}

.premium-page-subtitle {
    color: #ffffff !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    margin-bottom: 10px !important;
    display: block !important;
}

/* ============================================= */
/* MOBILE APP DRAWER MENU STYLES (MMENU)         */
/* ============================================= */
.mm-menu {
    background: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
}
.mm-navbar {
    background: #f8fafc !important;
    border-bottom: 1px solid #e2e8f0 !important;
}
.mm-navbar .mm-title {
    color: #1e293b !important;
    font-weight: 700 !important;
}
.mm-listview > li > a, .mm-listview > li > span {
    color: #334155 !important;
    font-weight: 600 !important;
    padding: 16px 20px !important;
    border-bottom: 1px solid #f1f5f9 !important;
    transition: all 0.2s;
}
.mm-listview > li > a:hover {
    color: var(--color-primary) !important;
    background: #fef2f2 !important;
    padding-left: 25px !important;
}
.mm-btn:before, .mm-btn:after {
    border-color: var(--color-primary) !important;
}
.mm-listview > li.current-menu-item > a {
    color: var(--color-primary) !important;
    background: rgba(200, 16, 46, 0.05) !important;
    border-left: 4px solid var(--color-primary) !important;
}
.mm-listview .mm-next:after {
    border-color: #cbd5e1 !important;
}

/* ============================================= */
/* MOBILE APP BOTTOM BAR                         */
/* ============================================= */
.app-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -5px 25px rgba(0,0,0,0.1);
    z-index: 999999;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px !important;
    }
    .app-bottom-bar {
        display: flex !important;
        justify-content: space-around;
        align-items: center;
    }
    .app-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 12px 0 8px 0;
        color: #64748b;
        text-decoration: none !important;
        font-size: 11px;
        font-weight: 600;
        font-family: 'Inter', sans-serif;
        transition: all 0.3s;
    }
    .app-nav-item i {
        font-size: 22px;
        margin-bottom: 5px;
        transition: transform 0.3s;
        color: #64748b;
    }
    .app-nav-item:hover, .app-nav-item:active {
        color: var(--color-primary);
    }
    .app-nav-item:hover i {
        color: var(--color-primary);
        transform: translateY(-2px);
    }
    
    /* Center highlight button */
    .app-nav-center {
        position: relative;
        top: -20px;
        flex: 0 0 70px;
    }
    .app-nav-center .center-btn {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #25D366, #128C7E);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
        border: 4px solid #fff;
        transition: transform 0.3s;
        margin: 0 auto;
    }
    .app-nav-center:hover .center-btn {
        transform: scale(1.05);
    }
    .app-nav-center .center-btn i {
        color: #fff !important;
        font-size: 28px;
        margin: 0;
    }
    .app-nav-center span {
        display: block;
        text-align: center;
        margin-top: 5px;
        color: #64748b;
    }
    
    /* Hide legacy getbutton.io on mobile so it doesn't overlap */
    #gb-widget { display: none !important; }
}

/* Mobile Logo Size & Header Override */
@media (max-width: 768px) {
    .attorna-mobile-header .attorna-logo-inner {
        max-width: 210px !important;
    }
    .attorna-mobile-header .attorna-logo-inner img {
        max-height: 70px !important;
        height: auto !important;
    }
}
