:root {
    --primary-color: #0E4469; /* Darker Blue */
    --secondary-color: #D3A74C; /* Gold/Bronze */
    --text-dark: #212529;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --bg-dark: #121212;
    --neon-gold: #ffecb3; /* Lighter gold for neon effect */
    --neon-blue: #00f0ff; /* Neon blue for process cards */
    --gradient-primary: linear-gradient(135deg, #0E4469 0%, #1a5a8c 100%);
    --gradient-secondary: linear-gradient(135deg, #D3A74C 0%, #b8943f 100%);
    --gradient-testimonial: linear-gradient(135deg, #0E4469 0%, #1a5a8c 50%, #2c5f91 100%);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
    --about-bg: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    --services-bg: #ffffff;
    --process-bg: linear-gradient(135deg, #f8f9fa 0%, #dee2e6 100%);
    --portfolio-bg: #f8f9fa;
    --testimonials-bg: var(--gradient-testimonial);
    --contact-bg: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Utilities */
.container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-section {
    padding: 6rem 0;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-secondary);
    margin: 1rem auto;
    border-radius: 2px;
}

.divider {
    max-width: 4rem;
    height: 0.25rem;
    margin: 1.5rem auto;
    background: var(--gradient-secondary);
    border: none;
    opacity: 1;
    border-radius: 2px;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.service-card:nth-child(1).service-card-animate { animation-delay: 0.1s; }
.service-card:nth-child(2).service-card-animate { animation-delay: 0.2s; }
.service-card:nth-child(3).service-card-animate { animation-delay: 0.3s; }
.service-card:nth-child(4).service-card-animate { animation-delay: 0.4s; }
.service-card:nth-child(5).service-card-animate { animation-delay: 0.5s; }
.service-card:nth-child(6).service-card-animate { animation-delay: 0.6s; }

.testimonial-item-wrapper:nth-child(1).testimonial-animate { animation-delay: 0.1s; }
.testimonial-item-wrapper:nth-child(2).testimonial-animate { animation-delay: 0.2s; }
.testimonial-item-wrapper:nth-child(3).testimonial-animate { animation-delay: 0.3s; }
.testimonial-item-wrapper:nth-child(4).testimonial-animate { animation-delay: 0.4s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
}

.navbar-brand img {
    height: 45px;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-brand span {
    font-size: 1.5rem;
    transition: color 0.4s ease;
    color: #fff;
}

.navbar.navbar-scrolled .navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 25px;
}

.navbar.navbar-scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 80%;
}

.btn-cta {
    background: var(--gradient-secondary);
    color: white !important;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    background: transparent;
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.navbar-toggler {
    border: none;
    color: #fff;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(255,255,255,0.1);
}

.navbar-scrolled .navbar-toggler {
    color: var(--text-dark);
}

@media (max-width: 991.98px) {
    .navbar {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-light);
    }
    .nav-link {
        color: var(--text-dark);
        text-align: center;
        margin: 0.5rem 0;
    }
    .nav-link:hover::after {
        width: 0;
    }
    .btn-cta {
        margin-top: 1rem;
        width: 100%;
    }
}

/* Hero Section */
.masthead {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.masthead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(211, 167, 76, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.masthead .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--neon-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(211, 167, 76, 0.5));
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-secondary);
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    background: transparent;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: #ffffff !important;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.scroll-down:hover {
    color: #fff !important;
    transform: translateX(-50%) scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* About Section */
.about-section {
    background: var(--about-bg);
    padding: 8rem 0;
}

.about-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    background: linear-gradient(135deg, #fff 0%, var(--bg-light) 100%);
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: var(--shadow-hover);
}

.about-card i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.about-card:hover i {
    color: var(--secondary-color);
    transform: scale(1.1) rotateY(360deg);
}

.about-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Services */
.services-section {
    padding: 8rem 0;
    background: var(--services-bg);
}

.service-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    width: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px) rotateZ(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.service-card.service-card-animate {
    animation: slideInUp 0.6s ease forwards;
}

.card-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-right: 2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(211, 167, 76, 0.3));
}

.service-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    color: var(--neon-gold);
}

.service-card .card-body {
    flex: 1;
}

.service-card h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
}

.service-card h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-secondary);
    border-radius: 1px;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Process Section */
.process-section {
    background: var(--process-bg);
    padding: 8rem 0;
}

.process-item {
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    animation: fadeInScale 0.6s ease forwards;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.process-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.process-step {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(14, 68, 105, 0.3);
    transition: all 0.3s ease;
    border: 3px solid #fff;
    margin: 0 auto 1rem;
}

.process-item:hover .process-step {
    background: var(--gradient-secondary);
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(211, 167, 76, 0.4);
}

.process-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.process-item:hover .process-image {
    transform: scale(1.1);
}

.process-item h5 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.process-item p {
    color: var(--text-muted);
    text-align: center;
    font-size: 1rem;
    line-height: 1.7;
}

/* Portfolio */
.portfolio-section {
    padding: 8rem 0;
    background: var(--portfolio-bg);
}

.portfolio-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-box.portfolio-animate {
    animation: slideInUp 0.8s ease forwards;
}

.portfolio-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.portfolio-box .img-fluid {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-box:hover .img-fluid {
    transform: scale(1.1);
}

.portfolio-box-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(14, 68, 105, 0.9));
    color: white;
    opacity: 0;
    transition: all 0.4s ease;
    text-align: left;
}

.portfolio-box:hover .portfolio-box-caption {
    opacity: 1;
}

.project-category {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
}

/* Testimonials */
.testimonials-section {
    background: var(--testimonials-bg);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonial-header {
    color: #fff;
}

.testimonial-header .section-heading {
    color: #fff;
}

.testimonial-header .section-heading::after {
    background: var(--gradient-secondary);
}

.testimonial-header .divider {
    background: var(--gradient-secondary);
}

.testimonial-carousel-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.testimonial-carousel-container .carousel-inner {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-carousel-container .carousel-item {
    transition: transform 0.5s ease;
    padding: 1rem;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-hover);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin: 0 1rem;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 6rem;
    font-family: serif;
    color: var(--secondary-color);
    opacity: 0.1;
    line-height: 1;
    z-index: 2;
}

.testimonial-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.testimonial-item:hover::after {
    transform: scaleX(1);
}

.testimonial-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
    border-color: var(--secondary-color);
}

.testimonial-item.testimonial-animate {
    animation: slideInLeft 0.8s ease forwards;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(14, 68, 105, 0.3);
}

.testimonial-item:hover .profile-img {
    transform: scale(1.05) rotate(5deg);
    border-color: var(--secondary-color);
    box-shadow: 0 12px 35px rgba(211, 167, 76, 0.3);
}

.rating {
    margin-bottom: 1.5rem;
}

.rating i {
    color: #ffc107;
    font-size: 1.25rem;
    margin: 0 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-item blockquote {
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 1rem;
    font-weight: 500;
}

.author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author span {
    display: block;
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.25rem;
    text-transform: none;
}

.carousel-indicators {
    position: static;
    margin-top: 3rem;
    justify-content: center;
}

.carousel-indicators button {
    background-color: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.carousel-indicators button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

.carousel-indicators .active {
    background-color: var(--secondary-color);
    width: 16px;
    height: 16px;
    border-color: var(--secondary-color);
}

/* Guarantee Section */
.guarantee-section {
    background: var(--gradient-primary);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.guarantee-box {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-box:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.guarantee-box i {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    filter: drop-shadow(0 5px 10px rgba(211, 167, 76, 0.3));
}

.guarantee-box:hover i {
    transform: scale(1.2) rotate(360deg);
    color: var(--neon-gold);
}

.guarantee-box h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.guarantee-box p {
    color: var(--text-dark);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: var(--contact-bg);
}

.contact-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 2rem;
}

.contact-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.contact-card h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.contact-list li:hover {
    color: var(--secondary-color);
}

.contact-list li i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
    transition: color 0.3s ease;
}

.contact-list li:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.social-icons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.social-icons a {
    font-size: 1.75rem;
    color: var(--text-muted);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.03);
}

.social-icons a:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-light);
}

.social-icons a[href*="facebook"]:hover {
    background: #3b5998;
}

.social-icons a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-icons a[href*="whatsapp"]:hover {
    background: #25D366;
}

.map-container {
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    margin-top: 2rem;
    transition: box-shadow 0.3s ease;
}

.map-container:hover {
    box-shadow: var(--shadow-hover);
}

.google-map {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
}

/* Form Styles */
.contact-form .form-control {
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(14, 68, 105, 0.15);
    background: #fff;
    transform: translateY(-2px);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    padding: 1rem 3rem;
    font-size: 1.125rem;
    border-radius: 50px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: rgba(255, 255, 255, 0.9);
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer p, .footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-color);
}

.footer .row > div {
    margin-bottom: 2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 1.5rem;
    color: var(--secondary-color);
    background: transparent;
    border-radius: 50%;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 60px;
    height: 60px;
    display: none;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    color: var(--neon-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-section {
        padding: 4rem 0;
    }
    
    .masthead {
        padding: 8rem 0 4rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-outline-light {
        width: 100%;
        max-width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .service-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 350px;
    }
    .card-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        font-size: 2.5rem;
    }
    .service-card h4 {
        font-size: 1.25rem;
    }
    .service-card p {
        font-size: 0.95rem;
    }

    .process-item {
        padding: 1.5rem;
        min-height: auto;
    }
    .process-image-wrapper {
        max-width: 200px;
    }
    .process-step {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    .process-item h5 {
        font-size: 1.25rem;
    }
    .process-item p {
        font-size: 0.95rem;
    }

    .portfolio-box .img-fluid {
        height: 200px;
    }
    .project-name {
        font-size: 1.25rem;
    }

    .testimonial-item {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    .profile-img {
        width: 90px;
        height: 90px;
        border-width: 3px;
    }
    .testimonial-item blockquote {
        font-size: 1.1rem;
    }
    .testimonial-item h5 {
        font-size: 1.1rem;
    }

    .guarantee-box {
        padding: 2rem;
    }
    .guarantee-box i {
        font-size: 4rem;
    }
    .guarantee-box h2 {
        font-size: 1.5rem;
    }
    .guarantee-box p {
        font-size: 1rem;
    }

    .contact-card {
        padding: 2rem;
    }
    .contact-list li {
        font-size: 1rem;
    }
    .social-icons a {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
    .map-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .navbar-brand span {
        font-size: 1.25rem;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }

    .service-card {
        padding: 1.2rem;
        max-width: 100%;
    }
    .service-card h4 {
        font-size: 1.1rem;
    }
    .service-card p {
        font-size: 0.85rem;
    }

    .process-item {
        padding: 1.2rem;
    }
    .process-item h5 {
        font-size: 1.1rem;
    }
    .process-item p {
        font-size: 0.85rem;
    }

    .portfolio-box .img-fluid {
        height: 180px;
    }
    .project-name {
        font-size: 1.1rem;
    }

    .testimonial-item {
        padding: 1.5rem 1rem;
        margin: 0;
    }
    .profile-img {
        width: 80px;
        height: 80px;
    }
    .testimonial-item blockquote {
        font-size: 1rem;
    }
    .author {
        font-size: 1rem;
    }

    .guarantee-box {
        padding: 1.5rem;
    }
    .guarantee-box h2 {
        font-size: 1.25rem;
    }
    .guarantee-box p {
        font-size: 0.95rem;
    }

    .contact-card {
        padding: 1.5rem;
    }
    .contact-list li {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    .contact-list li i {
        font-size: 1.2rem;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    animation: fadeIn 0.5s ease-in;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Print styles */
@media print {
    .navbar, .scroll-to-top, .social-icons {
        display: none !important;
    }
    
    .page-section {
        padding: 1rem 0 !important;
    }
}