/*
 * Jay Clicks Photography
 * Custom Stylesheet
 */

/* ========================================
   Color Variables
   ======================================== */
:root {
    --golden-primary: #D4AF37;      /* Rich Gold */
    --golden-light: #F5E6C8;        /* Light Gold */
    --golden-dark: #B8941F;         /* Dark Gold */
    --dark-color: #2C3E50;          /* Dark Blue-Gray */
    --light-color: #F8F9FA;         /* Light Gray */
    --text-color: #333333;          /* Dark Text */
    --white: #FFFFFF;
}

/* ========================================
   Global Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.text-center .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--golden-primary);
    border-radius: 2px;
}

/* ========================================
   Navbar Styles
   ======================================== */
.navbar-custom {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-color) !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand img {
    height: 45px;
    width: 45px;
    object-fit: cover;
    border-radius: 50%;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0 !important;
}

.nav-link:hover {
    color: var(--golden-primary) !important;
}

.nav-link.active {
    color: var(--golden-primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--golden-primary);
    transition: width 0.3s ease;
}

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

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    min-height: 70vh;
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 100px 0;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--golden-light);
    animation: fadeInUp 1s ease 0.2s backwards;
}

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

/* ========================================
   Buttons
   ======================================== */
.btn-primary-custom {
    background: var(--golden-primary);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    color: var(--white);
}

.btn-primary-custom:hover {
    background: var(--golden-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: var(--white);
}

.btn-outline-custom {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
}

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

/* ========================================
   Card Styles
   ======================================== */
.card-custom {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    background: var(--white);
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.card-custom img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-custom:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 20px;
}

/* ========================================
   Gallery Card Styles
   ======================================== */
.gallery-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
}

.gallery-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-card-image img {
    transform: scale(1.15);
}

.gallery-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.gallery-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gallery-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
    line-height: 1.4;
}

.gallery-card-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 12px;
    line-height: 1.5;
    flex-grow: 1;
}

.gallery-card-link-text {
    display: inline-flex;
    align-items: center;
    color: var(--golden-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-card-link-text {
    color: var(--golden-dark);
    gap: 8px;
}

.gallery-card:hover .gallery-card-link-text i {
    transform: translateX(4px);
    transition: transform 0.3s ease;
}

/* ========================================
   Carousel Styles
   ======================================== */
.carousel {
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    background: var(--white);
    transition: all 0.3s ease;
}

.carousel-gallery-card:hover {
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.carousel-gallery-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.carousel-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.carousel-gallery-card:hover .carousel-gallery-image img {
    transform: scale(1.08);
}

.carousel-gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.carousel-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
    color: var(--white);
    padding: 40px 30px 30px;
}

.carousel-gallery-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.carousel-gallery-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    line-height: 1.6;
}

.carousel-gallery-link {
    display: inline-flex;
    align-items: center;
    color: var(--golden-primary);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.carousel-gallery-card:hover .carousel-gallery-link {
    color: var(--golden-light);
    gap: 8px;
}

.carousel-gallery-card:hover .carousel-gallery-link i {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 100;
    align-items: center;
    justify-content: center;
    display: flex;
}

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

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

@media (min-width: 768px) {
    .carousel-control-prev {
        left: 20px;
    }

    .carousel-control-next {
        right: 20px;
    }
}

/* Pointer events to ensure clicks work */
.carousel-control-prev,
.carousel-control-next {
    pointer-events: all;
    cursor: pointer;
}

.carousel-control-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--golden-primary);
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

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

.carousel-control-prev:hover .carousel-control-icon,
.carousel-control-next:hover .carousel-control-icon {
    background: var(--golden-dark);
    transform: scale(1.1);
}

/* Photo carousel specific styles */
.photo-carousel-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    background: var(--white);
}

.photo-carousel-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.photo-carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.photo-carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 70%, transparent 100%);
    color: var(--white);
    padding: 25px 20px 20px;
}

.photo-carousel-caption h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--white);
}

.photo-carousel-caption p {
    margin: 0;
    color: var(--golden-light);
    font-size: 0.9rem;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: -50px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--golden-primary);
    opacity: 0.5;
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
    width: 35px;
    border-radius: 6px;
}

/* ========================================
   Multi-Item Horizontal Scroll Carousel
   ======================================== */
.multi-carousel-wrapper {
    margin: 0 40px;
    position: relative;
}

.carousel-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-scroll-container::-webkit-scrollbar {
    display: none;
}

.carousel-scroll-track {
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
}

.carousel-scroll-item {
    flex-shrink: 0;
}

/* Responsive widths for carousel items */
@media (min-width: 1024px) {
    .carousel-scroll-item {
        width: calc((100% - 60px) / 4);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .carousel-scroll-item {
        width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 767px) {
    .carousel-scroll-item {
        width: 100%;
    }

    .multi-carousel-wrapper {
        margin: 0 10px;
    }
}

/* Carousel navigation buttons */
.carousel-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: var(--golden-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-scroll-btn:hover {
    background: var(--golden-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.carousel-scroll-prev {
    left: -60px;
}

.carousel-scroll-next {
    right: -60px;
}

.carousel-scroll-btn i {
    font-size: 1.2rem;
}

@media (max-width: 1200px) {
    .carousel-scroll-prev {
        left: -50px;
    }

    .carousel-scroll-next {
        right: -50px;
    }
}

@media (max-width: 768px) {
    .carousel-scroll-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-scroll-prev {
        left: -20px;
    }

    .carousel-scroll-next {
        right: -20px;
    }

    .carousel-scroll-btn i {
        font-size: 1rem;
    }
}

/* ========================================
   Legacy Multi-Item Carousel Styles (unused)
   ======================================== */
.multi-item-carousel {
    max-width: 100%;
    margin: 0 auto;
}

.multi-item-carousel .carousel-inner {
    padding: 0 10px;
}

.multi-item-carousel .carousel-item {
    position: relative;
    transition: none;
}

/* Ensure columns work properly inside carousel items */
.multi-item-carousel .carousel-item .row {
    margin: 0;
}

.multi-item-carousel .carousel-item .col-12,
.multi-item-carousel .carousel-item .col-sm-6,
.multi-item-carousel .carousel-item .col-md-4,
.multi-item-carousel .carousel-item .col-lg-3,
.multi-item-carousel .carousel-item .col-lg-4 {
    padding: 0 0.75rem;
}

.multi-item-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: var(--white);
    height: 100%;
}

.multi-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.multi-item-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.multi-item-gallery .multi-item-image {
    height: 320px;
}

.multi-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.multi-item-card:hover .multi-item-image img {
    transform: scale(1.1);
}

.multi-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 70%, transparent 100%);
    color: var(--white);
    padding: 20px 15px 15px;
    text-align: center;
}

.multi-item-overlay h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px;
}

.multi-item-overlay p {
    color: var(--golden-light);
    font-size: 0.85rem;
}

/* ========================================
   Gallery Grid
   ======================================== */
.gallery-grid {
    column-count: 4;
    column-gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: #f8f9fa;
    margin-bottom: 20px;
    break-inside: avoid;
    display: inline-block;
    width: 100%;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

/* ========================================
   Footer Styles
   ======================================== */
.footer-custom {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-custom h5 {
    color: var(--golden-primary);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.footer-custom a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-custom a:hover {
    color: var(--golden-primary);
    padding-left: 5px;
}

.footer-custom .social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-custom .social-links a:hover {
    background: var(--golden-primary);
    color: var(--white);
    transform: translateY(-3px);
    padding-left: 0;
}

/* ========================================
   Form Styles
   ======================================== */
.form-control-custom {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    border-color: var(--golden-primary);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-section {
        min-height: 50vh !important;
        padding: 40px 20px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Sections */
    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    /* Gallery Grid */
    .gallery-grid {
        column-count: 3;
        column-gap: 15px;
    }

    .gallery-item {
        margin-bottom: 15px;
    }

    /* Carousel */
    .carousel-gallery-image {
        height: 350px;
    }

    .carousel-gallery-title {
        font-size: 1.5rem;
    }

    .carousel-gallery-description {
        font-size: 0.9rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        opacity: 1;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    .carousel-control-icon {
        width: 45px;
        height: 45px;
    }

    .carousel-control-icon i {
        font-size: 1.2rem;
    }

    /* Multi-Item Carousel */
    .multi-item-image {
        height: 220px;
    }

    .multi-item-overlay h5 {
        font-size: 0.9rem;
    }

    .multi-item-overlay p {
        font-size: 0.8rem;
    }

    /* Gallery Cards */
    .gallery-card {
        margin-bottom: 15px;
    }

    .gallery-card-image {
        height: 200px;
    }

    /* Contact Info */
    .contact-info-item {
        padding: 15px;
        gap: 15px;
    }

    .contact-info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    /* Buttons */
    .btn-lg {
        padding: 10px 25px;
        font-size: 1rem;
    }

    /* Navbar */
    .navbar-brand img {
        height: 35px;
        width: 35px;
    }

    /* Social Icons */
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    /* Card Padding */
    .card-custom {
        margin-bottom: 20px;
    }

    .card-custom.p-4 {
        padding: 20px !important;
    }
}

@media (max-width: 576px) {
    /* Extra small devices */
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .gallery-grid {
        column-count: 1;
        column-gap: 0;
    }

    .gallery-item {
        margin-bottom: 15px;
    }

    /* Carousel Mobile */
    .carousel-gallery-image {
        height: 280px;
    }

    .carousel-gallery-overlay {
        padding: 20px 20px 25px;
    }

    .carousel-gallery-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .carousel-gallery-description {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .carousel-gallery-link {
        font-size: 0.9rem;
    }

    .carousel-control-prev {
        left: 5px;
        top: 35%;
    }

    .carousel-control-next {
        right: 5px;
        top: 35%;
    }

    .carousel-control-icon {
        width: 40px;
        height: 40px;
        background: rgba(212, 175, 55, 0.9);
    }

    .carousel-control-icon i {
        font-size: 1rem;
    }

    .carousel-indicators {
        bottom: -40px;
    }

    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
    }

    .carousel-indicators .active {
        width: 25px;
    }

    /* Multi-Item Carousel Mobile */
    .multi-item-image {
        height: 200px;
    }

    .multi-item-overlay {
        padding: 15px 10px 10px;
    }

    .multi-item-overlay h5 {
        font-size: 0.85rem;
    }

    .multi-item-overlay p {
        font-size: 0.75rem;
    }

    .gallery-card-image {
        height: 250px;
    }

    /* Stack buttons vertically on very small screens */
    .d-flex.gap-3 {
        flex-direction: column;
        width: 100%;
    }

    .d-flex.gap-3 .btn {
        width: 100%;
    }

    /* Contact info - reduce icon size further */
    .contact-info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-info-content h5 {
        font-size: 1rem;
    }

    .contact-info-content p,
    .contact-info-content a {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-custom {
        padding: 40px 0 30px;
        text-align: center;
    }

    .footer-custom .row > div {
        margin-bottom: 25px;
    }

    .footer-custom .social-icons {
        justify-content: center;
    }

    /* Form inputs for better mobile interaction */
    .form-control-custom {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Improve touch targets */
    .nav-link {
        padding: 12px 15px !important;
    }

    /* Gallery overlay text */
    .card-overlay h3 {
        font-size: 1.2rem;
    }

    .card-overlay p {
        font-size: 0.85rem;
    }
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--golden-primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
    transform: translateX(5px);
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--golden-primary), var(--golden-dark));
    color: white;
    border-radius: 12px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-info-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.contact-info-content a {
    color: var(--golden-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--golden-dark);
    text-decoration: underline;
}

/* ========================================
   Social Icons
   ======================================== */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--golden-primary);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--golden-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-icons a i {
    line-height: 1;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-golden {
    color: var(--golden-primary);
}

.bg-golden {
    background-color: var(--golden-primary);
}

.bg-golden-light {
    background-color: var(--golden-light);
}

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