/* ========================================
   Beldanga College of Pharmacy
   Royal Pharmacy Aesthetic
   ======================================== */

:root {
    --primary: #1a4b3c;
    --primary-dark: #0f3328;
    --primary-light: #2d6b56;
    --secondary: #c9a86c;
    --secondary-dark: #b38f4f;
    --secondary-light: #d8bf8a;
    --accent: #b8860b;
    --dark: #1e2a2a;
    --light: #f9f6f0;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
    
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-xxl: 40px;
}

/* ===== RESET & GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    transition: var(--transition);
    color: var(--primary);
}

a:hover {
    color: var(--secondary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--primary-light);
    margin-bottom: 3rem;
    font-weight: 400;
    font-family: var(--font-body);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    .section-subtitle {
        font-size: 1.1rem;
    }
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--secondary);
}

.top-bar i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.navbar-brand .tagline {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--dark);
    padding: 0.5rem 1rem !important;
    position: relative;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link.active {
    color: var(--primary);
}

.btn-enquiry {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-enquiry:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== FLOATING ACTIONS ===== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-call,
.floating-whatsapp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-call {
    background: var(--primary);
}

.floating-whatsapp {
    background: #25d366;
}

.floating-call:hover,
.floating-whatsapp:hover {
    transform: scale(1.1);
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 75, 60, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(26, 75, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(26, 75, 60, 0);
    }
}

.floating-whatsapp {
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
}

.hero-slider .slider-item {
    position: relative;
    height: 80vh;
    min-height: 600px;
    max-height: 800px;
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    outline: none;
}

.hero-slider .slider-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 75, 60, 0.85) 0%, rgba(15, 51, 40, 0.8) 100%);
    z-index: 1;
}

.hero-slider .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    margin: 0 auto;
}

.hero-slider .hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 1.1;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
}

.hero-slider .hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary);
    display: inline-block;
    padding: 0.5rem 2rem;
    background: rgba(0,0,0,0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--secondary);
    backdrop-filter: blur(5px);
}

.hero-slider .hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin: 1.5rem auto;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    line-height: 1.8;
}

.hero-slider .btn-hero {
    display: inline-block;
    background: linear-gradient(45deg, var(--secondary), var(--secondary-dark));
    border: none;
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--white);
    box-shadow: 0 5px 20px rgba(201, 168, 108, 0.4);
}

.hero-slider .btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 168, 108, 0.6);
    color: var(--primary-dark);
}

/* ===== NOTICE BOARD ===== */
.notice-section {
    background: linear-gradient(135deg, #f8f9fa, var(--light));
    padding: 4rem 0;
    border-bottom: 3px solid var(--secondary);
}

.notice-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 5px solid var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.notice-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.notice-card.high-priority {
    border-left-color: var(--secondary);
    background: linear-gradient(45deg, var(--white), #fff9e6);
}

.notice-card.high-priority::before {
    content: '📢';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2.5rem;
    opacity: 0.15;
}

.notice-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    padding-right: 40px;
}

.notice-content {
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.notice-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray);
    border-top: 1px dashed var(--light-gray);
    padding-top: 1rem;
    margin-top: 1rem;
}

.notice-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.notice-link:hover {
    gap: 1rem;
    color: var(--secondary);
}

.notice-image {
    max-width: 100%;
    max-height: 200px;
    border-radius: var(--border-radius-md);
    margin: 1rem 0;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--secondary);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
}

.mission-box,
.vision-box {
    background: linear-gradient(135deg, #f8f9fa, var(--light));
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 4rem 0;
}

.stat-item {
    padding: 1.5rem;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item i {
    font-size: 3rem;
    color: var(--secondary);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-item p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: rgba(255,255,255,0.9);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: var(--light);
    padding: 5rem 0;
}

.gallery-filter {
    margin-bottom: 2rem;
}

.gallery-filter .nav-pills .nav-link {
    color: var(--primary);
    background: var(--white);
    margin: 0.25rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.gallery-filter .nav-pills .nav-link.active {
    background: var(--primary);
    color: var(--white);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    height: 250px;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 75, 60, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--white);
}

/* ===== FACULTY SECTION ===== */
.faculty-section {
    padding: 5rem 0;
    background: var(--white);
}

.faculty-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(26, 75, 60, 0.1);
    height: 100%;
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.faculty-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    transition: var(--transition);
}

.faculty-card:hover .faculty-image {
    border-color: var(--secondary);
}

.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.faculty-designation {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.faculty-qualification {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.faculty-social {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.faculty-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.faculty-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== INFRASTRUCTURE SECTION ===== */
.infrastructure-section {
    padding: 5rem 0;
    background: var(--light);
}

.infra-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    border: 1px solid rgba(26, 75, 60, 0.1);
}

.infra-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.infra-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition);
}

.infra-card:hover .infra-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.infra-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

/* ===== ACHIEVEMENTS SECTION ===== */
.achievements-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 5rem 0;
}

.achievement-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
}

.achievement-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.achievement-card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.achievement-card h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.achievement-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

.achievement-date {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== TOP PICKS SECTION ===== */
.top-picks-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light), var(--white));
}

.top-picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.top-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    height: 100%;
}

.top-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.top-card i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.top-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.top-card p {
    color: var(--gray);
    font-size: 1rem;
}

/* ===== D.PHARM SHOWCASE ===== */
.dpharm-showcase {
    background: linear-gradient(135deg, var(--white), var(--light));
    border-radius: var(--border-radius-xxl);
    padding: 4rem;
    margin: 3rem 0;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.dpharm-showcase::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--secondary);
    opacity: 0.1;
    border-radius: 50%;
}

.dpharm-showcase::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
}

.dpharm-badge {
    background: var(--primary);
    color: var(--white);
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    margin: 0 0.5rem 0.5rem 0;
    font-weight: 600;
    border: 1px solid var(--secondary);
}

.dpharm-list {
    list-style: none;
    padding: 0;
}

.dpharm-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.dpharm-list i {
    color: var(--secondary);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 5rem 0;
    color: var(--white);
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    position: relative;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 6rem;
    color: var(--secondary);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.student-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary);
    margin-bottom: 1.5rem;
}

.student-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.student-batch {
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.testimonial-message {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
}

/* ===== ALUMNI SECTION ===== */
.alumni-section {
    padding: 5rem 0;
    background: var(--white);
}

.alumni-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius-xl);
    transition: var(--transition);
    background: linear-gradient(135deg, var(--light), var(--white));
    border: 2px solid transparent;
    height: 100%;
}

.alumni-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.alumni-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
    margin-bottom: 1.5rem;
}

.alumni-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.alumni-batch {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.alumni-position {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.alumni-company {
    font-weight: 600;
    color: var(--primary);
}

/* ===== SPONSOR SECTION ===== */
.sponsor-section {
    padding: 4rem 0;
    background: var(--white);
    border-top: 1px solid rgba(26, 75, 60, 0.1);
    border-bottom: 1px solid rgba(26, 75, 60, 0.1);
}

.sponsor-slider .sponsor-item {
    padding: 2rem 1rem;
    text-align: center;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    margin: 0 15px;
    transition: var(--transition);
    border: 1px solid rgba(26, 75, 60, 0.1);
}

.sponsor-slider .sponsor-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.sponsor-slider img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.sponsor-title {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

/* ===== IMPORTANT LINKS ===== */
.links-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light), var(--white));
}

.link-category {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 2rem 0 1.5rem;
    border-bottom: 3px solid var(--secondary);
    padding-bottom: 0.5rem;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--white);
    border-radius: var(--border-radius-md);
    margin-bottom: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(26, 75, 60, 0.1);
}

.link-item:hover {
    transform: translateX(10px);
    background: var(--primary);
    border-color: var(--secondary);
}

.link-item:hover a {
    color: var(--white);
}

.link-item:hover i {
    color: var(--secondary);
}

.link-item i {
    width: 30px;
    color: var(--primary);
    font-size: 1.3rem;
    transition: color 0.3s;
}

.link-item a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    flex: 1;
    transition: color 0.3s;
}

/* ===== PROFILE SLIDERS ===== */
.profile-section {
    padding: 4rem 0;
    background: var(--light);
}

.profile-slider-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0.3rem 2rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--light-gray);
}

.profile-slider-container::-webkit-scrollbar {
    height: 8px;
}

.profile-slider-container::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 20px;
}

.profile-slider-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 20px;
}

.profile-card {
    flex: 0 0 300px;
    background: var(--white);
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem 1.5rem 2rem;
    box-shadow: var(--shadow-md);
    scroll-snap-align: start;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.9);
    transition: var(--transition);
}

.profile-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
}

.profile-card .profile-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--secondary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--shadow-md);
}

.profile-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.profile-card .profile-title {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.profile-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-card {
    background: linear-gradient(135deg, var(--white), var(--light));
    border-radius: var(--border-radius-xxl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--secondary);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.contact-info-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
}

.contact-info-text p {
    margin-bottom: 0;
    color: var(--gray);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(26, 75, 60, 0.25);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.map-container {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 300px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    position: relative;
}

.footer-main {
    padding: 4rem 0 3rem;
}

.footer-widget h4 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--secondary);
    padding-left: 1rem;
}

.footer-text {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-contact p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--secondary);
    width: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-links i {
    font-size: 0.8rem;
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--secondary);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.newsletter-form .input-group {
    border-radius: 30px;
    overflow: hidden;
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 0.75rem 1rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.btn-subscribe {
    background: var(--secondary);
    color: var(--primary-dark);
    border: none;
    padding: 0 1.25rem;
    font-weight: 600;
}

.btn-subscribe:hover {
    background: var(--secondary-dark);
    color: var(--primary-dark);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright,
.developer {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.developer a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.developer a:hover {
    color: var(--secondary-light);
    text-decoration: underline;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-dark);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 3rem 0;
    text-align: center;
    color: var(--white);
}

.breadcrumb-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.breadcrumb-nav {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-nav .breadcrumb {
    justify-content: center;
}

.breadcrumb-nav .breadcrumb-item {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-nav .breadcrumb-item a {
    color: var(--secondary);
    text-decoration: none;
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-nav .breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* ===== PAGINATION ===== */
.pagination {
    justify-content: center;
    margin-top: 3rem;
}

.page-link {
    color: var(--primary);
    border: 2px solid var(--light-gray);
    margin: 0 0.25rem;
    border-radius: var(--border-radius-sm);
}

.page-link:hover {
    color: var(--secondary-dark);
    border-color: var(--secondary);
}

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
}

/* ===== LOADING SPINNER ===== */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(26, 75, 60, 0.1);
    border-left-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-slider .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .header-actions {
        margin-top: 1rem;
        text-align: center;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 1rem;
    }
    
    .experience-badge .years {
        font-size: 1.8rem;
    }
    
    .experience-badge .text {
        font-size: 0.7rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .dpharm-showcase {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-slider {
        height: 60vh;
        min-height: 500px;
    }
    
    .hero-slider .slider-item {
        height: 60vh;
        min-height: 500px;
    }
    
    .hero-slider .hero-title {
        font-size: 3rem;
    }
    
    .hero-slider .hero-subtitle {
        font-size: 1.5rem;
        padding: 0.3rem 1rem;
    }
    
    .hero-slider .btn-hero {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .notice-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .gallery-image-wrapper {
        height: 200px;
    }
    
    .profile-card {
        flex: 0 0 260px;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .footer-widget {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-slider .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-slider .hero-description {
        font-size: 1rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    .top-picks-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-card {
        flex: 0 0 240px;
    }
    
    .breadcrumb-title {
        font-size: 2rem;
    }
    
    .floating-actions {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-call,
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}