/* ===========================
   GLOBAL STYLES
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1F4788;
    --secondary-color: #cca148;
    --accent-color: #3498DB;
    --text-color: #2C3E50;
    --light-text: #555555;
    --light-bg: #ECF0F1;
    --white: #ffffff;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --success-color: #27AE60;
    --error-color: #E74C3C;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   NAVIGATION BAR
   =========================== */

.navbar {
    background: linear-gradient(135deg, rgb(255 255 255 / 30%) 0%, #2E5FA3 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    display: inline-block;
    padding: 5px 10px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

/* Dropdown menu for Services */
.nav-item {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background: linear-gradient(180deg, rgb(255 255 255), rgb(255 255 255 / 39%));
    padding: 0.5rem 0;
    border-radius: 8px;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    z-index: 1200;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-link {
    display: block;
    padding: 0.6rem 1rem;
    color: #000;
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-link:hover,
.dropdown-link:focus {
    background: rgba(255,255,255,0.03);
    color: var(--secondary-color);
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
    display: block;
}

/* Service detail layout */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}

.service-main ul {
    list-style: disc;
    margin-left: 1.2rem;
}

.service-aside .card {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Service hero */
.service-hero {
    color: var(--white);
    padding: 4.5rem 0;
}

.service-hero-inner {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.service-hero-text h1 { font-size: 2.4rem; margin-bottom: 0.5rem; }
.service-hero-text .lead { color: rgba(255,255,255,0.95); margin-bottom: 1rem; }

.service-hero-image img {
    width: 320px;
    max-width: 40%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.service-content .key-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.area-item {
    background: rgba(0,0,0,0.03);
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.area-item i { color: var(--secondary-color); }

@media (max-width: 900px) {
    .service-hero-inner { flex-direction: column; text-align: center; }
    .service-hero-image img { max-width: 80%; }
    .service-grid { grid-template-columns: 1fr; }
}

/* Process / Cases / Testimonials / FAQs */
.process-steps { display: grid; gap: 0.6rem; margin-top: 0.5rem; }
.process-step { display:flex; gap:0.8rem; align-items:flex-start; background: rgba(0,0,0,0.03); padding:0.6rem; border-radius:6px; }
.step-num { background: var(--secondary-color); color: #fff; width:34px; height:34px; display:flex; align-items:center; justify-content:center; border-radius:50%; font-weight:700; }
.cases-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:0.8rem; margin-top:0.6rem; }
.case-card { background: var(--white); padding:0.8rem; border-radius:8px; box-shadow: var(--shadow); }
.case-card img { width:100%; height:120px; object-fit:cover; border-radius:6px; margin-bottom:0.5rem; }
.testimonial { background: rgba(0,0,0,0.03); padding:0.8rem; border-radius:8px; margin-bottom:0.6rem; }
.testimonial blockquote { margin:0 0 0.5rem 0; font-style:italic; color: #222; }
.testimonial-name { font-weight:700; color: var(--primary-color); }
.service-faqs { margin-top:0.6rem; }
.service-faqs .faq-item { background: var(--white); padding:0.8rem; border-radius:8px; box-shadow: var(--shadow); margin-bottom:0.6rem; }
.service-faqs .faq-q { margin:0 0 0.4rem 0; color: var(--primary-color); font-size:1rem; }
.service-faqs .faq-a { color: var(--light-text); line-height:1.6; }

/* legacy sticky-contact removed — keeping mini buttons only */

/* Mini fixed contact buttons */
.sticky-mini {
    position: fixed;
    right: 20px;
    bottom: 100px; /* place above main widget */
    z-index: 1600;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.mini-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
    transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.mini-btn:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,0.22); }

.call-mini { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.wa-mini   { background: linear-gradient(135deg, #25D366, #128C7E); }

@media (max-width: 480px) {
    .sticky-mini { display: none; }
}

.related-services {
    list-style: none;
    padding-left: 0;
}

/* Gallery */
.gallery { padding: 3rem 0; }
.gallery .section-header p { color: var(--light-text); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: stretch;
}

@media (max-width: 1100px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-thumb {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 24px rgba(21, 34, 58, 0.08);
    transition: transform 260ms cubic-bezier(.2,.9,.2,1), box-shadow 220ms ease;
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 360ms ease, filter 260ms ease;
}
.gallery-thumb:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(21,34,58,0.18); }
.gallery-thumb:hover img { transform: scale(1.06); filter: brightness(0.92); }

/* Caption overlay */
.gallery-thumb::after {
    content: attr(data-caption);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 14px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 240ms ease, transform 240ms ease;
    display: flex;
    align-items: center;
}
.gallery-thumb:hover::after { opacity: 1; transform: translateY(0); }

/* Magnify icon */
.gallery-thumb::before {
    content: '\f002'; /* FontAwesome search icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 12px;
    bottom: 12px;
    color: rgba(255,255,255,0.95);
    font-size: 1rem;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 220ms ease, transform 220ms ease;
}
.gallery-thumb:hover::before { opacity: 1; transform: scale(1); }

/* Lightbox overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}
.lightbox-overlay.active { display: flex; }
.lightbox-image { max-width: 92%; max-height: 92%; border-radius: 6px; box-shadow: 0 18px 50px rgba(0,0,0,0.6); }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
    background: rgba(0,0,0,0.4);
    border: none;
    font-size: 1.6rem;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
}

@media (max-width: 600px) {
    .gallery-thumb img { height: 110px; }
}

.related-services li {
    margin-bottom: 0.6rem;
}

.related-services a { text-decoration: none; color: var(--primary-color); }
.related-services a.active { font-weight: 700; color: var(--secondary-color); }

@media (max-width: 900px) {
    .service-grid { grid-template-columns: 1fr; }
    .dropdown-menu { position: static; box-shadow: none; }
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 3px;
}

/* ===========================
   PAGE HEADER
   =========================== */

.page-header {
    background: linear-gradient(135deg, #1F4788 0%, #2E5FA3 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    background: linear-gradient(135deg, #000000 0%, #2E5FA3 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="%231F4788"/><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
    background-attachment: fixed;
    min-height: 60vh;
    padding: 6rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: var(--white);
}

.hero-highlights {
    margin-top: 14px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-highlights span {
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgb(27 26 26) 0%, #000000 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

/* ===========================
   ABOUT DETAILS
   =========================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.about-column h2 {
    color: var(--primary-color);
    margin-bottom: 0.6rem;
}

.professional-image {
    margin-top: 1rem;
}

.professional-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
}

/* ===========================
   PRACTICE DETAILS CARDS
   =========================== */

.practice-details .container {
    display: grid;
    gap: 2.5rem;
}

.practice-item-detailed {
    background: var(--white);
    color: var(--text-color);
    border-left: 4px solid rgba(31,71,136,0.08);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: block;
}

.practice-item-detailed.alternate {
    background: #fbfbfb;
}

.practice-content {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.2rem;
    align-items: start;
}

.practice-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(31,71,136,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.practice-thumb {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.practice-item-detailed h2 {
    margin: 0 0 0.4rem 0;
    font-size: 1.6rem;
}

.practice-list {
    list-style: none;
    margin: 0.6rem 0 1rem 0;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.5rem 1rem;
}

.practice-list li {
    color: var(--text-color);
    font-size: 0.98rem;
}

.practice-more {
    margin-top: 1rem;
}

.practice-more h4 {
    margin-bottom: 0.4rem;
    color: var(--secondary-color);
}

.btn.btn-outline {
    display: inline-block;
    padding: 0.5rem 0.9rem;
    border: 2px solid rgba(31,71,136,0.12);
    color: var(--primary-color);
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
    background: transparent;
}

.btn.btn-outline:hover {
    background: rgba(31,71,136,0.06);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

@media (min-width: 900px) {
    .practice-details .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .practice-item-detailed .practice-content {
        grid-template-columns: 80px 1fr;
    }
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===========================
   SECTION HEADER
   =========================== */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about {
    padding: 6rem 0;
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.credential-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===========================
   ABOUT DETAILS PAGE
   =========================== */

.about-details {
    padding: 6rem 0;
    background: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-column h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-column p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.approach-item {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.approach-item i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.approach-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.approach-item p {
    margin-bottom: 0;
}

/* ===========================
   QUALIFICATIONS SECTION
   =========================== */

.qualifications {
    padding: 6rem 0;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.qualification-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--secondary-color);
    overflow: hidden;
    position: relative;
}

.qualification-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.qualification-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.qualification-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5aa0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--secondary-color);
}

.qualification-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.qualification-card p {
    color: var(--light-text);
    line-height: 1.8;
}

/* ===========================
   EXPERIENCE SECTION
   =========================== */

.experience {
    padding: 6rem 0;
    background: var(--light-bg);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.experience-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.experience-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.experience-item h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.experience-item p {
    color: var(--light-text);
    line-height: 1.8;
}

/* ===========================
   PRACTICE AREAS SECTION
   =========================== */

.practice-areas {
    padding: 6rem 0;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.practice-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    border-top: 4px solid var(--secondary-color);
    overflow: hidden;
}

.practice-image {
    width: calc(100% + 5rem);
    margin: -2.5rem -2.5rem 1.5rem -2.5rem;
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.practice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.practice-card:hover .practice-image img {
    transform: scale(1.05);
}

.practice-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
}

.practice-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5aa0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.practice-card:hover .practice-icon {
    transform: scale(1.1) rotateZ(10deg);
}

.practice-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.practice-card p {
    color: var(--light-text);
    line-height: 1.8;
}

/* ===========================
   PRACTICE DETAILS PAGE
   =========================== */

.practice-details {
    padding: 6rem 0;
}

.practice-item-detailed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.practice-item-detailed.alternate {
    background: var(--white);
}

.practice-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.practice-icon-large {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5aa0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.practice-item-detailed h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.practice-item-detailed p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.practice-list {
    list-style: none;
}

.practice-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    align-items: center;
}

.practice-list i {
    color: var(--secondary-color);
    font-weight: 700;
}

/* ===========================
   ADDITIONAL SERVICES
   =========================== */

.additional-services {
    padding: 6rem 0;
    background: var(--light-bg);
}

.services-grid-extended {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card-extended {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card-extended:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card-extended i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card-extended h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card-extended p {
    color: var(--light-text);
    line-height: 1.8;
}

/* ===========================
   SERVICES SECTION
   =========================== */

.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #2E5FA3 100%);
    color: var(--white);
}

.services .section-header h2 {
    color: var(--white);
}

.services .section-header p {
    color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: var(--transition);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.service-number {
    font-size: 3rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.service-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* ===========================
   CONTACT CTA SECTION
   =========================== */

.contact-cta {
    position: relative;
    background: linear-gradient(135deg, #0e1012 0%, #2E5FA3 100%);
    background-image: url('../images/banner-2.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffca5d4d 0%, rgba(46, 95, 163, 0.85) 100%)
    /* z-index: 1; */
}

.contact-cta .container {
    position: relative;
    z-index: 2;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===========================
   CONTACT PAGE
   =========================== */

.contact-section {
    padding: 6rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-panel h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info-panel > p {
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
}

.contact-info-item:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5aa0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-details p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 0.3rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--secondary-color);
}

/* Contact Form Panel */

.contact-form-panel h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-form-panel > p {
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-form {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.contact-form button {
    width: 100%;
}

.form-image {
    margin-top: 1.25rem;
    text-align: center;
}

.form-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Alert Messages */

.alert {
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.alert i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert strong {
    display: block;
    margin-bottom: 0.3rem;
}

.alert-success {
    background: rgba(39, 174, 96, 0.1);
    border-left: 4px solid var(--success-color);
    color: var(--success-color);
}

.alert-error {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid var(--error-color);
    color: var(--error-color);
}

/* ===========================
   FAQ SECTION
   =========================== */

.faq-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.faq-item p {
    color: var(--light-text);
    line-height: 1.8;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #141413 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 1.5rem;
    }

    .nav-link::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-33deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(33deg) translate(-5px, -6px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

    .practice-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .practice-content {
        flex-direction: column;
    }

    .practice-icon-large {
        width: 80px;
        height: 80px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h3,
    .practice-card h3,
    .service-item h4,
    .qualification-card h3 {
        font-size: 1.3rem;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .qualifications-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .practice-card,
    .qualification-card,
    .contact-form {
        padding: 1.5rem;
    }

    .stat {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .service-number {
        font-size: 2rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .about-column h2,
    .contact-form-panel h2,
    .contact-info-panel h2 {
        font-size: 1.5rem;
    }

    .practice-item-detailed {
        padding: 1.5rem;
    }

    .approach-item {
        padding: 1rem;
    }
}

/* ===========================
   ANIMATIONS
   =========================== */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.practice-card,
.qualification-card,
.service-item,
.experience-item {
    animation: slideInUp 0.6s ease-out;
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
