/* 
 * PhotoStudio - Main Stylesheet
 * This file contains all styles for the PhotoStudio website
 */

/* ====== Base Variables and Settings ====== */
:root {
    --primary-color: #10344C; /* Prussian Blue */
    --secondary-color: #476173; /* Payne's Gray */
    --accent-color: #EC7F00; /* Tangerine */
    --background-light: #E8ECEF; /* Antiflash White */
    --text-dark: #13344B; /* Prussian Blue 2 */
    --text-light: #476173; /* Payne's Gray */
    --white: #ffffff;
    --primary-dark: #2952cc;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-light);
    padding-top: 84px; /* Default for all pages, creates space for fixed nav */
    transition: padding-top 0.3s ease;
}
body.is-homepage {
    padding-top: 0; /* Homepage hero starts at the very top */
}

body.scrolled {
    padding-top: 76px; /* Add padding when navbar becomes fixed */
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: var(--text-dark);
}

/* --- Body Padding --- */
body {
    padding-top: 84px; /* Creates space for the fixed nav on all pages */
}
body.is-homepage {
    padding-top: 0; /* Homepage hero starts at the top, no padding needed */
}

/* ====== Default Solid Navbar (for all pages except homepage) ====== */
.navbar-default {
    background-color: var(--white) !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}
.navbar-default .logo-white { display: none; }
.navbar-default .logo-dark { display: inline-block; }
.navbar-default .brand-text { color: var(--text-dark); }
.navbar-default .navbar-nav .nav-link { color: var(--text-dark); }
.navbar-default .btn-book-now {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}
.navbar-default .btn-book-now:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}
.navbar-default .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* ====== Homepage Navbar (Transparent on top, solid on scroll) ====== */
/* --- Initial Transparent State --- */
.navbar-homepage {
    background-color: transparent;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.navbar-homepage .logo-white { display: inline-block; }
.navbar-homepage .logo-dark { display: none; }
.navbar-homepage .brand-text { color: var(--white); }
.navbar-homepage .navbar-nav .nav-link { color: var(--white); opacity: 0.85; }
.navbar-homepage .navbar-nav .nav-link:hover,
.navbar-homepage .navbar-nav .nav-link.active { opacity: 1; }
.navbar-homepage .btn-book-now {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}
.navbar-homepage .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* --- Scrolled State (becomes solid white) --- */
.navbar-homepage.scrolled {
    background-color: var(--white) !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}
.navbar-homepage.scrolled .logo-white { display: none; }
.navbar-homepage.scrolled .logo-dark { display: inline-block; }
.navbar-homepage.scrolled .brand-text { color: var(--text-dark); }
.navbar-homepage.scrolled .navbar-nav .nav-link { color: var(--text-dark); opacity: 1; }
.navbar-homepage.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ====== Navigation ====== */
.navbar {
    transition: all 0.3s ease;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar.headless {
    transform: translateY(-100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar.visible {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 600;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    font-size: 1.5rem;
    margin-right: 8px;
    color: var(--primary-color);
}

/* ====== Buttons ====== */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #EC7F00; /* Tangerine on hover */
    border-color: #EC7F00;
    color: var(--white);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

.btn-accent:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.badge.bg-primary {
    background-color: var(--primary-color) !important;
}

.badge.bg-opacity-10 {
    background-color: rgba(16, 52, 76, 0.1) !important;
}

/* ====== Footer ====== */
.footer {
    background-color: var(--light-bg);
}

.social-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #6c757d;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--primary-color);
}

/* ====== Hero Section ====== */
.hero-slide {
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* ====== About Section ====== */
.about-img {
    width: 100%;
    max-width: 450px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid rgba(16, 52, 76, 0.1);
}

.about-img:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
    border-color: rgba(16, 52, 76, 0.2);
}

/* ====== About Page Approach Cards ====== */
.approach-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.approach-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.approach-card:hover .approach-icon {
    transform: scale(1.1);
}

/* ====== New Approach Cards for About Page ====== */
.approach-card-new {
    transition: all 0.3s ease;
    border-radius: 20px !important;
    overflow: hidden;
}

.approach-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

.approach-icon-new {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(16, 52, 76, 0.3);
}

.approach-card-new:hover .approach-icon-new {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(16, 52, 76, 0.4);
}

/* ====== Services Section ====== */
.service-card {
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ====== New Service Cards ====== */
.service-card-primary {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-card-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.service-icon-primary {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.service-content {
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
    font-size: 0.95rem;
}

.service-item:hover {
    background: #e9ecef;
}

.service-card-secondary {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-card-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.service-icon-secondary {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.service-card-secondary:hover .service-icon-secondary {
    transform: scale(1.1);
}

/* ====== Unified Service Cards ====== */
.service-card-unified {
    background: white;
    border-radius: 25px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-unified::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
}

.service-card-unified:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: rgba(16, 52, 76, 0.2);
}

.service-icon-wrapper {
    display: flex;
    justify-content: center;
}

.service-icon-unified {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(16, 52, 76, 0.3);
}

.service-card-unified:hover .service-icon-unified {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(16, 52, 76, 0.4);
}

.service-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0 auto;
    max-width: 280px;
}

.service-list-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: rgba(16, 52, 76, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-list-item:hover {
    background: rgba(16, 52, 76, 0.1);
    transform: translateX(3px);
}

.service-list-item i {
    margin-right: 6px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.service-list-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,1));
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 2px solid rgba(16, 52, 76, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 52, 76, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

/* ====== Gallery Section ====== */
.gallery-img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* ====== Testimonials Section ====== */
.testimonial-section {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 0;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

#testimonialCarousel .carousel-indicators {
    bottom: -30px;
}

#testimonialCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.4);
}

#testimonialCarousel .carousel-indicators button.active {
    background-color: white;
}

/* ====== Page Header ====== */
.page-header {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 0;
    color: white;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

/* ====== Timeline Section ====== */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 0 50px 50px 50px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item.left {
    left: 0;
    padding-right: 60px;
}

.timeline-item.right {
    left: 50%;
    padding-left: 60px;
}

.timeline-content {
    padding: 25px 30px;
    background-color: white;
    border-radius: 6px;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    top: 15px;
    background-color: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    top: 24px;
    background-color: var(--primary-color);
}

.timeline-item.left::before {
    right: 20px;
}

.timeline-item.right::before {
    left: 20px;
}

.timeline-date {
    background-color: var(--primary-color);
    color: white;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Responsive Timeline */
@media screen and (max-width: 767px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 25px;
    }
    
    .timeline-item.right {
        left: 0;
    }
    
    .timeline-item::after {
        left: 21px;
        right: auto;
    }
    
    .timeline-item.left::before,
    .timeline-item.right::before {
        left: 40px;
        right: auto;
    }
}

/* ====== Feature Icons ====== */
.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(51, 102, 255, 0.1);
}

/* ====== Process Timeline ====== */
.process-timeline {
    position: relative;
    padding: 30px 0;
}

.process-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-icon {
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    position: relative;
    z-index: 2;
}

.process-content {
    padding-top: 10px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.feature-icon-small {
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Make process timeline responsive */
@media (max-width: 576px) {
    .process-icon {
        min-width: 60px;
        height: 60px;
        margin-right: 20px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
}

/* ====== Horizontal Process ====== */
.process-horizontal {
    position: relative;
    padding: 30px 0 0;
}

.process-icon-horizontal {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.process-step {
    position: relative;
    padding: 0 10px;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.3;
    z-index: 1;
}

/* Make process columns more compact on smaller screens */
@media (max-width: 992px) {
    .process-step {
        margin-bottom: 30px;
    }
}

/* Service Gallery Styles */
.gallery-item {
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.gallery-item-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 10;
}

/* Video Play Icon in Gallery */
.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-play-icon i {
    font-size: 1.5rem;
    color: white;
}

.gallery-item:hover .video-play-icon {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

/* YouTube specific styling */
.video-play-icon .fab.fa-youtube {
    font-size: 1.8rem;
}

.pricing-card {
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

/* Lightbox Gallery Styles */
.lightbox-container {
    position: relative;
}

.lightbox-img {
    max-height: 85vh;
    object-fit: contain;
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.2s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.lightbox-prev, .lightbox-next {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.lightbox-prev:hover, .lightbox-next:hover {
    opacity: 1;
}

.modal-backdrop.show {
    opacity: 0.85;
}

/* Show navigation controls on touch devices */
@media (hover: none) {
    .lightbox-prev, .lightbox-next {
        opacity: 0.9;
    }
}

/* ====== Responsive Styles for New Design ====== */
@media (max-width: 768px) {
    /* About page mobile adjustments */
    .approach-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .approach-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    /* Service cards mobile adjustments */
    .service-card-primary,
    .service-card-secondary,
    .service-card-unified {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .service-icon-primary {
        margin-right: 0;
        margin-bottom: 15px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-icon-secondary,
    .service-icon-unified {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-item,
    .service-list-item {
        justify-content: center;
        text-align: center;
        padding: 10px 12px;
    }
    
    .service-list {
        grid-template-columns: 1fr;
        max-width: 250px;
        gap: 10px;
    }
    
    /* Button adjustments */
    .d-flex.gap-3.flex-wrap {
        flex-direction: column;
        gap: 10px !important;
    }
    
    .d-flex.gap-3.flex-wrap .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    /* CTA Card */
    .cta-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .service-card-primary,
    .service-card-secondary,
    .service-card-unified {
        padding: 20px 15px;
    }
    
    .approach-card {
        padding: 20px 15px;
    }
    
    .service-header h3 {
        font-size: 1.3rem;
    }
    
    .approach-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-icon-primary,
    .service-icon-secondary,
    .service-icon-unified {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .service-list {
        max-width: 200px;
    }
    
    .service-list-item {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
    
    .cta-card {
        padding: 25px 15px;
    }
}

/* ====== Modern Service Cards Design ====== */
.modern-service-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    overflow: hidden;
    position: relative;
}

.modern-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    border-color: rgba(16, 52, 76, 0.1);
}

.service-card-header {
    padding: 30px 25px 20px;
    text-align: center;
    position: relative;
}

.service-modern-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.4s ease;
}

/* Service Type Specific Colors */
.video-icon {
    background: var(--primary-color);
    color: white;
}

.photo-icon {
    background: var(--primary-color);
    color: white;
}

.design-icon {
    background: var(--primary-color);
    color: white;
}

.voice-icon {
    background: var(--primary-color);
    color: white;
}

.modern-service-card:hover .service-modern-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-subtitle {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 0;
    line-height: 1.4;
}

.service-features {
    padding: 0 25px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #4a5568;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.feature-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.feature-tag i {
    margin-right: 6px;
    font-size: 0.75rem;
}

.service-card-footer {
    padding: 0 25px 30px;
    text-align: center;
}

.modern-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 52, 76, 0.3);
    position: relative;
    overflow: hidden;
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.modern-btn:hover::before {
    left: 100%;
}

.modern-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 52, 76, 0.4);
    color: white;
    text-decoration: none;
}

.modern-btn span {
    margin-right: 8px;
}

.modern-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.modern-btn:hover i {
    transform: translateX(3px);
}

/* Modern CTA Section */
.modern-cta-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    color: var(--text-dark);
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.modern-cta-section h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
}

.modern-cta-section .lead {
    color: var(--text-light);
}

.modern-cta-section .btn {
    border-width: 2px;
    font-weight: 600;
}

.modern-cta-section .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.modern-cta-section .btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 0.9;
}

.modern-cta-section .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.modern-cta-section .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Responsive Design for Modern Cards */
@media (max-width: 992px) {
    .modern-service-card {
        margin-bottom: 20px;
    }
    
    .service-card-header {
        padding: 25px 20px 15px;
    }
    
    .service-modern-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-subtitle {
        font-size: 0.85rem;
    }
    
    .service-features {
        padding: 0 20px 15px;
    }
    
    .service-card-footer {
        padding: 0 20px 25px;
    }
    
    .modern-cta-section {
        padding: 30px 25px;
        text-align: center;
    }
    
    .modern-cta-section h3 {
        font-size: 1.5rem;
    }
    
    .modern-cta-section .d-flex {
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    .feature-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .modern-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .modern-cta-section {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .service-card-header {
        padding: 20px 15px 10px;
    }
    
    .service-modern-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .service-features {
        padding: 0 15px 12px;
        gap: 6px;
    }
    
    .service-card-footer {
        padding: 0 15px 20px;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .modern-cta-section {
        padding: 20px 15px;
    }
    
    .modern-cta-section h3 {
        font-size: 1.3rem;
    }
}

/* ====== Clean Service Cards Design (Image Style) ====== */
.clean-service-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.clean-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #dee2e6;
}

.service-icon-clean {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 16px;
    background: none;
    width: auto;
    height: auto;
    border-radius: 0;
    display: inline-block;
}

.service-title-clean {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.service-list-clean {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.service-list-clean li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666666;
    line-height: 1.4;
}

.service-list-clean li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 16px;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
}

.learn-more-btn:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.learn-more-btn i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
    transform: translateX(4px);
}

/* Clean CTA Section */
.modern-cta-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px 40px;
    border: 1px solid #e9ecef;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.modern-cta-section h3 {
    color: #1a1a1a;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.modern-cta-section .lead {
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.modern-cta-section .btn {
    margin: 0 8px 8px 0;
    padding: 12px 24px;
    font-weight: 600;
}

/* Responsive Design for Clean Cards */
@media (max-width: 992px) {
    .clean-service-card {
        margin-bottom: 24px;
        padding: 24px 20px;
    }
    
    .service-icon-clean {
        font-size: 22px;
        margin-bottom: 16px;
    }
    
    .service-title-clean {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .service-description {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .service-list-clean li {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .learn-more-btn {
        font-size: 13px;
    }
    
    .modern-cta-section {
        padding: 40px 30px;
        margin-top: 50px;
    }
    
    .modern-cta-section h3 {
        font-size: 1.5rem;
    }
    
    .modern-cta-section .lead {
        font-size: 1rem;
        margin-bottom: 28px;
    }
}

@media (max-width: 768px) {
    .clean-service-card {
        padding: 20px 16px;
    }
    
    .service-icon-clean {
        font-size: 22px;
    }
    
    .service-title-clean {
        font-size: 15px;
    }
    
    .service-description {
        font-size: 12px;
    }
    
    .service-list-clean li {
        font-size: 12px;
    }
    
    .modern-cta-section {
        padding: 35px 25px;
        margin-top: 40px;
    }
    
    .modern-cta-section h3 {
        font-size: 1.4rem;
    }
    
    .modern-cta-section .lead {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .modern-cta-section .btn {
        display: block;
        width: 100%;
        margin: 0 0 12px 0;
    }
}

@media (max-width: 576px) {
    .clean-service-card {
        padding: 18px 14px;
    }
    
    .service-icon-clean {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .service-title-clean {
        font-size: 14px;
    }
    
    .service-description {
        font-size: 11px;
        margin-bottom: 14px;
    }
    
    .service-list-clean li {
        font-size: 11px;
        margin-bottom: 5px;
    }
    
    .service-list-clean li::before {
        font-size: 14px;
    }
    
    .learn-more-btn {
        font-size: 12px;
    }
    
    .modern-cta-section {
        padding: 30px 20px;
        margin-top: 35px;
    }
    
    .modern-cta-section h3 {
        font-size: 1.3rem;
    }
    
    .modern-cta-section .lead {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}

.services-section-bg {
    background-color: var(--background-light) !important;
}

/* ====== Detailed Service Cards (Services Page) ====== */
.service-card-detailed {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    height: 100%;
    z-index:2;
}

.service-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.1);
}

.service-card-detailed .card-img-container {
    position: relative;
    height: 300px;
}

.service-card-detailed .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-detailed .card-img-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease;
}

.service-card-detailed:hover .card-img-overlay {
    background-color: rgba(16, 52, 76, 0.7); /* Darker blue on hover */
}

.service-card-detailed .card-title-overlay {
    font-weight: 700;
    font-size: 1.75rem;
}

.service-card-detailed .card-body {
    display: flex;
    flex-direction: column;
}

.service-card-detailed .tags-section {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-card-detailed .tags-section .badge {
    padding: 0.5em 0.75em;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-card-detailed .list-unstyled {
    margin-bottom: 1.5rem;
}

.service-card-detailed .list-unstyled li {
    margin-bottom: 0.5rem;
}

.service-card-detailed .btn {
    margin-top: auto; /* Pushes button to the bottom */
}

.album-card{position:relative;}
.album-img{width:100%;height:auto;display:block;border-radius:12px;aspect-ratio:1/1;object-fit:cover;}
.album-flag{
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  border-radius:12px;background:rgba(0,0,0,.25);color:#fff;opacity:1;
  transition:background .2s;pointer-events:none;z-index:2;
}
.album-card:hover .album-flag{background:rgba(0,0,0,.5);}
.album-flag-pill{
  background:rgba(0,0,0,.6);border:1px solid rgba(255,255,255,.35);
  padding:.4rem .9rem;border-radius:999px;font-weight:600;letter-spacing:.5px;
  text-transform:uppercase;font-size:.85rem;
}
/* dots under overlay */
.album-dots{
    position:absolute; left:0; right:0; bottom:12px;
    display:flex; justify-content:center; gap:6px;
    z-index:3; pointer-events:none;
  }
  .album-dot{
    width:8px; height:8px; border-radius:50%;
    background:rgba(255,255,255,.85); border:1px solid rgba(0,0,0,.3);
  }
  .album-card:hover .album-dot{ background:#fff; }
  
  
/* in-lightbox dots (pagination) */
.glightbox-pagination{
  position:absolute; left:0; right:0; bottom:16px;
  display:flex; justify-content:center; gap:8px;
  z-index:9999; pointer-events:none;
}
.glightbox-pagination .dot{
  width:8px; height:8px; border-radius:50%;
  background:rgba(255,255,255,.55); border:1px solid rgba(0,0,0,.25);
}
.glightbox-pagination .dot.active{ background:#fff; }


.album-scroll{
    display:flex; gap:10px; overflow-x:auto; -webkit-overflow-scrolling:touch;
    scroll-snap-type:x mandatory; padding:8px; max-width:min(900px, 94vw); margin:0 auto;
    max-height:80vh; align-items:center;
  }
  .album-scroll img{
    flex:0 0 88vw; max-height:75vh; width:auto; height:auto;
    object-fit:contain; border-radius:10px; scroll-snap-align:center; display:block;
  }
  
  /* Dots inside mobile inline scroller */
  .album-scroll-dots{
    display:flex; justify-content:center; gap:8px; margin-top:10px;
  }
  .album-scroll-dots .dot{
    width:8px; height:8px; border-radius:50%;
    background:rgba(255,255,255,.55); border:1px solid rgba(0,0,0,.25);
  }
  .album-scroll-dots .dot.active{ background:#fff; }

/* Mobile vertical stack inside inline lightbox */
.album-stack{ display:block; max-width:min(900px, 94vw); margin:0 auto; }
.album-stack-item{ margin-bottom:10px; }
.album-stack-item img{ width:100%; height:auto; display:block; border-radius:10px; object-fit:cover; }

.glightbox-clean .gcontrols{ z-index:10010!important; opacity:1!important; visibility:visible!important; display:flex!important; }
.glightbox-clean .gbtn{ opacity:1!important; visibility:visible!important; display:flex!important; width:44px; height:44px; }
.glightbox-clean .gbtn.gprev{ left:10px!important; }
.glightbox-clean .gbtn.gnext{ right:10px!important; }
  /* Ensure on touch devices too */
  @media (hover: none){
    .glightbox-clean .gcontrols,
    .glightbox-clean .gcontrols .gbtn{
      display: flex !important;
      opacity: 1 !important;
      visibility: visible !important;
    }
  }

/* ====== Clickable Service Cards ====== */
.service-card-clickable {
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card-clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card-clickable:hover .card-img-overlay {
    background: rgba(16, 52, 76, 0.9);
}

.service-card-clickable .card-img-overlay {
    background: rgba(16, 52, 76, 0.8);
    transition: background 0.3s ease;
}

/* ====== Partners Section ====== */
.partners-section {
    background-color: var(--background-light);
    position: relative;
    z-index: 1;
}

.partner-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.15);
    border-color: var(--primary-color);
    z-index: 10;
}

.partner-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 20px;
    padding: 15px;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
    background: var(--primary-color);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.02);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.partner-name {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.partner-category {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
}

/* Partners Carousel Container */
#partnersCarousel {
    position: relative;
    padding: 0 60px;
}

#partnersCarousel .carousel-inner {
    padding: 20px 0;
}

/* Partners Carousel Controls */
#partnersCarousel .carousel-control-prev,
#partnersCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 20;
    position: absolute;
}

#partnersCarousel .carousel-control-prev {
    left: -25px;
}

#partnersCarousel .carousel-control-next {
    right: -25px;
}

#partnersCarousel .carousel-control-prev:hover,
#partnersCarousel .carousel-control-next:hover {
    opacity: 1;
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.05);
}

/* Partners Carousel Indicators */
#partnersCarousel .carousel-indicators {
    z-index: 15;
    position: relative;
    bottom: -30px;
}

#partnersCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: var(--primary-color);
    opacity: 0.4;
    transition: all 0.3s ease;
}

#partnersCarousel .carousel-indicators button.active {
    opacity: 1;
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Partner CTA Card */
.partner-cta-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);
    border: 1px solid #dee2e6;
    max-width: 600px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.1);
}

.partner-cta-card h4,
.partner-cta-card p,
.partner-cta-card .btn {
    /* No special positioning needed */
}

/* Responsive Design for Partners */
@media (max-width: 992px) {
    .partner-card {
        padding: 25px 15px;
    }
    
    .partner-logo {
        width: 70px;
        height: 70px;
        padding: 12px;
    }
    
    .partner-name {
        font-size: 1rem;
    }
    
    .partner-category {
        font-size: 0.85rem;
    }
    
    #partnersCarousel {
        padding: 0 50px;
    }
    
    #partnersCarousel .carousel-control-prev,
    #partnersCarousel .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    #partnersCarousel .carousel-control-prev {
        left: -22px;
    }
    
    #partnersCarousel .carousel-control-next {
        right: -22px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 3rem 0;
    }
    
    .partner-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .partner-logo {
        width: 60px;
        height: 60px;
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .partner-name {
        font-size: 0.95rem;
    }
    
    .partner-category {
        font-size: 0.8rem;
    }
    
    .partner-cta-card {
        padding: 30px 20px;
    }
    
    #partnersCarousel {
        padding: 0 40px;
    }
    
    #partnersCarousel .carousel-control-prev,
    #partnersCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
        display: block;
    }
    
    #partnersCarousel .carousel-control-prev {
        left: -20px;
    }
    
    #partnersCarousel .carousel-control-next {
        right: -20px;
    }
}

@media (max-width: 576px) {
    .partner-card {
        padding: 18px 12px;
    }
    
    .partner-logo {
        width: 55px;
        height: 55px;
        padding: 8px;
        margin-bottom: 12px;
    }
    
    .partner-name {
        font-size: 0.9rem;
    }
    
    .partner-category {
        font-size: 0.75rem;
    }
    
    .partner-cta-card {
        padding: 25px 15px;
    }
    
    .partner-cta-card h4 {
        font-size: 1.2rem;
    }
    
    .partner-cta-card p {
        font-size: 0.9rem;
    }
}

/* ====== Compact Service Cards ====== */
.service-card-compact {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    height: 100%;
}

.service-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.1);
}

.card-img-container-compact {
    position: relative;
    height: 180px;
}

.card-img-container-compact .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-img-container-compact .card-img-overlay {
    background-color: rgba(16, 52, 76, 0.2);
    transition: background-color 0.3s ease;
}

.service-card-compact:hover .card-img-overlay {
    background-color: rgba(16, 52, 76, 0.6);
}

.card-img-container-compact .card-title-overlay {
    font-weight: 600;
    font-size: 1.1rem;
}

.tags-section-compact .badge {
    font-size: 0.8rem;
    padding: 0.4em 0.8em;
    margin-right: 0.4rem;
    margin-bottom: 0.4rem;
}

.cta-section-compact {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e9ecef;
}

/* Remove orange colors from buttons - use primary blue */
.service-card-compact .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.service-card-compact .btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 0.9;
}

/* Responsive adjustments for compact cards */
@media (max-width: 992px) {
    .service-card-compact {
        margin-bottom: 20px;
    }
    
    .card-img-container-compact {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .col-lg-3.col-md-6 {
        margin-bottom: 20px;
    }
    
    .service-card-compact {
        margin-bottom: 15px;
    }
    
    .card-img-container-compact {
        height: 140px;
    }
}

/* Responsive adjustments for About Image */
@media (max-width: 992px) {
    .about-img {
        max-width: 400px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .about-img {
        max-width: 350px;
        height: 250px;
        border-width: 2px;
    }
}

@media (max-width: 576px) {
    .about-img {
        max-width: 300px;
        height: 200px;
        border-width: 2px;
    }
}

/* Gallery Category Filter Buttons */
.gallery-category-btn {
    font-weight: 700 !important;
    font-size: 1.1rem;
    padding: 10px 20px;
    margin: 0 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Active category button */
.gallery-category-btn.btn-primary {
    font-weight: 800 !important;
    box-shadow: 0 4px 12px rgba(16, 52, 76, 0.3);
}

/* Service Detail Page Category Tabs */
.service-detail .nav-pills .nav-link,
.nav-pills.service-detail .nav-link {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 24px;
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    border: 2px solid transparent;
}

.service-detail .nav-pills .nav-link:hover {
    background-color: rgba(16, 52, 76, 0.1);
    border-color: rgba(16, 52, 76, 0.2);
    transform: translateY(-2px);
}

.service-detail .nav-pills .nav-link.active {
    font-weight: 700;
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(16, 52, 76, 0.3);
}