/*
Theme Name: Sarvottam Architect
Description: A modern, professional WordPress theme for architecture and civil engineering firms. Features customizable colors (Black, Gold, White), responsive design, and optimized for NGINX performance.
Version: 1.0.0
Author: Inder Kochar
Author URI: https://inderkochar.in
Theme URI: https://computerbazar.in
Text Domain: sarvottam-architect
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: architecture, civil-engineering, business, professional, responsive, customizable, contact-form, whatsapp, portfolio
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
    --primary-color: #d4af37;
    --secondary-color: #000000;
    --accent-color: #ffffff;
    --text-color: #333333;
    --footer-text-color: #2c3e50;
    --footer-link-color: #d4af37;
    --footer-bg-color: #1a1a1a;
    --contact-bg-color: #f8f9fa;
    --contact-text-color: #2c3e50;
}

/* ==========================================================================
   CSS Reset & Base Styles
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Montserrat', 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}


/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #000000;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

a {
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #b8941f;
    text-decoration: none;
}

/* ==========================================================================
   Layout & Grid System
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

.col-1 { flex: 0 0 8.333333%; }
.col-2 { flex: 0 0 16.666667%; }
.col-3 { flex: 0 0 25%; }
.col-4 { flex: 0 0 33.333333%; }
.col-6 { flex: 0 0 50%; }
.col-8 { flex: 0 0 66.666667%; }
.col-9 { flex: 0 0 75%; }
.col-12 { flex: 0 0 100%; }

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
}

.site-logo .gold {
    color: #d4af37;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-navigation a {
    color: #000000;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.main-navigation a:hover {
    color: #d4af37;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0.5rem;
}

.menu-toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle-icon span {
    width: 25px;
    height: 3px;
    background: #000000;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active .menu-toggle-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img,
.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Slideshow */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slideshow .slide.active {
    opacity: 1;
}

.hero-slideshow .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Video Enhancements */
.hero-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

/* Hero Text Overlay for Better Visibility */
.hero-title {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-tagline {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 25px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #d4af37;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: #d4af37;
    color: #000000;
    border-color: #d4af37;
}

.btn-primary:hover {
    background: #b8941f;
    border-color: #b8941f;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #d4af37;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
    background: #f8f9fa;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.about-text h4 {
    color: #000000;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Founder Section */
.founder-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #d4af37;
}

.founder-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-image {
    flex: 0 0 200px;
    text-align: center;
}

.founder-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-info {
    flex: 1;
}

.founder-info h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.founder-title {
    color: #666;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-bio {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.service-card:hover .service-icon::before {
    opacity: 1;
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.service-card h4 {
    margin-bottom: 1rem;
    color: #000000;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.service-link:hover {
    color: #b8941f;
}

/* Featured Service */
.featured-service {
    border: 2px solid #d4af37;
    position: relative;
    transform: scale(1.05);
}

.featured-service::before {
    content: 'Featured';
    position: absolute;
    top: -10px;
    right: 20px;
    background: #d4af37;
    color: #000000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-service .service-icon {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* ==========================================================================
   Circular Image Showcase
   ========================================================================== */

.circular-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 4rem 0;
    padding: 2rem;
    position: relative;
}

.circular-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #d4af37;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.circular-image:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.circular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.circular-image:hover img {
    transform: scale(1.1);
}

.circular-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(184, 148, 31, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.circular-image:hover::before {
    opacity: 1;
}

.circular-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.circular-image:hover .circular-image-overlay {
    transform: translateY(0);
}

.circular-image-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.circular-image-description {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Circular Placeholder Styles */
.circular-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    z-index: 1;
    border-radius: 50%;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.placeholder-text {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Overlapping Circular Images */
.circular-showcase.overlapping .circular-image {
    margin-left: -50px;
    position: relative;
    z-index: 1;
}

.circular-showcase.overlapping .circular-image:nth-child(2) {
    z-index: 2;
}

.circular-showcase.overlapping .circular-image:nth-child(3) {
    z-index: 3;
}

.circular-showcase.overlapping .circular-image:first-child {
    margin-left: 0;
}

/* Multiple Circles Layout (4+ circles) */
.circular-showcase.multiple-circles {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.circular-showcase.multiple-circles .circular-image {
    margin-left: 0;
    margin-bottom: 1rem;
}

/* Modern Layout with Curved Background */
.modern-showcase-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    margin-top: 2rem;
    z-index: 1;
    clear: both;
}

.modern-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.curved-divider {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    z-index: 0;
}

.curved-divider.bottom {
    top: auto;
    bottom: 0;
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
}

/* ==========================================================================
   About Section Slideshow
   ========================================================================== */

.about-section .about-slideshow {
    position: relative;
    width: 100%;
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
    overflow: hidden;
    border-radius: 10px;
    background: #d4af37;
    /* Ensure images are visible above background */
    z-index: 1;
    /* Force proper sizing */
    display: block !important;
}

.about-section .slideshow-container {
    position: relative;
    width: 100%;
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
    z-index: 2;
    display: block !important;
}

.about-section .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 2;
    display: block !important;
}

.about-section .slide.active {
    opacity: 1;
    z-index: 3;
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
    display: block !important;
}

.about-section .slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 10px;
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    /* Optimize for modern image formats */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* Support for WebP, AVIF, JPG, PNG */
    background-color: transparent;
    /* Smooth loading */
    transition: opacity 0.3s ease;
    /* Ensure images are visible */
    z-index: 4;
    /* Force image to be visible */
    opacity: 1 !important;
    visibility: visible !important;
    /* Ensure proper sizing */
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
}

.about-section .slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.about-section .slideshow-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 15;
}

.about-section .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.about-section .dot.active,
.about-section .dot:hover {
    background: #d4af37;
    border-color: #d4af37;
    transform: scale(1.2);
}

/* Slideshow hover effects */
.about-section .about-slideshow:hover .slideshow-dots {
    opacity: 1;
}

.about-section .about-slideshow:hover .slide-caption {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

/* Placeholder content in slideshow */
.about-section .about-slideshow .placeholder-image {
    background: rgba(0, 0, 0, 0.1);
    border: 2px dashed rgba(0, 0, 0, 0.3);
}

.about-section .about-slideshow .placeholder-content {
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
}

.about-section .about-slideshow .placeholder-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.about-section .about-slideshow .placeholder-content span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Image loading optimization */
.about-section .slide img[src$=".webp"],
.about-section .slide img[src$=".avif"],
.about-section .slide img[src$=".jpg"],
.about-section .slide img[src$=".jpeg"],
.about-section .slide img[src$=".png"] {
    /* Ensure all formats are properly supported */
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

/* Loading state for images */
.about-section .slide img:not([src]) {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}


/* ==========================================================================
   Section Spacing Fixes
   ========================================================================== */

.section {
    position: relative;
    z-index: 2;
}

.section-title {
    position: relative;
    z-index: 3;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */

.why-choose-section {
    background: #000000;
    color: #ffffff;
}

.why-choose-section .section-title h2 {
    color: #ffffff;
}

.why-choose-section .section-subtitle {
    color: #cccccc;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    text-align: center;
    padding: 2rem 1rem;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000000;
}

.highlight-item h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.highlight-item p {
    color: #cccccc;
}

/* ==========================================================================
   Projects Section
   ========================================================================== */

.projects-slider {
    position: relative;
    margin-top: 3rem;
}

.project-slide {
    display: none;
    text-align: center;
}

.project-slide.active {
    display: block;
}

.project-image {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-image:hover img {
    transform: scale(1.05);
}

.project-info h4 {
    margin-bottom: 1rem;
    color: #d4af37;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #d4af37;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-section {
    background: #f8f9fa;
}

.testimonials-slider {
    position: relative;
    margin-top: 3rem;
}

.testimonial-slide {
    display: none;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info h5 {
    margin-bottom: 0.5rem;
    color: #000000;
}

.author-info p {
    color: #666;
    margin: 0;
}

/* ==========================================================================
   Team Section
   ========================================================================== */

/* Team Hierarchy Styles */
.team-level-group {
    margin-bottom: 3rem;
}

.team-level-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.team-level-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 2px;
}

/* Level-specific styling */
.level-1 .team-level-title {
    color: #8e44ad;
    font-size: 2.2rem;
}

.level-2 .team-level-title {
    color: #2980b9;
    font-size: 2rem;
}

.level-3 .team-level-title {
    color: #27ae60;
    font-size: 1.8rem;
}

.level-4 .team-level-title {
    color: #e67e22;
    font-size: 1.6rem;
}

/* Featured Member Styles */
.team-member.featured-member {
    position: relative;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid #d4af37;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.featured-badge i {
    font-size: 0.7rem;
}

/* Hierarchy Level Indicators */
.team-member.hierarchy-level-1 {
    border-left: 4px solid #8e44ad;
}

.team-member.hierarchy-level-2 {
    border-left: 4px solid #2980b9;
}

.team-member.hierarchy-level-3 {
    border-left: 4px solid #27ae60;
}

.team-member.hierarchy-level-4 {
    border-left: 4px solid #e67e22;
}

/* Member Level Label */
.member-level {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
    margin: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Member Info */
.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.featured-member .member-name {
    color: #d4af37;
    font-size: 1.4rem;
}

/* Hierarchy-based Grid Layout */
.team-grid.hierarchy-mode {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-grid.featured-first-mode {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-grid.level-based-mode {
    display: block;
}

.team-grid.level-based-mode .team-level-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Disabled Hierarchy Levels */
.team-level-group.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.team-member.disabled-level {
    opacity: 0.3;
    filter: grayscale(50%);
    pointer-events: none;
}

.team-member.disabled-level .member-info {
    position: relative;
}

.team-member.disabled-level .member-info::after {
    content: 'Hidden Level';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

/* Level Status Indicators */
.team-level-title::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.level-1 .team-level-title::before {
    background: #8e44ad;
}

.level-2 .team-level-title::before {
    background: #2980b9;
}

.level-3 .team-level-title::before {
    background: #27ae60;
}

.level-4 .team-level-title::before {
    background: #e67e22;
}

/* Hierarchy Level Counter */
.team-level-title::after {
    content: ' (' attr(data-count) ')';
    font-size: 0.8em;
    color: #7f8c8d;
    font-weight: 400;
}

/* Enhanced Level Grouping */
.team-level-group {
    position: relative;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.team-level-group.level-1 {
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.1), rgba(142, 68, 173, 0.05));
    border-color: rgba(142, 68, 173, 0.2);
}

.team-level-group.level-2 {
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.1), rgba(41, 128, 185, 0.05));
    border-color: rgba(41, 128, 185, 0.2);
}

.team-level-group.level-3 {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(39, 174, 96, 0.05));
    border-color: rgba(39, 174, 96, 0.2);
}

.team-level-group.level-4 {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(230, 126, 34, 0.05));
    border-color: rgba(230, 126, 34, 0.2);
}

/* Responsive Hierarchy */
@media (max-width: 768px) {
    .team-member.featured-member {
        transform: none;
        margin-bottom: 1.5rem;
    }
    
    .featured-badge {
        top: -5px;
        right: -5px;
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .team-level-title {
        font-size: 1.5rem;
    }
    
    .level-1 .team-level-title {
        font-size: 1.8rem;
    }
    
    .level-2 .team-level-title {
        font-size: 1.6rem;
    }
    
    .level-3 .team-level-title {
        font-size: 1.4rem;
    }
    
    .level-4 .team-level-title {
        font-size: 1.2rem;
    }
    
    .team-level-group {
        padding: 1rem;
        margin-bottom: 2rem;
    }
}

.team-section {
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    width: 200px;
    height: 200px;
    margin: 2rem auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
    border-radius: 50%;
}

.team-member:hover .member-image {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.4);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
    filter: brightness(1.1) saturate(1.2);
}

/* Removed overlay effect - replaced with glow/grow effects */

.member-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #d4af37;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #ffffff;
    color: #d4af37;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.member-info {
    padding: 1rem 2rem 2.5rem;
    background: #ffffff;
    border-radius: 0 0 20px 20px;
    text-align: center;
}

.member-info h4 {
    margin-bottom: 0.8rem;
    color: #000000;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.member-position {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-experience {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.member-specialization {
    color: #333;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.4;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Team Members Responsive Design */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .member-image {
        width: 160px;
        height: 160px;
        margin: 1.5rem auto 1rem;
    }
    
    .member-info {
        padding: 1rem 1.5rem 2rem;
    }
    
    /* Circular Showcase Responsive */
    .circular-showcase {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .circular-showcase.overlapping .circular-image {
        margin-left: 0;
        margin-bottom: 1rem;
    }
    
    .circular-image {
        width: 150px !important;
        height: 150px !important;
    }
    
    .placeholder-icon {
        font-size: 2.5rem !important;
    }
    
    .placeholder-text {
        font-size: 0.8rem !important;
    }
    
    .modern-showcase-section {
        padding: 2rem 0;
    }
    
    .curtain-logo {
        font-size: 2rem;
    }
    
    .curtain-tagline {
        font-size: 1rem;
    }
    
    /* Responsive for more than 3 circles */
    .circular-showcase:has(.circular-image:nth-child(4)) {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .circular-showcase:has(.circular-image:nth-child(4)) .circular-image {
        margin-left: 0;
        margin-bottom: 1rem;
    }
    
    .member-info h4 {
        font-size: 1.2rem;
    }
    
    .member-position {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .member-image {
        width: 140px;
        height: 140px;
        margin: 1rem auto 0.5rem;
    }
    
    .member-info {
        padding: 0.5rem 1rem 1.5rem;
    }
    
    .member-info h4 {
        font-size: 1.1rem;
    }
    
    .member-position {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Contact CTA Section
   ========================================================================== */

.contact-cta-section {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000000;
    text-align: center;
}

.contact-cta-section h2 {
    color: #000000;
    margin-bottom: 1rem;
}

.contact-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #000000;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.btn-white:hover {
    background: #f8f9fa;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: #000000;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    color: #999;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
}

.footer-bottom .copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
    width: 100%;
}

.footer-bottom .copyright-left {
    margin: 0;
    font-size: 0.9rem;
    color: #999;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-bottom .theme-credit-right {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-bottom .theme-credit-right a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-bottom .theme-credit-right a:hover {
    color: #b8941f;
    text-decoration: underline;
}

/* Responsive Footer Bottom */
@media (max-width: 480px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-bottom .copyright {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-bottom .copyright-left,
    .footer-bottom .theme-credit-right {
        font-size: 0.85rem;
        white-space: normal;
    }
}

/* ==========================================================================
   Placeholder Images
   ========================================================================== */

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: placeholder-shine 3s infinite;
}

.placeholder-content {
    text-align: center;
    color: #000000;
    z-index: 2;
    position: relative;
}

.placeholder-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.placeholder-content span {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-placeholder {
    height: 400px;
    border-radius: 15px;
}

.team-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    margin: 2rem auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.project-placeholder {
    height: 300px;
    border-radius: 10px;
}

@keyframes placeholder-shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* ==========================================================================
   Footer Google Maps
   ========================================================================== */

.footer-map-section {
    grid-column: 1 / -1;
    margin-top: 2rem;
}

.google-map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.google-map-container iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 10px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Contact Info Responsive */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.contact-item i {
    width: 16px;
    color: var(--primary-color);
    font-size: 1rem;
}

.contact-item a {
    color: var(--footer-link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--footer-link-color);
    opacity: 0.8;
}

/* Address Lines */
.address-lines {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.address-lines div {
    line-height: 1.4;
    color: var(--contact-text-color);
    font-weight: 500;
}

/* Business Hours */
.business-hours {
    align-items: flex-start;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    line-height: 1.3;
}

.hours-item .day {
    font-weight: 500;
    color: var(--footer-text-color);
    min-width: 80px;
}

.hours-item .time {
    color: var(--primary-color);
    font-weight: 400;
}

/* Responsive Business Hours */
@media (max-width: 768px) {
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
    
    .hours-item .day {
        min-width: auto;
        font-size: 0.85rem;
    }
    
    .hours-item .time {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Page Template Styles
   ========================================================================== */

.page-wrapper {
    padding: 4rem 0;
    min-height: 60vh;
}

.page-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.page-content.full-width {
    grid-template-columns: 1fr;
}

.page-article {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #d4af37;
}

.page-title {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.page-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.page-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-meta i {
    color: #d4af37;
}

.page-featured-image {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.page-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-text-content {
    line-height: 1.6;
    color: #333;
}

.page-text-content h1,
.page-text-content h2,
.page-text-content h3,
.page-text-content h4,
.page-text-content h5,
.page-text-content h6 {
    color: #000000;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-text-content p {
    margin-bottom: 1.5rem;
}

.page-text-content ul,
.page-text-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-text-content li {
    margin-bottom: 0.5rem;
}

.page-links {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.page-tags {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tag-list a {
    background: #d4af37;
    color: #000000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.tag-list a:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.page-share {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.share-btn.facebook {
    background: #1877f2;
    color: #ffffff;
}

.share-btn.twitter {
    background: #1da1f2;
    color: #ffffff;
}

.share-btn.linkedin {
    background: #0077b5;
    color: #ffffff;
}

.share-btn.whatsapp {
    background: #25d366;
    color: #ffffff;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Sidebar Styles */
.page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 0.5rem;
}

.sidebar-widget p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    margin-bottom: 0.8rem;
}

.service-list a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.service-list a:hover {
    background: #f8f9fa;
    color: #d4af37;
    padding-left: 1rem;
}

.service-list a::before {
    content: '→';
    color: #d4af37;
    font-weight: bold;
    transition: all 0.3s ease;
}

.service-list a:hover::before {
    transform: translateX(5px);
}

.sidebar-widget .contact-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.sidebar-widget .contact-info i {
    color: #d4af37;
    width: 16px;
}

.sidebar-widget .contact-info a {
    color: #333;
    text-decoration: none;
}

.sidebar-widget .contact-info a:hover {
    color: #d4af37;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    /* Mobile Navigation */
    .menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .main-navigation.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-navigation ul {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }
    
    .main-navigation li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-navigation a {
        display: block;
        padding: 1rem 0;
    }
    
    .header-content {
        flex-direction: row;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-image {
        height: 250px;
    }
    
    .member-info {
        padding: 1.5rem 1rem;
    }
    
    /* Founder Section Mobile */
    .founder-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .founder-image {
        flex: none;
    }
    
    .founder-image img {
        width: 150px;
        height: 150px;
    }
    
    /* Mobile layout adjustments */
    .site-header {
        min-height: 60px !important;
    }
    
    .header-content {
        min-height: 60px !important;
        padding: 0.5rem 0;
    }
    
    .section {
        padding: 3rem 0 !important;
    }
    
    .site-footer {
        min-height: 250px !important;
    }
    
    /* Mobile service icons */
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Mobile highlight icons */
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Mobile footer adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-map-section {
        margin-top: 1.5rem;
    }
    
    .google-map-container iframe {
        height: 180px;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    /* Mobile page template adjustments */
    .page-wrapper {
        padding: 2rem 0;
    }
    
    .page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-article {
        padding: 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   Animations & Transitions
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }

/* ==========================================================================
   Fixed Header Spacing Fix
   ========================================================================== */

/* Add top margin to main content to account for fixed header */
.site-main {
    margin-top: var(--header-top-margin, 120px);
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

.contact-page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 0 1rem;
    margin-bottom: 1.5rem;
    margin-top: var(--contact-page-top-margin, 120px); /* Customizable top margin */
    position: relative;
    overflow: hidden;
}

.contact-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23d4af37" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23d4af37" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23d4af37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.header-content-wrapper {
    position: relative;
    z-index: 2;
}

.contact-page-header .page-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.title-main {
    color: #000000;
    display: block;
    position: relative;
}

.title-accent {
    color: #d4af37;
    display: block;
    position: relative;
    margin-top: -0.2em;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 2px;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    gap: 1rem;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 1px;
}

.divider-icon {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.contact-page-header .page-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
}

.subtitle-highlight {
    color: #d4af37;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.subtitle-text {
    color: #666;
    font-weight: 400;
    display: block;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.contact-content-section {
    margin-bottom: 2rem;
}

.contact-seo-content {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.contact-seo-content h2 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-seo-content h3 {
    color: #000000;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.contact-seo-content p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-seo-content ul {
    margin-bottom: 2rem;
    padding-left: 0;
    list-style: none;
}

.contact-seo-content li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #333;
    line-height: 1.6;
}

.contact-seo-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-item h4 {
    color: #000000;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-widget {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-widget h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 0.8rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--contact-bg-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.contact-item i {
    color: #d4af37;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-item strong {
    color: #000000;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--contact-text-color);
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.contact-item a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #b8941f;
}

.business-hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.hours-item .day {
    color: #333;
    font-weight: 500;
}

.hours-item .time {
    color: #d4af37;
    font-weight: 600;
}

.quick-contact-cta {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: #000000;
}

.quick-contact-cta h4 {
    color: #000000;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.quick-contact-cta p {
    color: #000000;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.quick-contact-cta .btn {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.quick-contact-cta .btn:hover {
    background: #333333;
    border-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Contact Form Styles */
.contact-form-section {
    background: #f8f9fa;
    padding: 2rem 0;
    margin: 1.5rem 0;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #e9ecef;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    color: #000000;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group .required {
    color: #e74c3c;
    font-weight: bold;
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #2c3e50;
    font-family: inherit;
    line-height: 1.4;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background: #fefefe;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    appearance: none;
}

.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.4rem;
    display: none;
    font-weight: 500;
}

.error-message.show {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
    background: #fef5f5;
}

.form-submit {
    text-align: center;
    margin-top: 1.5rem;
}

.form-submit .btn {
    background: #d4af37;
    color: #000000;
    border: 2px solid #d4af37;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 180px;
}

.form-submit .btn:hover {
    background: #b8941f;
    border-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.form-submit .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* reCAPTCHA Styling */
.g-recaptcha-wrapper {
    margin: 1rem 0;
}

.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.g-recaptcha iframe {
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


/* Contact Map Section */
.contact-map-section {
    margin: 3rem 0;
}

.map-wrapper {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-wrapper h3 {
    color: #000000;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.google-map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.google-map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #ffffff;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease;
}

.modal-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e9ecef;
}

.success-icon,
.error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounceIn 0.6s ease;
}

.success-icon {
    color: #27ae60;
}

.error-icon {
    color: #e74c3c;
}

.modal-header h2 {
    color: #000000;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

.modal-body {
    padding: 1.5rem 2rem;
    text-align: center;
}

.modal-body p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.modal-footer .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .site-main {
        margin-top: var(--mobile-header-top-margin, 100px); /* Customizable mobile margin */
    }
    
    .contact-page-header {
        padding: 1.5rem 0 0.5rem;
        margin-top: var(--mobile-header-top-margin, 100px); /* Customizable mobile margin */
    }
    
    .contact-page-header .page-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .title-divider {
        margin: 1.5rem 0;
    }
    
    .divider-line {
        width: 40px;
    }
    
    .divider-icon {
        font-size: 1.2rem;
    }
    
    .contact-page-header .page-subtitle {
        font-size: 1.1rem;
    }
    
    .subtitle-highlight {
        font-size: 1.1rem;
    }
    
    .contact-seo-content {
        padding: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-form-section {
        padding: 1.5rem 0;
        margin: 1rem 0;
    }
    
    .contact-seo-content h2 {
        font-size: 1.6rem;
    }
    
    .contact-seo-content h3 {
        font-size: 1.3rem;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-widget {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-item i {
        margin: 0;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
    
    .quick-contact-cta {
        padding: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-submit .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1.5rem 1rem;
    }
    
    .success-icon,
    .error-icon {
        font-size: 3rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-page-header .page-title {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
    
    .title-divider {
        margin: 1rem 0;
    }
    
    .divider-line {
        width: 30px;
    }
    
    .divider-icon {
        font-size: 1rem;
    }
    
    .contact-page-header .page-subtitle {
        font-size: 1rem;
    }
    
    .subtitle-highlight {
        font-size: 1rem;
    }
    
    .contact-seo-content {
        padding: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1rem;
    }
    
    .contact-form-section {
        padding: 1rem 0;
        margin: 0.5rem 0;
    }
    
    .contact-widget {
        padding: 1rem;
    }
    
    .quick-contact-cta {
        padding: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
    }
}

/* ==========================================================================
   WordPress Specific Styles
   ========================================================================== */

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
}

.alignleft {
    float: left;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin: 0 auto 1rem;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ==========================================================================
   SEO and Performance Optimizations
   ========================================================================== */

/* Improved focus states for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999999;
    text-decoration: none;
    color: #000;
    background: #d4af37;
    padding: 8px 16px;
}

.skip-link:focus {
    left: 6px;
    top: 7px;
}

/* Improved loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Better image optimization */
img {
    max-width: 100%;
    height: auto;
    loading: lazy;
}

/* Improved button states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Enhanced service card hover effects */
.service-card {
    will-change: transform;
}

.service-card:hover {
    will-change: auto;
}

/* Improved animation performance */
.fade-in-up,
.slide-in-left,
.slide-in-right {
    will-change: transform, opacity;
}

.animate-in {
    will-change: auto;
}

/* Better mobile touch targets */
@media (max-width: 768px) {
    .btn,
    .service-link,
    .main-navigation a {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Print styles */
@media print {
    .site-header,
    .site-footer,
    .btn,
    .menu-toggle,
    .back-to-top,
    .whatsapp-float {
        display: none !important;
    }
    
    .site-main {
        margin-top: 0 !important;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    .service-card,
    .team-member {
        page-break-inside: avoid;
    }
}
