/* ============================================
   CSS Variables & Reset
   ============================================ */

:root {
    /* Colors */
    --primary-color: #1a2332;
    --secondary-color: #c9a961;
    --accent-color: #d4af6a;
    --bg-color: #f5f5f5;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

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

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

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

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
}

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

/* ============================================
   Container & Utilities
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    margin: var(--spacing-sm) auto var(--spacing-md);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-medium);
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

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

/* Special styling for buttons on dark backgrounds (like hero) */
.hero .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

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

/* ============================================
   Header / Navigation
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow-light);
    z-index: 1000;
    transition: var(--transition-medium);
}

.header.scrolled {
    box-shadow: 0 4px 20px var(--shadow-medium);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem var(--spacing-md);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.nav-logo:hover {
    opacity: 0.9;
}

.logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin: -15px 0;
}

.logo-img:hover {
    transform: scale(1.02);
}

.nav-list {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-color);
    background-color: rgba(201, 169, 97, 0.1);
}

.nav-link.active {
    font-weight: 600;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ============================================
   Dropdown Menu Styles
   ============================================ */

.dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 0.75rem;
    margin-left: 0.25rem;
    transition: var(--transition-fast);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 240px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    border-radius: var(--radius-md);
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-medium);
    z-index: 1000;
    margin-top: 0.5rem;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

.dropdown-link i {
    font-size: 1rem;
    color: var(--secondary-color);
    transition: var(--transition-fast);
}

.dropdown-link:hover {
    background-color: rgba(201, 169, 97, 0.1);
    border-left-color: var(--secondary-color);
    color: var(--secondary-color);
}

.dropdown-link:hover i {
    transform: scale(1.1);
}

.dropdown-link.active {
    background-color: rgba(201, 169, 97, 0.15);
    border-left-color: var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 600;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a3d54 100%);
    background-image: 
        linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(42, 61, 84, 0.95) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a2332" width="1200" height="600"/><path fill="%23c9a961" fill-opacity="0.05" d="M0 299L50 299L50 299L100 299L100 299L150 299L150 299L200 299L200 299L250 299L250 299L300 299L300 299L350 299L350 299L400 299L400 299L450 299L450 299L500 299L500 299L550 299L550 299L600 299L600 299L650 299L650 299L700 299L700 299L750 299L750 299L800 299L800 299L850 299L850 299L900 299L900 299L950 299L950 299L1000 299L1000 299L1050 299L1050 299L1100 299L1100 299L1150 299L1150 299L1200 299L1200 600L1150 600L1150 600L1100 600L1100 600L1050 600L1050 600L1000 600L1000 600L950 600L950 600L900 600L900 600L850 600L850 600L800 600L800 600L750 600L750 600L700 600L700 600L650 600L650 600L600 600L600 600L550 600L550 600L500 600L500 600L450 600L450 600L400 600L400 600L350 600L350 600L300 600L300 600L250 600L250 600L200 600L200 600L150 600L150 600L100 600L100 600L50 600L50 600L0 600Z"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 81px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: var(--spacing-md);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.scroll-down {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-down a {
    color: var(--white);
    font-size: 2rem;
}

/* ============================================
   About Section
   ============================================ */

.about {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    gap: var(--spacing-xl);
}

.about-text {
    text-align: justify;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.about-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.about-card {
    background: var(--bg-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-medium);
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-light);
    border-color: var(--secondary-color);
}

.about-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.about-card h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.about-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   Services Section
   ============================================ */

.services {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-medium);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition-medium);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-medium);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

.service-description {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.service-btn {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.service-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-card {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-medium);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px var(--shadow-light);
}

.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.contact-details a {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.contact-map iframe {
    display: block;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: var(--spacing-xs);
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.footer-contact i {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin: var(--spacing-xs) 0;
}

/* ============================================
   Scroll to Top Button
   ============================================ */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    box-shadow: 0 5px 20px var(--shadow-medium);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-dark);
}

/* ============================================
   WhatsApp Float Button
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-medium);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.5rem; }
    .hero-description { font-size: 1.1rem; }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }
    
    /* Genel Font Boyutları - Daha Okunabilir */
    h1 { font-size: 2.25rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    h4 { font-size: 1.35rem; }
    
    p {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    /* Metin Hizalama - Sol Hizalı */
    .about-text p,
    .content-block p,
    .service-description,
    .faq-answer p,
    .attorney-info p {
        text-align: left;
    }
    
    /* Container Padding Optimizasyonu */
    .container {
        padding: 0 1.25rem;
    }
    
    /* Navigasyon */
    .nav-menu {
        position: fixed;
        top: 71px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 71px);
        background-color: var(--white);
        flex-direction: column;
        padding: var(--spacing-md);
        transition: var(--transition-medium);
        box-shadow: 0 5px 20px var(--shadow-medium);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 1.25rem;
        border-bottom: 1px solid var(--border-color);
        font-size: 1.05rem;
        min-height: 48px;
    }
    
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    .logo-img {
        height: 80px;
        margin: -8px 0;
    }
    
    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--bg-color);
        border-radius: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-medium);
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 600px;
    }
    
    .dropdown .nav-link {
        border-bottom: none;
    }
    
    .dropdown-link {
        padding: 1rem 1.5rem;
        margin-left: 1rem;
        border-left: 3px solid var(--secondary-color);
        font-size: 1rem;
        min-height: 48px;
    }
    
    .dropdown-icon {
        transition: var(--transition-fast);
        font-size: 0.85rem;
    }
    
    .dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }
    
    /* Hero Section */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: var(--spacing-xl) 0 var(--spacing-lg);
        margin-top: 71px;
    }
    
    .hero-content {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .hero-title { 
        font-size: 2rem; 
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle { 
        font-size: 1.4rem; 
        margin-bottom: 1.25rem;
    }
    
    .hero-description { 
        font-size: 1.1rem; 
        line-height: 1.7;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 2rem;
        font-size: 1.05rem;
    }
    
    /* Page Header */
    .page-header {
        padding: 120px 0 60px;
        margin-top: 71px;
    }
    
    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .breadcrumb {
        font-size: 1rem;
        gap: 0.75rem;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.75rem;
    }
    
    .service-title {
        font-size: 1.35rem;
    }
    
    .service-description {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    /* About Cards */
    .about-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .about-card h4 {
        font-size: 1.25rem;
    }
    
    .about-card p {
        font-size: 1rem;
    }
    
    /* Service Detail */
    .service-content h2 {
        font-size: 1.85rem;
        margin-bottom: 1.5rem;
    }
    
    .content-block h3 {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }
    
    .content-block p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
    
    .service-list li {
        font-size: 1.05rem;
        padding: 1rem 0;
    }
    
    /* CTA Box */
    .cta-box {
        padding: 2rem 1.5rem;
        margin-top: 2.5rem;
    }
    
    .cta-box h3 {
        font-size: 1.65rem;
        margin-bottom: 1rem;
    }
    
    .cta-box p {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }
    
    /* Contact Section */
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-details h4 {
        font-size: 1.25rem;
    }
    
    .contact-details p {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .contact-map iframe {
        height: 350px;
    }
    
    /* Power of Attorney */
    .power-of-attorney {
        padding: 2rem 1.5rem;
    }
    
    .power-of-attorney h3 {
        font-size: 1.75rem;
    }
    
    .attorney-details li,
    .attorney-notes li {
        font-size: 1.05rem;
        line-height: 1.7;
        padding: 0.75rem 0 0.75rem 1.75rem;
    }
    
    /* Lawyer Info */
    .lawyer-info {
        padding: 2rem 1.5rem;
    }
    
    .lawyer-info h3 {
        font-size: 1.75rem;
    }
    
    .lawyer-details p {
        font-size: 1.05rem;
    }
    
    /* FAQ */
    .faq-intro p {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .category-title {
        font-size: 1.65rem;
        padding-bottom: 12px;
        margin-bottom: 1.5rem;
    }
    
    .category-title i {
        font-size: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.05rem;
        padding: 1.25rem 1.25rem;
        line-height: 1.5;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
    
    .faq-answer p {
        font-size: 1.05rem;
        line-height: 1.8;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section h4 {
        font-size: 1.35rem;
    }
    
    .footer-section p {
        font-size: 1rem;
    }
    
    /* Float Buttons */
    .whatsapp-float,
    .scroll-top {
        right: 15px;
    }
    
    .whatsapp-float {
        bottom: 85px;
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
    
    .scroll-top {
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    /* Extra Small Devices - iPhone SE vb. */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.85rem; }
    h3 { font-size: 1.6rem; }
    h4 { font-size: 1.3rem; }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Hero Section */
    .hero-title { 
        font-size: 1.85rem; 
        line-height: 1.3;
    }
    
    .hero-subtitle { 
        font-size: 1.3rem; 
    }
    
    .hero-description { 
        font-size: 1.05rem; 
    }
    
    /* Page Header */
    .page-header {
        padding: 110px 0 50px;
    }
    
    .page-header h1 {
        font-size: 1.85rem;
    }
    
    .breadcrumb {
        font-size: 0.95rem;
    }
    
    /* Service Cards */
    .service-card {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.75rem;
    }
    
    /* Content Blocks */
    .service-content h2 {
        font-size: 1.75rem;
    }
    
    .content-block h3 {
        font-size: 1.5rem;
    }
    
    .service-icon-large {
        width: 90px;
        height: 90px;
    }
    
    .service-icon-large i {
        font-size: 2.5rem;
    }
    
    /* Contact Cards */
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .contact-icon {
        margin: 0 auto 1rem;
    }
    
    .contact-map iframe {
        height: 300px;
    }
    
    /* CTA Box */
    .cta-box {
        padding: 1.75rem 1.25rem;
    }
    
    .cta-box h3 {
        font-size: 1.55rem;
    }
    
    /* FAQ */
    .category-title {
        font-size: 1.5rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.1rem 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    /* Power of Attorney & Lawyer Info */
    .power-of-attorney,
    .lawyer-info {
        padding: 1.75rem 1.25rem;
    }
    
    .power-of-attorney h3,
    .lawyer-info h3 {
        font-size: 1.65rem;
    }
    
    /* Float Buttons - Smaller on very small screens */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.65rem;
        bottom: 80px;
    }
    
    .scroll-top {
        width: 46px;
        height: 46px;
        font-size: 1.05rem;
    }
    
    /* Navigation */
    .logo-img {
        height: 75px;
    }
    
    .nav-link {
        padding: 0.9rem 1rem;
        font-size: 1rem;
    }
    
    .dropdown-link {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
    .header,
    .nav-toggle,
    .scroll-top,
    .whatsapp-float,
    .hero-buttons,
    .scroll-down {
        display: none !important;
    }
    
    .hero {
        margin-top: 0;
        height: auto;
        padding: var(--spacing-md) 0;
    }
    
    body {
        background-color: var(--white);
    }
}

/* ============================================
   New Page Styles
   ============================================ */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), #2a3d54);
    padding: 140px 0 80px;
    text-align: center;
    color: white;
    margin-top: 81px;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    align-items: center;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* About Page */
.about-page {
    padding: 80px 0;
    background: white;
}

.lawyer-info {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-color);
    border-radius: 12px;
}

.lawyer-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.lawyer-details p {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

/* Service Detail Page */
.service-detail {
    padding: 80px 0;
    background: white;
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.service-icon-large i {
    font-size: 3rem;
    color: white;
}

.service-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.content-block p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-align: justify;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-light);
}

.service-list li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.cta-box {
    background: var(--bg-color);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
    border: 2px solid var(--secondary-color);
}

.cta-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Services Preview on Home */
.services-preview {
    padding: 80px 0;
    background: var(--bg-color);
}

.view-all-services {
    text-align: center;
    margin-top: 3rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 500;
    transition: all 0.3s;
    margin-top: 1rem;
}

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

.service-link i {
    font-size: 0.9rem;
}

/* Contact Page Extras */
.power-of-attorney {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-color);
    border-radius: 12px;
}

.power-of-attorney h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.attorney-info p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

.attorney-details, .attorney-notes {
    margin-top: 2rem;
}

.attorney-details h4, .attorney-notes h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.attorney-details ul, .attorney-notes ul {
    list-style: none;
    padding-left: 0;
}

.attorney-details ul li, .attorney-notes ul li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

.attorney-details ul li::before, .attorney-notes ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* FAQ Page Styles */
.faq-page {
    padding: 80px 0;
    background: white;
}

.faq-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.faq-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.faq-categories {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition-medium);
}

.faq-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px var(--shadow-light);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    font-size: 1rem;
    color: var(--secondary-color);
    transition: transform var(--transition-medium);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    padding-top: 5px;
}

/* Responsive adjustments for new pages - ENHANCED */
@media (max-width: 768px) {
    /* These rules are now consolidated in the main @media (max-width: 768px) section above */
}

@media (max-width: 375px) {
    /* iPhone SE and smaller devices */
    .container {
        padding: 0 0.875rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons .btn {
        max-width: 100%;
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 0.875rem;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
}

