/* Custom Styles for Articulate Architecture Template */

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

/* Custom Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.6s forwards;
}

.animate-slide-up {
    animation: slideUp 1s ease-out forwards;
}

/* Navigation Scroll Effect */
nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

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

::-webkit-scrollbar-thumb {
    background: #c8a97e;
    border-radius: 5px;
}

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

/* Image Overlay Effects */
.image-overlay {
    position: relative;
    overflow: hidden;
}

.image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-overlay:hover::before {
    opacity: 1;
}

/* Button Hover Effects */
.btn-hover-effect {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hover-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-hover-effect:hover::before {
    left: 0;
}

/* Card Hover Shadow */
.card-hover {
    transition: all 0.3s ease;
}

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

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Counter Animation */
.counter {
    transition: all 0.3s ease;
}

/* Mobile Menu Animation */
#mobile-menu {
    transition: max-height 0.3s ease-in-out;
}

/* Back to Top Button */
#backToTop {
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

#backToTop:hover {
    transform: translateY(-3px);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

/* Form Focus Effects */
input:focus,
textarea:focus,
select:focus {
    border-color: #c8a97e;
    box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.1);
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.02em;
}

/* Image Loading Skeleton */
img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
}

img[src] {
    background: none;
}

/* Responsive Text */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #c8a97e 0%, #f4e4d7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Service Card Hover */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    background: linear-gradient(135deg, #c8a97e 0%, #b8946e 100%);
    color: white;
}

.service-card:hover h3,
.service-card:hover p {
    color: white;
}

/* Project Grid Responsive */
@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
}

/* Section Spacing */
section {
    scroll-margin-top: 80px;
}

/* Logo Animation */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.logo-float {
    animation: logoFloat 3s ease-in-out infinite;
}

/* Social Icons Hover */
.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Custom Border Animations */
.border-animate {
    position: relative;
}

.border-animate::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #c8a97e;
    transition: width 0.3s ease;
}

.border-animate:hover::after {
    width: 100%;
}

/* Statistics Counter */
.counter-wrapper {
    perspective: 1000px;
}

/* Image Gallery Grid */
.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

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

/* Custom Shadows */
.shadow-custom {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.shadow-custom-hover:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Text Selection */
::selection {
    background: #c8a97e;
    color: white;
}

::-moz-selection {
    background: #c8a97e;
    color: white;
}

/* Print Styles */
@media print {
    nav,
    footer,
    #backToTop {
        display: none;
    }
}

/* Accessibility */
.focus-visible:focus {
    outline: 2px solid #c8a97e;
    outline-offset: 2px;
}

/* Loading State */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
    .hero-section {
        padding: 100px 20px;
    }
}

/* Contact Form Enhancements */
.form-input {
    transition: all 0.3s ease;
}

.form-input:hover {
    border-color: #c8a97e;
}

/* Award Badge */
.award-badge {
    animation: fadeInScale 1s ease-out 0.5s both;
}

/* Service Icon Animation */
.service-icon {
    transition: all 0.3s ease;
}

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

/* Footer Links */
.footer-link {
    position: relative;
    transition: color 0.3s ease;
}

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

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

/* ============================================
   ENHANCED HEADER & NAVIGATION STYLES
   ============================================ */

/* Main Navigation */
.main-nav {
    transition: all 0.4s ease;
}

.main-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 169, 126, 0.2);
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c8a97e 0%, #a8865a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(200, 169, 126, 0.4);
    transition: all 0.3s ease;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.logo-container:hover .logo-icon::before {
    left: 100%;
}

.logo-container:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(200, 169, 126, 0.5);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text .brand-tagline {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #c8a97e;
    font-weight: 500;
}

/* Navigation Menu Items */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c8a97e, #a8865a);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #c8a97e;
    background: rgba(200, 169, 126, 0.08);
}

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

.nav-link.active {
    color: #c8a97e;
    background: rgba(200, 169, 126, 0.1);
}

.nav-link.active::after {
    width: 60%;
}

/* Enhanced Active Link Styling When Scrolled */
.main-nav.scrolled .nav-link.active {
    color: #c8a97e;
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.15) 0%, rgba(200, 169, 126, 0.08) 100%);
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(200, 169, 126, 0.2);
}

.main-nav.scrolled .nav-link.active::after {
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, #c8a97e, #a8865a);
    bottom: 2px;
}

.main-nav.scrolled .nav-link:hover {
    background: rgba(200, 169, 126, 0.1);
    border-radius: 8px;
}

.nav-link i.fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    padding: 12px;
    z-index: 100;
    border: 1px solid rgba(200, 169, 126, 0.1);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid rgba(200, 169, 126, 0.1);
    border-top: 1px solid rgba(200, 169, 126, 0.1);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(8px);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.1) 0%, rgba(200, 169, 126, 0.05) 100%);
    transform: translateX(5px);
}

.dropdown-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.15) 0%, rgba(200, 169, 126, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8a97e;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover .dropdown-icon {
    background: linear-gradient(135deg, #c8a97e 0%, #a8865a 100%);
    color: white;
    transform: scale(1.1);
}

.dropdown-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.dropdown-content p {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.3;
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 126, 0.3), transparent);
    margin: 8px 0;
}

.dropdown-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.08) 0%, rgba(200, 169, 126, 0.03) 100%);
    border-radius: 10px;
    margin-top: 8px;
}

.dropdown-footer a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #c8a97e;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-footer a:hover {
    color: #a8865a;
    gap: 10px;
}

/* Contact Button in Nav */
.nav-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #c8a97e 0%, #a8865a 100%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(200, 169, 126, 0.3);
}

.nav-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(200, 169, 126, 0.4);
}

/* Mobile Menu Enhancements */
.mobile-menu-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-container.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: right 0.4s ease;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-menu-container.active .mobile-menu-panel {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: #c8a97e;
    color: white;
}

.mobile-nav-items {
    padding: 20px;
}

.mobile-nav-item {
    margin-bottom: 8px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(200, 169, 126, 0.1);
    color: #c8a97e;
}

.mobile-dropdown {
    display: none;
    padding: 8px 0 8px 20px;
}

.mobile-dropdown.active {
    display: block;
}

.mobile-dropdown a {
    display: block;
    padding: 10px 16px;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-dropdown a:hover {
    background: rgba(200, 169, 126, 0.08);
    color: #c8a97e;
    padding-left: 24px;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.mobile-contact-btn {
    display: block;
    text-align: center;
    padding: 14px;
    background: linear-gradient(135deg, #c8a97e 0%, #a8865a 100%);
    color: white;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-contact-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(200, 169, 126, 0.4);
}

/* Hamburger Menu Animation */
.hamburger {
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger:hover span {
    background: #c8a97e;
}

/* Header Search Icon */
.nav-search {
    width: 42px;
    height: 42px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-search:hover {
    background: #c8a97e;
    color: white;
}

/* ============================================
   ENHANCED FOOTER STYLES
   ============================================ */

/* Footer Main Container */
.footer-main {
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c8a97e, #a8865a, #c8a97e);
}

/* Footer Decorative Elements */
.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-decoration::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 126, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-decoration::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 169, 126, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* Footer Top Section */
.footer-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c8a97e 0%, #a8865a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(200, 169, 126, 0.3);
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-icon {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 12px 40px rgba(200, 169, 126, 0.4);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text .brand-name {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: white;
    line-height: 1;
}

.footer-logo-text .brand-tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #c8a97e;
    font-weight: 500;
    margin-top: 4px;
}

/* Footer Description */
.footer-description {
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 320px;
}

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

.footer-social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    background: linear-gradient(135deg, #c8a97e 0%, #a8865a 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(200, 169, 126, 0.4);
}

/* Footer Links Columns */
.footer-column {
    padding: 0 20px;
}

.footer-column-title {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #c8a97e, #a8865a);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: #c8a97e;
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #c8a97e;
    padding-left: 8px;
}

.footer-links a:hover::before {
    width: 100%;
}

/* Footer Contact Info */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    color: #9ca3af;
}

.footer-contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(200, 169, 126, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8a97e;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    background: linear-gradient(135deg, #c8a97e 0%, #a8865a 100%);
    color: white;
    transform: scale(1.1);
}

.footer-contact-text {
    line-height: 1.6;
}

.footer-contact-text strong {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 4px;
}

/* Newsletter Section - Centered Stylish */
.footer-newsletter-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.footer-newsletter-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 169, 126, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.footer-newsletter-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-newsletter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.2) 0%, rgba(200, 169, 126, 0.05) 100%);
    border: 2px solid rgba(200, 169, 126, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: #c8a97e;
}

.footer-newsletter-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.footer-newsletter-text {
    color: #9ca3af;
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 520px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    padding: 8px;
}

.footer-newsletter-input {
    flex: 1;
    padding: 16px 28px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-newsletter-input::placeholder {
    color: #6b7280;
}

.footer-newsletter-input:focus {
    outline: none;
}

.footer-newsletter-btn {
    padding: 16px 36px;
    background: linear-gradient(135deg, #c8a97e 0%, #a8865a 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(200, 169, 126, 0.4);
}

.footer-newsletter-privacy {
    margin-top: 20px;
    color: #6b7280;
    font-size: 0.85rem;
}

.footer-newsletter-privacy a {
    color: #c8a97e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-newsletter-privacy a:hover {
    color: #e8d5b7;
}

/* Services Card Style */
.footer-services-card {
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.1) 0%, rgba(200, 169, 126, 0.02) 100%);
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-services-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 169, 126, 0.4);
    box-shadow: 0 10px 30px rgba(200, 169, 126, 0.15);
}

.footer-services-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c8a97e 0%, #a8865a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: white;
}

.footer-services-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-services-desc {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.footer-services-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c8a97e;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-services-link:hover {
    color: #e8d5b7;
    gap: 12px;
}

@media (max-width: 768px) {
    .footer-newsletter-section {
        padding: 40px 0;
    }

    .footer-newsletter-title {
        font-size: 1.5rem;
    }

    .footer-newsletter-text {
        font-size: 1rem;
    }

    .footer-newsletter-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 16px;
    }

    .footer-newsletter-input {
        padding: 14px 20px;
        text-align: center;
    }

    .footer-newsletter-btn {
        justify-content: center;
        border-radius: 12px;
    }
}

/* Footer Middle Section - Awards/Stats */
.footer-middle {
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-stat {
    text-align: center;
    padding: 0 30px;
    position: relative;
}

.footer-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(200, 169, 126, 0.3), transparent);
}

.footer-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #c8a97e;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #c8a97e 0%, #e8d5b7 50%, #c8a97e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-stat-label {
    color: #9ca3af;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Footer Bottom Section */
.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.9rem;
}

.footer-copyright a {
    color: #c8a97e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #e8d5b7;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #c8a97e;
}

/* Footer Awards */
.footer-awards {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-award {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #9ca3af;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-award i {
    color: #c8a97e;
}

.footer-award:hover {
    background: rgba(200, 169, 126, 0.1);
    border-color: rgba(200, 169, 126, 0.3);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        padding: 60px 0 50px;
    }

    .footer-stats {
        gap: 40px;
    }

    .footer-stat {
        padding: 0 20px;
    }

    .footer-stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 50px 0 40px;
    }

    .footer-column {
        padding: 0;
        margin-bottom: 30px;
    }

    .footer-newsletter-form {
        flex-direction: column;
    }

    .footer-stats {
        gap: 30px;
    }

    .footer-stat:not(:last-child)::after {
        display: none;
    }

    .footer-stat-number {
        font-size: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* ============================================
   PROCESS SECTION STYLES
   ============================================ */

/* Slow Spin Animation for Process Steps */
@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.group-hover\:animate-spin-slow:hover,
.group:hover .group-hover\:animate-spin-slow {
    animation: spin-slow 8s linear infinite;
}

/* Process Step Card */
.process-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(200, 169, 126, 0.5);
    transform: translateY(-8px);
}

/* Process Number Ring Animation */
.process-number-ring {
    position: relative;
}

.process-number-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(200, 169, 126, 0.3);
    animation: spin-slow 20s linear infinite;
}

.process-card:hover .process-number-ring::before {
    border-color: rgba(200, 169, 126, 0.6);
    animation-duration: 10s;
}

/* Process Step Connector Line */
.process-connector {
    position: absolute;
    top: 50%;
    left: 100%;
    width: calc(100% - 48px);
    height: 2px;
    background: linear-gradient(90deg, rgba(200, 169, 126, 0.5), rgba(200, 169, 126, 0.1));
}

.process-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #c8a97e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Process Timeline Dot Animation */
@keyframes timeline-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.process-timeline-dot {
    animation: timeline-pulse 2s ease-in-out infinite;
}

.process-timeline-dot:nth-child(2) {
    animation-delay: 0.5s;
}

.process-timeline-dot:nth-child(3) {
    animation-delay: 1s;
}

.process-timeline-dot:nth-child(4) {
    animation-delay: 1.5s;
}

/* Process Icon Bounce */
.process-icon {
    transition: all 0.3s ease;
}

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

/* Process Features Stagger Animation */
.process-features li {
    opacity: 0.7;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.process-card:hover .process-features li {
    opacity: 1;
}

.process-card:hover .process-features li:nth-child(1) {
    transform: translateX(5px);
    transition-delay: 0.1s;
}

.process-card:hover .process-features li:nth-child(2) {
    transform: translateX(5px);
    transition-delay: 0.2s;
}

.process-card:hover .process-features li:nth-child(3) {
    transform: translateX(5px);
    transition-delay: 0.3s;
}

/* Process Duration Badge */
.process-duration {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.process-card:hover .process-duration {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive Process Section */
@media (max-width: 1024px) {
    .process-connector {
        display: none;
    }
}

/* ============================================
   SERVICES SECTION STYLES
   ============================================ */

/* Service Card Enhancements */
.service-card-enhanced {
    position: relative;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--card-color, #c8a97e), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card-enhanced:hover::before {
    transform: scaleX(1);
}

/* Service Icon Glow Effect */
.service-icon-glow {
    position: relative;
}

.service-icon-glow::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, var(--icon-color, rgba(200, 169, 126, 0.3)) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-card-enhanced:hover .service-icon-glow::after {
    opacity: 1;
}

/* Service Card Shine Effect */
.service-card-shine {
    position: relative;
    overflow: hidden;
}

.service-card-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.8s ease;
}

.service-card-shine:hover::after {
    transform: translateX(100%) rotate(45deg);
}

/* Service Feature List Animation */
.service-features li {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-card-enhanced:hover .service-features li {
    opacity: 1;
    transform: translateX(0);
}

.service-card-enhanced:hover .service-features li:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card-enhanced:hover .service-features li:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card-enhanced:hover .service-features li:nth-child(3) {
    transition-delay: 0.3s;
}

/* Service Card Border Animation */
@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(200, 169, 126, 0);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(200, 169, 126, 0.2);
    }
}

.service-card-enhanced:hover {
    animation: borderGlow 2s ease-in-out infinite;
}

/* Service Number Badge Pulse */
@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.service-number-badge:hover {
    animation: numberPulse 0.5s ease;
}

/* ============================================
   FEATURES STRIP SECTION STYLES
   ============================================ */

/* Feature Cards */
.feature-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

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

/* Feature Icon Box */
.feature-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon-box::after {
    width: 150%;
    height: 150%;
}

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

/* Feature Number Counter */
.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, currentColor 0%, currentColor 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Feature Title */
.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

/* Feature Description */
.feature-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Feature Link */
.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #c8a97e;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-link {
    opacity: 1;
    transform: translateY(0);
}

.feature-link:hover {
    gap: 0.75rem;
}

/* Shimmer Animation on Hover */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.feature-card:hover .feature-number {
    background: linear-gradient(90deg, currentColor 0%, rgba(200, 169, 126, 0.8) 50%, currentColor 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 2s linear infinite;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-icon-floating {
    animation: float 4s ease-in-out infinite;
}

/* Pulse Animation for Icons */
@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(200, 169, 126, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(200, 169, 126, 0);
    }
}

.feature-icon-box:hover {
    animation: iconPulse 1.5s ease-in-out infinite;
}

/* Counter Number Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-number {
    animation: countUp 0.8s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon-box {
        width: 70px;
        height: 70px;
    }

    .feature-number {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .feature-card {
        padding: 1.25rem;
    }

    .feature-icon-box {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .feature-number {
        font-size: 1.75rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }
}

/* ============================================
   MOBILE MENU SPECIFIC STYLES
   ============================================ */

/* Mobile menu logo icon size */
.mobile-logo-icon {
    width: 40px;
    height: 40px;
}

/* Mobile menu brand name size */
.mobile-brand-name {
    font-size: 1.2rem;
}

/* ============================================
   PROJECT DETAIL PAGE STYLES
   ============================================ */

/* Hero Slow Zoom Animation */
@keyframes slow-zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.animate-slow-zoom {
    animation: slow-zoom 20s ease-out forwards;
}

/* Timeline Responsive */
@media (max-width: 768px) {
    .md\:flex-row {
        flex-direction: column;
    }
}