@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ==========================================
   DESIGN TOKENS (CSS VARIABLES)
   ========================================== */
:root {
    /* Color Palette */
    --primary: #0f172a;        /* Deep Navy Blue */
    --primary-light: #1e293b;  /* Slate Navy */
    --secondary: #b58d53;      /* Muted Premium Gold */
    --secondary-hover: #cfa76d;/* Lighter gold for hover states */
    --accent: #f59e0b;         /* Warm amber */
    --bg-main: #faf9f6;        /* Warm Creamy White */
    --bg-card: #ffffff;        /* Pure White */
    --text-main: #1e293b;      /* Dark Slate */
    --text-muted: #64748b;     /* Muted Slate Gray */
    --text-light: #f8fafc;     /* Clean Off-white */
    --border-color: #e2e8f0;   /* Light gray borders */
    
    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Lora', serif;
    
    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
    
    /* Transitions & Shadows */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.02);
    --shadow-premium: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* ==========================================
   BASE & RESET STYLES
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.25;
}

/* ==========================================
   LAYOUT COMPONENTS
   ========================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.bg-dark-section {
    background-color: var(--primary);
    color: var(--text-light);
}

.bg-dark-section h2, 
.bg-dark-section h3, 
.bg-dark-section h4 {
    color: var(--text-light);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

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

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .section-padding {
        padding: 4rem 0;
    }
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.main-header {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

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

.logo-img {
    height: 55px;
    width: auto;
}

.logo-text {
    color: var(--text-light);
}

.logo-text .firm-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.logo-text .tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    font-family: var(--font-sans);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--secondary);
}

/* Hamburger menu styles */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - var(--header-height));
        background-color: var(--primary);
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 1.5rem;
        transition: var(--transition-smooth);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .burger-menu.active .burger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .burger-menu.active .burger-bar:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active .burger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.btn-primary:hover {
    background-color: var(--secondary-hover);
    border-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(181, 141, 83, 0.3);
}

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

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

/* ==========================================
   HERO / MAIN SLIDER REDESIGN
   ========================================== */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 72vh;
    max-height: 950px;
    overflow: hidden;
    background-color: var(--primary);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: opacity 0.9s ease, transform 0.9s ease, visibility 0s linear 0.9s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.92) 100%);
    pointer-events: none;
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 6rem 2rem;
    color: var(--text-light);
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--secondary);
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-title {
    font-size: clamp(2.4rem, 4.5vw, 4.5rem);
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: 0.02em;
}

.hero-text {
    font-size: 1.05rem;
    color: rgba(248, 250, 252, 0.85);
    margin-bottom: 2rem;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
}

.hero-slider__arrow {
    position: absolute;
    top: 50%;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background-color: rgba(15, 23, 42, 0.65);
    color: var(--text-light);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 3;
    transform: translateY(-50%);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-slider__arrow:hover,
.hero-slider__arrow:focus {
    background-color: rgba(15, 23, 42, 0.9);
    transform: translateY(-50%) scale(1.05);
}

.hero-slider__prev {
    left: 1.2rem;
}

.hero-slider__next {
    right: 1.2rem;
}

.hero-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.hero-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-slider__dot.active {
    background: var(--secondary);
    transform: scale(1.15);
    border-color: transparent;
}

.hero-slider__dot:focus {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 3px;
}

@media (max-width: 992px) {
    .hero-slide__content {
        padding: 5rem 1.5rem;
    }

    .hero-slider__arrow {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        justify-content: center;
    }

    .hero-slide__content {
        padding: 4rem 1rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-slider__prev {
        left: 0.8rem;
    }

    .hero-slider__next {
        right: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-slide__content {
        padding: 3rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 0.98rem;
    }

    .hero-slider__arrow {
        width: 40px;
        height: 40px;
    }

    .hero-slider__dots {
        bottom: 1.25rem;
    }
}

/* ==========================================
   TYPOGRAPHY & SECTION HEADINGS
   ========================================== */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-wrapper.left-align {
    text-align: left;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

.left-align .section-title::after {
    left: 0;
    transform: none;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    .section-title-wrapper {
        margin-bottom: 2.5rem;
    }
}

/* ==========================================
   CARDS / GENERAL DESIGN
   ========================================== */
.card {
    background-color: var(--bg-card);
    border-radius: 4px;
    padding:0;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(181, 141, 83, 0.4);
}

/* ==========================================
   SERVICES SECTIONS / LISTS
   ========================================== */
.service-icon-box {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-list {
    margin-top: 1rem;
}

.service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.service-list-item i {
    color: var(--secondary);
    margin-top: 0.25rem;
}

/* ==========================================
   ABOUT PAGE & DETAILS
   ========================================== */
.about-image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.6));
}

.about-highlight-box {
    border-left: 4px solid var(--secondary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-muted);
    font-family: var(--font-serif);
}

.checklist-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.checklist-item i {
    color: var(--secondary);
    font-size: 1.2rem;
}

@media (max-width: 576px) {
    .checklist-modern {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   OUR TEAM PAGE
   ========================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.team-card {
    background-color: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(181, 141, 83, 0.3);
}

.team-img-container {
    position: relative;
    height: 360px;
    background-color: var(--primary);
    overflow: hidden;
}

.team-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--secondary);
}

.team-img-placeholder i {
    font-size: 5rem;
    opacity: 0.3;
}

.team-img-container img {
    width: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .team-img-container img {
    transform: scale(1.05);
}

.team-info {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-name {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.team-role {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.team-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ==========================================
   BIO DETAILS PAGE
   ========================================== */
.bio-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
}

.bio-sidebar {
    position: sticky;
    top: 120px;
}

.bio-card-sticky {
    background-color: var(--bg-card);
    border-radius: 4px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
}

.bio-photo-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--secondary);
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bio-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-photo-container i {
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.4;
}

.bio-contact-list {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.bio-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.bio-contact-item i {
    color: var(--secondary);
    width: 20px;
}

.bio-details-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.bio-details-role {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.bio-text-rich p {
    margin-bottom: 1.5rem;
    color: var(--text-main);
    font-size: 1.05rem;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .bio-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .bio-sidebar {
        position: static;
    }
    .bio-card-sticky {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ==========================================
   RESOURCES PAGE
   ========================================== */
.resource-category {
    margin-bottom: 3rem;
}

.resource-category-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.resource-link-card {
    background-color: var(--bg-card);
    border-radius: 4px;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.resource-link-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.resource-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.resource-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    width: 30px;
    text-align: center;
}

.resource-name {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
}

.resource-arrow {
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.resource-link-card:hover .resource-arrow {
    color: var(--secondary);
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .resource-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   CONTACT PAGE & APPOINTMENT
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(181, 141, 83, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-details h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.contact-info-details p,
.contact-info-details a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-info-details a:hover {
    color: var(--secondary);
}

.contact-form-wrapper {
    background-color: var(--bg-card);
    border-radius: 4px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-form-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.form-group-modern {
    margin-bottom: 1.5rem;
}

.form-label-modern {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.form-control-modern {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-main);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--secondary);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(181, 141, 83, 0.15);
}

textarea.form-control-modern {
    resize: vertical;
}

.submit-btn-wrapper {
    margin-top: 2rem;
}

.form-response-msg {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: none;
}

.form-response-msg.success {
    color: #10b981;
}

.form-response-msg.error {
    color: #ef4444;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-form-wrapper {
        padding: 2rem;
    }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer-main {
    background-color: var(--primary);
    color: rgba(248, 250, 252, 0.75);
    padding: 5rem 0 2rem;
    font-size: 0.9rem;
    border-top: 4px solid var(--secondary);
}

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

.footer-widget-title {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-about-text {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: rgba(248, 250, 252, 0.75);
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--secondary);
    transform: translateX(3px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact-item i {
    color: var(--secondary);
    margin-top: 0.25rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(248, 250, 252, 0.5);
}

.footer-bottom-developer a {
    color: rgba(248, 250, 252, 0.6);
    font-weight: 600;
}

.footer-bottom-developer a:hover {
    color: var(--secondary);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    z-index: 99;
}

.scroll-to-top:hover {
    background-color: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
}

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

/* ==========================================
   KEYFRAME ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}





.mt20{margin-top:20px;}
.section-title-wrapper .h3{ font-size:22px;}



.section-padding-b1 {
  padding-bottom: 1rem ;
}

.card-body{padding:2rem;}


.about-us .card,
.home .card{padding:2.5rem !important;}
