/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* WhatsApp Popup Styles */
.whatsapp-btn {
    position: relative;
}

.whatsapp-btn i {
    color: #25D366;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover i {
    color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.whatsapp-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
    z-index: 10001;
    animation: slideInScale 0.3s ease;
}

.whatsapp-popup-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 1.5rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatsapp-popup-header h3 {
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-popup-header .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.whatsapp-popup-header .close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-popup-body {
    padding: 2rem;
}

.whatsapp-popup-body p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.whatsapp-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    background: white;
}

.whatsapp-option:hover {
    border-color: #25D366;
    background: #f8fff9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-option i {
    font-size: 1.5rem;
    color: #25D366;
    margin-right: 1rem;
    min-width: 30px;
}

.whatsapp-option-content {
    flex: 1;
}

.whatsapp-option-title {
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #2c2c2c;
}

.whatsapp-option-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
    color: white;
    font-size: 1.5rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* Photo Gallery Styles */
.service-photo-preview {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.service-card:hover .service-photo-preview {
    opacity: 1;
}

.photo-placeholder {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.service-card:hover .photo-placeholder {
    border-color: #d4a574;
    color: #d4a574;
}

/* Photo Showcase Section */
.photo-showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.photo-container {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
}

.photo-showcase-item:hover .photo-overlay {
    opacity: 1;
}

.photo-info {
    text-align: center;
    padding: 1rem;
}

.photo-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #d4a574;
}

.photo-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Portfolio Gallery Enhancements */
.portfolio-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    transition: all 0.3s ease;
}

.portfolio-image-container:hover {
    transform: scale(1.02);
}

.portfolio-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.portfolio-image-container:hover img {
    transform: scale(1.1);
}

.placeholder-image {
    transition: all 0.3s ease;
}

.placeholder-image:hover {
    border-color: #d4a574;
    background: linear-gradient(45deg, rgba(212, 165, 116, 0.1), rgba(212, 165, 116, 0.2));
}

.placeholder-image:hover i {
    transform: scale(1.1);
    color: #d4a574;
}

/* Gallery Section Headers */
.gallery-section-header {
    margin: 2rem 0;
}

.gallery-section-header h3 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-section-header i {
    font-size: 1.5rem;
}

/* Responsive Photo Gallery */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .floating-whatsapp i {
        font-size: 1.2rem;
    }
    
    .whatsapp-popup {
        width: 95%;
        margin: 1rem;
    }
    
    .whatsapp-popup-header,
    .whatsapp-popup-body {
        padding: 1.5rem;
    }
    
    .photo-showcase-item {
        margin-bottom: 1rem;
    }
    
    .photo-container {
        height: 180px;
    }
    
    .service-photo-preview {
        opacity: 0.9;
    }
    
    .gallery-section-header h3 {
        font-size: 1.5rem;
    }
}
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #d4a574, #b8956a);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 0;
}

.tagline {
    font-size: 0.75rem;
    color: #d4a574;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.nav-link {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #d4a574;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a574;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-image: url("../images/your-background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* ensures text appears above overlay */
    color: #fff;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #d4a574, #b8956a);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c2c2c;
}

.btn-outline {
    background: transparent;
    color: #d4a574;
    border: 2px solid #d4a574;
}

.btn-outline:hover {
    background: #d4a574;
    color: white;
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #d4a574, #b8956a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4a574, #b8956a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(212, 165, 116, 0.4);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* About Preview */
.about-preview {
    padding: 5rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.image-placeholder {
    width: 400px;
    height: 300px;
    background: #f0f0f0;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    border: 2px dashed #ddd;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c2c2c, #404040);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #d4a574;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4a574;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #d4a574;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        background-attachment: scroll; /* Fix for mobile */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-img {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    /* Project cards responsive styling */
    div[style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, #2c2c2c, #404040);
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 70px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 4rem 0;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Portfolio Gallery */
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.portfolio-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-image-container {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.portfolio-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.portfolio-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.portfolio-image-container:hover .image-overlay {
    opacity: 1;
}

.image-info {
    color: white;
    text-align: left;
    width: 100%;
}

.image-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.image-info p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.image-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574, #b8956a);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-item {
    aspect-ratio: 4/3;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    border: 2px dashed #ddd;
}

.gallery-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4a574;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Service Detail Pages */
.service-hero {
    background: linear-gradient(135deg, #d4a574, #b8956a);
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 70px;
    text-align: center;
}

.service-features {
    padding: 4rem 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-card h3 {
    color: #d4a574;
    margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-section {
    padding: 4rem 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #d4a574;
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #d4a574;
    background: linear-gradient(135deg, #d4a574, #b8956a);
    color: white;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d4a574;
    margin: 1rem 0;
}

.pricing-card.featured .price {
    color: white;
}

/* Portfolio Categories */
.portfolio-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #d4a574;
    color: #d4a574;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: #d4a574;
    color: white;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #d4a574;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.text-gold {
    color: #d4a574;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-dark {
    background-color: #2c2c2c;
    color: white;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #d4a574;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8956a;
}

/* Project Showcase Styles */
.project-showcase {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.project-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.project-header {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    padding: 1.5rem;
    position: relative;
}

.project-badge {
    background: linear-gradient(135deg, #d4a574, #b8956a);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.project-header h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
}

.project-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

.project-details span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.project-type {
    background: rgba(212, 165, 116, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-weight: 500;
}

.project-content {
    padding: 1.5rem;
}

.project-description h4 {
    color: #d4a574;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.project-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.project-features li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.project-features li:last-child {
    border-bottom: none;
}

.project-features li i {
    color: #d4a574;
    width: 20px;
    margin-right: 0.5rem;
}

/* Project Card Styles */
.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.project-card .project-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 1.2rem;
}

.project-card .project-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.project-card .project-type {
    background: rgba(212, 165, 116, 0.8);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

.project-card .project-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-card .project-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.project-card .project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.project-card .project-features span {
    background: #f8f9fa;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.project-card .project-features span i {
    color: #d4a574;
}

/* Featured Item Adjustments */
.featured-item .gallery-item {
    grid-column: span 2;
}

/* Responsive adjustments for portfolio */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-item {
        grid-column: span 1 !important;
    }
    
    .project-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .project-header h3 {
        font-size: 1.1rem;
    }
    
    .project-card .project-features {
        justify-content: center;
    }
}

/* Project Image Styles */
.project-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #f8f9fa;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

/* Home page project card image styles */
div[style*="position: relative; overflow: hidden; height: 200px"] img {
    transition: transform 0.3s ease;
}

div[style*="background: white; border-radius: 15px; overflow: hidden"]:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.project-overlay .project-badge {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

/* Unique Features Section Styles */
.unique-features {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
}

.feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-item h4 {
    color: #2c2c2c;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item h4 i {
    color: #d4a574;
    font-size: 1.1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Production Details Styling */
.production-details {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #d4a574;
}

.production-details p {
    margin-bottom: 0.5rem;
}

.production-details p:last-child {
    margin-bottom: 0;
}

/* Leadership Team Styles */
.leadership-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.leadership-photo {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 2rem;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leadership-portrait {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #d4a574;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.leadership-portrait:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
}

.professional-photo {
    width: 180px;
    height: 180px;
    background: #f0f0f0;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    border: 3px solid #d4a574;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.professional-photo i {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    color: #d4a574;
}

.photo-note {
    font-size: 0.7rem;
    color: #999;
    margin: 0;
}

.leadership-info {
    padding: 2rem;
    text-align: center;
}

.leadership-badge {
    background: linear-gradient(135deg, #d4a574, #b8956a);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.leadership-info h3 {
    font-size: 1.6rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.leadership-title {
    color: #d4a574;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leadership-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: left;
}

.leadership-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.leadership-specialties span {
    background: #f8f9fa;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid #e9ecef;
}

.leadership-specialties span i {
    color: #d4a574;
}

/* Leadership responsive design */
@media (max-width: 768px) {
    .leadership-card {
        margin-bottom: 2rem;
    }
    
    .professional-photo {
        width: 140px;
        height: 140px;
    }
    
    .professional-photo i {
        font-size: 3rem;
    }
    
    .leadership-info h3 {
        font-size: 1.4rem;
    }
    
    .leadership-specialties {
        justify-content: flex-start;
    }
}
